Files
ortools-clone/ortools/math_opt
Corentin Le Molgat 3774165534 math_opt: Fix elemental python on windows
ssize_t is not part of the STL, python provides `Py_ssize_t`
ref: https://peps.python.org/pep-0353/
2025-05-27 10:11:58 +02:00
..
2025-04-30 14:06:01 +02:00
2025-05-26 15:33:21 +02:00
2025-05-26 15:33:21 +02:00
2025-04-30 14:06:01 +02:00
2025-04-30 14:06:01 +02:00
2025-05-22 14:42:28 +02:00
2025-04-30 14:06:01 +02:00
2025-05-12 12:57:50 +02:00
2025-05-26 15:33:21 +02:00
2025-05-26 15:33:21 +02:00
2025-04-30 14:06:01 +02:00
2025-04-30 14:06:01 +02:00
2025-05-26 15:33:21 +02:00
2025-05-22 14:42:28 +02:00
2025-04-30 14:06:01 +02:00
2025-04-30 14:06:01 +02:00
2025-01-10 11:35:44 +01:00
2025-01-10 11:35:44 +01:00
2025-01-10 11:35:44 +01:00
2025-04-30 14:06:01 +02:00
2025-04-30 14:06:01 +02:00
2025-01-10 11:35:44 +01:00
2025-04-30 14:06:01 +02:00
2025-01-10 11:35:44 +01:00
2025-01-10 11:35:44 +01:00

math_opt

The code in this directory provides a generic way of accessing mathematical optimization solvers (sometimes called mathematical programming solvers), such as GLOP, CP-SAT, SCIP and Gurobi. In particular, a single API is provided to make these solvers largely interoperable.

New code should prefer MathOpt to MPSolver, as defined in linear_solver.h when possible.

MathOpt has client libraries in C++, Python, and Java that most users should use to build and solve their models. A proto API is also provided, but this is not recommended for most users.

See parameters.proto for the list of supported solvers.