Skip to content
Merged
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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,12 @@ to using the system libraries if available and the Julia libraries otherwise.

To use CSDP with JuMP v0.19 and later, do
```julia
using JuMP
using JuMP, CSDP
model = Model(with_optimizer(CSDP.Optimizer))
```
and with JuMP v0.18 and earlier, do
```julia
using JuMP
using JuMP, CSDP
model = Model(solver=CSDPSolver())
```

Expand Down