What is the difference between or-tools and python-mip, e.g. performance, correctness? #3449
-
|
or-tools claims the competition is consistently gold (https://developers.google.com/optimization) and python-mip claims to be the fastest open source linear programming solver (http://plato.asu.edu/ftp/lpsimp.html), so which one is faster? EDIT: SO cross post: https://stackoverflow.com/questions/73552667 |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
|
Minizinc Challenge is a constraint programing competition python-mip seems to claims to be the best in a simplex linear programming competition also I can read:
So to me python-mip is just a wrapper on top of CBC (MIP solver) and Gurobi like we did with MPSolver in OR-Tools. |
Beta Was this translation helpful? Give feedback.
-
|
Please indicate when you cross post from stack overflow. |
Beta Was this translation helpful? Give feedback.
Minizinc Challenge is a constraint programing competition
results: https://www.minizinc.org/challenge (note OR-Tools compete with the CP-SAT Solver)
python-mip seems to claims to be the best in a simplex linear programming competition
(note GLOP is part of OR-Tools as the Google Linear solver focused on numerical stability and precision)
also I can read:
So to me python-mip is just a wrapper on top of CBC (MIP solver) and Gurobi like we did with MPSolver in OR-Tools.
It could be interesting to compare both s…