Skip to content

Latest commit

 

History

History
25 lines (21 loc) · 1.85 KB

README.md

File metadata and controls

25 lines (21 loc) · 1.85 KB

This package is deprecated. It was used to reformulate MOI models in the SDPA format but this is now handled by MOI bridges.

SemidefiniteOptInterface (SDOI)

Build Status
Build Status Build Status
Coveralls branch Codecov branch

This package make it easy to implement the API of MathOptInterface for semidefinite programming solver like CSDP, SDPA, DSDP and SDPLR that require the problem to be described in the following form:

max ⟨C, X⟩            min ⟨b, y⟩
    ⟨A_i, X⟩ = b_i        ∑ A_i y_i ⪰ C
          X  ⪰ 0

The well known SDPA file format uses this form but this package communicates to the solver directly and the solver wrappers use the C/C++ API without using a file.