Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions ortools/math_opt/python/parameters.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,8 @@ class SolverType(enum.Enum):
QPs are unimplemented).
SANTORINI: The Santorini Solver (first party). Supports MIP. Experimental,
do not use in production.
XPRESS: Xpress solver (third party). Supports LP, MIP, and nonconvex integer
quadratic problems. Generally a fast option, but has special licensing.
"""

GSCIP = math_opt_parameters_pb2.SOLVER_TYPE_GSCIP
Expand All @@ -89,6 +91,7 @@ class SolverType(enum.Enum):
SCS = math_opt_parameters_pb2.SOLVER_TYPE_SCS
HIGHS = math_opt_parameters_pb2.SOLVER_TYPE_HIGHS
SANTORINI = math_opt_parameters_pb2.SOLVER_TYPE_SANTORINI
XPRESS = math_opt_parameters_pb2.SOLVER_TYPE_XPRESS


def solver_type_from_proto(
Expand Down