Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add missing prefix for radius #135

Merged
merged 11 commits into from
Jul 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "IntervalLinearAlgebra"
uuid = "92cbe1ac-9c24-436b-b0c9-5f7317aedcd5"
authors = ["Luca Ferranti"]
version = "0.1.6"
version = "0.1.7"

[deps]
CommonSolve = "38540f10-b2f7-11e9-35d8-d573e4eb0ff2"
Expand All @@ -15,8 +15,8 @@ StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
[compat]
CommonSolve = "0.2"
IntervalArithmetic = "0.20.5"
IntervalConstraintProgramming = "0.12"
LazySets = "1.47.2"
IntervalConstraintProgramming = "0.13"
LazySets = "2"
Reexport = "1"
Requires = "1"
StaticArrays = "0.12, 1"
Expand Down
1 change: 1 addition & 0 deletions docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ makedocs(;
authors="Luca Ferranti",
repo="https://github.com/JuliaIntervals/IntervalLinearAlgebra.jl/blob/{commit}{path}#{line}",
sitename="IntervalLinearAlgebra.jl",
warnonly=true,
format=Documenter.HTML(;
prettyurls=get(ENV, "CI", "false") == "true",
canonical="https://juliaintervals.github.io/IntervalLinearAlgebra.jl",
Expand Down
4 changes: 2 additions & 2 deletions docs/src/api/eigenvalues.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ Pages = ["eigenvalues.md"]
```@autodocs
Modules=[IntervalLinearAlgebra]
Pages=["interval_eigenvalues.jl"]
Private=false
Private=true
```

## Floating point eigenvalues verification

```@autodocs
Modules=[IntervalLinearAlgebra]
Pages=["verify_eigs.jl"]
Private=false
Private=true
```

4 changes: 2 additions & 2 deletions docs/src/api/precondition.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ Pages = ["precondition.md"]
```@autodocs
Modules=[IntervalLinearAlgebra]
Pages=["precondition.jl"]
Private=false
```
Private=true
```
2 changes: 1 addition & 1 deletion src/eigenvalues/interval_eigenvalues.jl
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ julia> eigenbox(A, Hertz())
"""
function eigenbox(A::Symmetric{Interval{T}, Matrix{Interval{T}}}, ::Rohn) where {T}

AΔ = Symmetric(radius.(A))
AΔ = Symmetric(IntervalArithmetic.radius.(A))
Ac = Symmetric(mid.(A))

ρ = eigmax(AΔ)
Expand Down
5 changes: 3 additions & 2 deletions test/Project.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
[deps]
IntervalConstraintProgramming = "138f1668-1576-5ad7-91b9-7425abbf3153"
IntervalLinearAlgebra = "92cbe1ac-9c24-436b-b0c9-5f7317aedcd5"
LazySets = "b4f0291d-fe17-52bc-9479-3d1a343d9043"
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[compat]
IntervalConstraintProgramming = "0.12"
LazySets = "1.47.2"
IntervalConstraintProgramming = "0.13"
LazySets = "2"
StaticArrays = "0.12, 1"
Loading