We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4321dd2 commit 2ff6284Copy full SHA for 2ff6284
1 file changed
src/pyoptinterface/_src/gurobi.py
@@ -257,6 +257,14 @@ def init_default_env():
257
TerminationStatusCode.MEMORY_LIMIT,
258
"Optimization terminated because the total amount of allocated memory exceeded the value specified in the SoftMemLimit parameter.",
259
),
260
+ (
261
+ TerminationStatusCode.LOCALLY_SOLVED,
262
+ "Model solved to local optimality. A solution satisfying the first-order optimality conditions (subject to tolerances) was found and is available.",
263
+ ),
264
265
+ TerminationStatusCode.LOCALLY_INFEASIBLE,
266
+ "Model appears to be locally infeasible. A first-order minimizer of a measure for the constraint violations was found.",
267
268
]
269
270
gurobi_raw_type_map = {
0 commit comments