You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/src/jump.md
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ Our [JuMP](https://github.com/JuliaOpt/JuMP.jl/) interface allows you to describ
7
7
## Use COSMO
8
8
To specify COSMO as the solver for your JuMP model, load the solver module with `using COSMO` and then use the `with_optimizer()` function when initialising the JuMP model:
9
9
```julia
10
-
m = JuMP.Model(with_optimizer(COSMO.Optimizer);
10
+
m = JuMP.Model(with_optimizer(COSMO.Optimizer));
11
11
```
12
12
13
13
## Specify Solver Settings
@@ -31,4 +31,4 @@ and the value of a decision variable `x` can be obtained with
31
31
```julia
32
32
JuMP.value.(x)
33
33
```
34
-
For more information on how to use JuMP check the [JuMP documentation](http://www.juliaopt.org/JuMP.jl/stable/).
34
+
For more information on how to use JuMP check the [JuMP documentation](http://www.juliaopt.org/JuMP.jl/stable/).
0 commit comments