Skip to content

Commit a69db10

Browse files
authored
Update link to list of solvers (#273)
1 parent eca66f6 commit a69db10

File tree

12 files changed

+12
-12
lines changed

12 files changed

+12
-12
lines changed

docs/src/tutorials/Extension/certificate.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ using SumOfSquares
2222
S = @set x >= 0 && y >= 0 && x^2 + y^2 >= 2
2323

2424
# We will now see how to find the optimal solution using Sum of Squares Programming.
25-
# We first need to pick an SDP solver, see [here](https://jump.dev/JuMP.jl/v0.21.6/installation/#Supported-solvers) for a list of the available choices.
25+
# We first need to pick an SDP solver, see [here](https://jump.dev/JuMP.jl/v1.8/installation/#Supported-solvers) for a list of the available choices.
2626

2727
import CSDP
2828
solver = optimizer_with_attributes(CSDP.Optimizer, MOI.Silent() => true)

docs/src/tutorials/Extension/hypercube.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ using SumOfSquares
3232
S = algebraicset([xi^2 - 1 for xi in x])
3333

3434
# We will now search for the minimum of `x` over `S` using Sum of Squares Programming.
35-
# We first need to pick an SDP solver, see [here](https://jump.dev/JuMP.jl/v0.21.6/installation/#Supported-solvers) for a list of the available choices.
35+
# We first need to pick an SDP solver, see [here](https://jump.dev/JuMP.jl/v1.8/installation/#Supported-solvers) for a list of the available choices.
3636

3737
import CSDP
3838
solver = optimizer_with_attributes(CSDP.Optimizer, MOI.Silent() => true)

docs/src/tutorials/Getting started/circle.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ using SumOfSquares
1212
@polyvar x y
1313
S = @set x^2 + y^2 == 1
1414

15-
# We need to pick an SDP solver, see [here](https://jump.dev/JuMP.jl/v0.23.0/installation/#Supported-solvers) for a list of the available choices.
15+
# We need to pick an SDP solver, see [here](https://jump.dev/JuMP.jl/v1.8/installation/#Supported-solvers) for a list of the available choices.
1616
# The domain over which the nonnegativity of ``1 - y^2`` should be certified
1717
# is specified through the `domain` keyword argument.
1818

docs/src/tutorials/Getting started/getting_started.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ using DynamicPolynomials
1313
@polyvar x y
1414
p = 2*x^4 + 2*x^3*y - x^2*y^2 + 5*y^4
1515

16-
# We need to pick an SDP solver, see [here](https://jump.dev/JuMP.jl/v0.21.6/installation/#Supported-solvers) for a list of the available choices.
16+
# We need to pick an SDP solver, see [here](https://jump.dev/JuMP.jl/v1.8/installation/#Supported-solvers) for a list of the available choices.
1717
# We use `SOSModel` instead of `Model` to be able to use the `>=` syntax for Sum-of-Squares constraints.
1818

1919
using SumOfSquares

docs/src/tutorials/Getting started/motzkin.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ using DynamicPolynomials
2020
motzkin = x^4*y^2 + x^2*y^4 + 1 - 3x^2*y^2
2121

2222
# The Motzkin polynomial is nonnegative but is not a sum of squares as we can verify numerically as follows.
23-
# We first need to pick an SDP solver, see [here](https://jump.dev/JuMP.jl/v0.21.6/installation/#Supported-solvers) for a list of the available choices.
23+
# We first need to pick an SDP solver, see [here](https://jump.dev/JuMP.jl/v1.8/installation/#Supported-solvers) for a list of the available choices.
2424

2525
using SumOfSquares
2626
import CSDP

docs/src/tutorials/Getting started/sum-of-squares_matrices.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ P = [x^2 - 2x + 2 x
3030

3131
using SumOfSquares
3232

33-
# We first need to pick an SDP solver, see [here](https://jump.dev/JuMP.jl/v0.21.6/installation/#Supported-solvers) for a list of the available choices.
33+
# We first need to pick an SDP solver, see [here](https://jump.dev/JuMP.jl/v1.8/installation/#Supported-solvers) for a list of the available choices.
3434

3535
import CSDP
3636
solver = optimizer_with_attributes(CSDP.Optimizer, MOI.Silent() => true)

docs/src/tutorials/Noncommutative and Hermitian/noncommutative_variables.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ using DynamicPolynomials
1818
@ncpolyvar x y
1919
p = (x * y + x^2)^2
2020

21-
# We first need to pick an SDP solver, see [here](https://jump.dev/JuMP.jl/v0.21.6/installation/#Supported-solvers) for a list of the available choices.
21+
# We first need to pick an SDP solver, see [here](https://jump.dev/JuMP.jl/v1.8/installation/#Supported-solvers) for a list of the available choices.
2222

2323
using SumOfSquares
2424
import CSDP

docs/src/tutorials/Other Applications/bounds_in_probability.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ monos = [1, x, x^2]
3030
using SumOfSquares
3131
μ = measure([μ0, μ1, μ2], monos)
3232

33-
# We need to pick an SDP solver, see [here](https://jump.dev/JuMP.jl/v0.21.6/installation/#Supported-solvers) for a list of the available choices.
33+
# We need to pick an SDP solver, see [here](https://jump.dev/JuMP.jl/v1.8/installation/#Supported-solvers) for a list of the available choices.
3434
# We use `SOSModel` instead of `Model` to be able to use the `>=` syntax for Sum-of-Squares constraints.
3535

3636
using CSDP

docs/src/tutorials/Polynomial Optimization/bound_on_global_extremum.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ f3 = 2x1 - 3x2
1616
f4 = 18 - 32x1 + 12x1^2 + 48x2 - 36x1*x2 + 27x2^2
1717
f = (1 + f1^2 * f2) * (30 + f3^2 * f4)
1818

19-
# We need to pick an SDP solver, see [here](https://jump.dev/JuMP.jl/v0.21.6/installation/#Supported-solvers) for a list of the available choices.
19+
# We need to pick an SDP solver, see [here](https://jump.dev/JuMP.jl/v1.8/installation/#Supported-solvers) for a list of the available choices.
2020
# We use `SOSModel` instead of `Model` to be able to use the `>=` syntax for Sum-of-Squares constraints.
2121

2222
using SumOfSquares

docs/src/tutorials/Polynomial Optimization/extracting_minimizers.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ using SumOfSquares
2626
K = @set x[1] >= 0 && x[1] <= 3 && x[2] >= 0 && x[2] <= 4 && x[2] <= 2x[1]^4 - 8x[1]^3 + 8x[1]^2 + 2 && x[2] <= 4x[1]^4 - 32x[1]^3 + 88x[1]^2 - 96x[1] + 36
2727

2828
# We will now see how to find the optimal solution using Sum of Squares Programming.
29-
# We first need to pick an SDP solver, see [here](https://jump.dev/JuMP.jl/v0.21.6/installation/#Supported-solvers) for a list of the available choices.
29+
# We first need to pick an SDP solver, see [here](https://jump.dev/JuMP.jl/v1.8/installation/#Supported-solvers) for a list of the available choices.
3030

3131
import CSDP
3232
solver = optimizer_with_attributes(CSDP.Optimizer, MOI.Silent() => true)

0 commit comments

Comments
 (0)