JuliaOpt / MathProgBase.jl

DEPRECATED: Solver-independent functions (i.e. linprog and mixintprog) and low-level interface for Mathematical Programming
Other
80 stars 38 forks source link

Providing initial solution #230

Closed tomerarnon closed 5 years ago

tomerarnon commented 5 years ago

In searching the documentation for how to provide a solver with an initial solution, I came across only one page in the docs that mentions it (Low-Level Interface), but which does not exist. Is there anywhere where this is documented (alternatively, is doing this currently impossible)?

odow commented 5 years ago

See https://mathprogbasejl.readthedocs.io/en/latest/solverinterface.html#setwarmstart!

You should be aware that MathProgBase is deprecated in favor of MathOptInterface. Solvers may drop support for MathProgBase in the future, and the new version of JuMP (on the master branch) does not support MathProgBase. Read more on discourse.

tomerarnon commented 5 years ago

Thanks @odow, That function appears to be exactly what I need! Thanks also for the heads up on MathOptInterface; I'll read up it.

odow commented 5 years ago

No worries. Closing this issue as it seems resolved. Please post on Discourse if you run into future issues.