Skip to content
Merged
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"

[compat]
BinaryProvider = "0.3, 0.4, 0.5"
MathOptInterface = "0.9.7"
MathOptInterface = "0.10.2"
Requires = "1"
SCS_GPU_jll = "2.1"
SCS_jll = "2.1"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -185,15 +185,15 @@ mutable struct Solution{T}
x::Vector{Float64}
y::Vector{Float64}
s::Vector{Float64}
info::SCSInfo{T}
info::ScsInfo{T}
ret_val::T
end
```
where `x` stores the optimal value of the primal variable, `y` stores the
optimal value of the dual variable, `s` is the slack variable, and `info`
contains various information about the solve step.

`SCS.raw_status(::SCSInfo)::String` describes the status, e.g. 'Solved',
`SCS.raw_status(::ScsInfo)::String` describes the status, e.g. 'Solved',
'Indeterminate', 'Infeasible/Inaccurate', etc.

## Custom Installation
Expand Down
Loading