Skip to content

Commit 1c1683c

Browse files
blegatlucaferranti
andauthored
Add missing prefix for radius (#135)
* Add missing prefix for radius * Update to LazySets v2 * Bump versions * v0.21 of IA * Update test/Project.toml * IA v0.20 * Private=true * dont run documenter in strict mode * hups I cannot RTFM * IA v0.20.5 * bump patch version --------- Co-authored-by: lucaferranti <[email protected]>
1 parent 3f74d22 commit 1c1683c

File tree

6 files changed

+12
-10
lines changed

6 files changed

+12
-10
lines changed

Project.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "IntervalLinearAlgebra"
22
uuid = "92cbe1ac-9c24-436b-b0c9-5f7317aedcd5"
33
authors = ["Luca Ferranti"]
4-
version = "0.1.6"
4+
version = "0.1.7"
55

66
[deps]
77
CommonSolve = "38540f10-b2f7-11e9-35d8-d573e4eb0ff2"
@@ -15,8 +15,8 @@ StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
1515
[compat]
1616
CommonSolve = "0.2"
1717
IntervalArithmetic = "0.20.5"
18-
IntervalConstraintProgramming = "0.12"
19-
LazySets = "1.47.2"
18+
IntervalConstraintProgramming = "0.13"
19+
LazySets = "2"
2020
Reexport = "1"
2121
Requires = "1"
2222
StaticArrays = "0.12, 1"

docs/make.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ makedocs(;
2222
authors="Luca Ferranti",
2323
repo="https://github.com/JuliaIntervals/IntervalLinearAlgebra.jl/blob/{commit}{path}#{line}",
2424
sitename="IntervalLinearAlgebra.jl",
25+
warnonly=true,
2526
format=Documenter.HTML(;
2627
prettyurls=get(ENV, "CI", "false") == "true",
2728
canonical="https://juliaintervals.github.io/IntervalLinearAlgebra.jl",

docs/src/api/eigenvalues.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ Pages = ["eigenvalues.md"]
99
```@autodocs
1010
Modules=[IntervalLinearAlgebra]
1111
Pages=["interval_eigenvalues.jl"]
12-
Private=false
12+
Private=true
1313
```
1414

1515
## Floating point eigenvalues verification
1616

1717
```@autodocs
1818
Modules=[IntervalLinearAlgebra]
1919
Pages=["verify_eigs.jl"]
20-
Private=false
20+
Private=true
2121
```
2222

docs/src/api/precondition.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ Pages = ["precondition.md"]
77
```@autodocs
88
Modules=[IntervalLinearAlgebra]
99
Pages=["precondition.jl"]
10-
Private=false
11-
```
10+
Private=true
11+
```

src/eigenvalues/interval_eigenvalues.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ julia> eigenbox(A, Hertz())
4848
"""
4949
function eigenbox(A::Symmetric{Interval{T}, Matrix{Interval{T}}}, ::Rohn) where {T}
5050

51-
= Symmetric(radius.(A))
51+
= Symmetric(IntervalArithmetic.radius.(A))
5252
Ac = Symmetric(mid.(A))
5353

5454
ρ = eigmax(AΔ)

test/Project.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
[deps]
22
IntervalConstraintProgramming = "138f1668-1576-5ad7-91b9-7425abbf3153"
3+
IntervalLinearAlgebra = "92cbe1ac-9c24-436b-b0c9-5f7317aedcd5"
34
LazySets = "b4f0291d-fe17-52bc-9479-3d1a343d9043"
45
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
56
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
67

78
[compat]
8-
IntervalConstraintProgramming = "0.12"
9-
LazySets = "1.47.2"
9+
IntervalConstraintProgramming = "0.13"
10+
LazySets = "2"
1011
StaticArrays = "0.12, 1"

0 commit comments

Comments
 (0)