14"""The output from solving a mathematical optimization problem from model.py."""
18from typing
import Dict, Iterable, List, Optional, overload
26_NO_DUAL_SOLUTION_ERROR = (
27 "Best solution does not have an associated dual feasible solution."
29_NO_BASIS_ERROR =
"Best solution does not have an associated basis."
34 """Problem feasibility status as claimed by the solver.
36 (solver is not required to return a certificate for the claim.)
39 UNDETERMINED: Solver does not claim a status.
40 FEASIBLE: Solver claims the problem is feasible.
41 INFEASIBLE: Solver claims the problem is infeasible.
44 UNDETERMINED = result_pb2.FEASIBILITY_STATUS_UNDETERMINED
45 FEASIBLE = result_pb2.FEASIBILITY_STATUS_FEASIBLE
46 INFEASIBLE = result_pb2.FEASIBILITY_STATUS_INFEASIBLE
49@dataclasses.dataclass(frozen=True)
51 """Feasibility status of the primal problem and its dual (or dual relaxation).
53 Statuses are as claimed by the solver and a dual relaxation is the dual of a
54 continuous relaxation for the original problem (e.g. the LP relaxation of a
55 MIP). The solver is not required to return a certificate for the feasibility
56 or infeasibility claims (e.g. the solver may claim primal feasibility without
57 returning a primal feasible solutuion). This combined status gives a
58 comprehensive description of a solver's claims about feasibility and
59 unboundedness of the solved problem. For instance,
60 * a feasible status for primal and dual problems indicates the primal is
61 feasible and bounded and likely has an optimal solution (guaranteed for
62 problems without non-linear constraints).
63 * a primal feasible and a dual infeasible status indicates the primal
64 problem is unbounded (i.e. has arbitrarily good solutions).
65 Note that a dual infeasible status by itself (i.e. accompanied by an
66 undetermined primal status) does not imply the primal problem is unbounded as
67 we could have both problems be infeasible. Also, while a primal and dual
68 feasible status may imply the existence of an optimal solution, it does not
69 guarantee the solver has actually found such optimal solution.
72 primal_status: Status for the primal problem.
73 dual_status: Status for the dual problem (or for the dual of a continuous
75 primal_or_dual_infeasible: If true, the solver claims the primal or dual
76 problem is infeasible, but it does not know which (or if both are
77 infeasible). Can be true only when primal_problem_status =
78 dual_problem_status = kUndetermined. This extra information is often
79 needed when preprocessing determines there is no optimal solution to the
80 problem (but can't determine if it is due to infeasibility, unboundedness,
84 primal_status: FeasibilityStatus = FeasibilityStatus.UNDETERMINED
85 dual_status: FeasibilityStatus = FeasibilityStatus.UNDETERMINED
86 primal_or_dual_infeasible: bool =
False
88 def to_proto(self) -> result_pb2.ProblemStatusProto:
89 """Returns an equivalent proto for a problem status."""
90 return result_pb2.ProblemStatusProto(
98 """Returns an equivalent ProblemStatus from the input proto."""
99 primal_status_proto = proto.primal_status
100 if primal_status_proto == result_pb2.FEASIBILITY_STATUS_UNSPECIFIED:
101 raise ValueError(
"Primal feasibility status should not be UNSPECIFIED")
102 dual_status_proto = proto.dual_status
103 if dual_status_proto == result_pb2.FEASIBILITY_STATUS_UNSPECIFIED:
104 raise ValueError(
"Dual feasibility status should not be UNSPECIFIED")
108 primal_or_dual_infeasible=proto.primal_or_dual_infeasible,
112@dataclasses.dataclass(frozen=True)
114 """Bounds on the optimal objective value.
116 MOE:begin_intracomment_strip
117 See go/mathopt-objective-bounds for more details.
118 MOE:end_intracomment_strip
121 primal_bound: Solver claims there exists a primal solution that is
122 numerically feasible (i.e. feasible up to the solvers tolerance), and
123 whose objective value is primal_bound.
125 The optimal value is equal or better (smaller for min objectives and
126 larger for max objectives) than primal_bound, but only up to
129 MOE:begin_intracomment_strip
130 See go/mathopt-objective-bounds for more details.
131 MOE:end_intracomment_strip
132 dual_bound: Solver claims there exists a dual solution that is numerically
133 feasible (i.e. feasible up to the solvers tolerance), and whose objective
136 For MIP solvers, the associated dual problem may be some continuous
137 relaxation (e.g. LP relaxation), but it is often an implicitly defined
138 problem that is a complex consequence of the solvers execution. For both
139 continuous and MIP solvers, the optimal value is equal or worse (larger
140 for min objective and smaller for max objectives) than dual_bound, but
141 only up to solver-tolerances. Some continuous solvers provide a
142 numerically safer dual bound through solver's specific output (e.g. for
143 PDLP, pdlp_output.convergence_information.corrected_dual_objective).
145 MOE:begin_intracomment_strip
146 See go/mathopt-objective-bounds for more details.
147 MOE:end_intracomment_strip
150 primal_bound: float = 0.0
151 dual_bound: float = 0.0
153 def to_proto(self) -> result_pb2.ObjectiveBoundsProto:
154 """Returns an equivalent proto for objective bounds."""
155 return result_pb2.ObjectiveBoundsProto(
161 proto: result_pb2.ObjectiveBoundsProto,
163 """Returns an equivalent ObjectiveBounds from the input proto."""
164 return ObjectiveBounds(primal_bound=proto.primal_bound, dual_bound=proto.dual_bound)
167@dataclasses.dataclass
169 """Problem statuses and solve statistics returned by the solver.
172 solve_time: Elapsed wall clock time as measured by math_opt, roughly the
173 time inside solve(). Note: this does not include work done building the
175 simplex_iterations: Simplex iterations.
176 barrier_iterations: Barrier iterations.
177 first_order_iterations: First order iterations.
178 node_count: Node count.
181 solve_time: datetime.timedelta = datetime.timedelta()
182 simplex_iterations: int = 0
183 barrier_iterations: int = 0
184 first_order_iterations: int = 0
188 """Returns an equivalent proto for a solve stats."""
189 result = result_pb2.SolveStatsProto(
195 result.solve_time.FromTimedelta(self.
solve_time)
200 """Returns an equivalent SolveStats from the input proto."""
202 result.solve_time = proto.solve_time.ToTimedelta()
203 result.simplex_iterations = proto.simplex_iterations
204 result.barrier_iterations = proto.barrier_iterations
205 result.first_order_iterations = proto.first_order_iterations
206 result.node_count = proto.node_count
212 """The reason a solve of a model terminated.
214 These reasons are typically as reported by the underlying solver, e.g. we do
215 not attempt to verify the precision of the solution returned.
218 * OPTIMAL: A provably optimal solution (up to numerical tolerances) has
220 * INFEASIBLE: The primal problem has no feasible solutions.
221 * UNBOUNDED: The primal problem is feasible and arbitrarily good solutions
222 can be found along a primal ray.
223 * INFEASIBLE_OR_UNBOUNDED: The primal problem is either infeasible or
224 unbounded. More details on the problem status may be available in
225 solve_stats.problem_status. Note that Gurobi's unbounded status may be
226 mapped here as explained in
227 go/mathopt-solver-specific#gurobi-inf-or-unb.
228 * IMPRECISE: The problem was solved to one of the criteria above (Optimal,
229 Infeasible, Unbounded, or InfeasibleOrUnbounded), but one or more
230 tolerances was not met. Some primal/dual solutions/rays may be present,
231 but either they will be slightly infeasible, or (if the problem was
232 nearly optimal) their may be a gap between the best solution objective
233 and best objective bound.
235 Users can still query primal/dual solutions/rays and solution stats,
236 but they are responsible for dealing with the numerical imprecision.
237 * FEASIBLE: The optimizer reached some kind of limit and a primal feasible
238 solution is returned. See SolveResultProto.limit_detail for detailed
239 description of the kind of limit that was reached.
240 * NO_SOLUTION_FOUND: The optimizer reached some kind of limit and it did
241 not find a primal feasible solution. See SolveResultProto.limit_detail
242 for detailed description of the kind of limit that was reached.
243 * NUMERICAL_ERROR: The algorithm stopped because it encountered
244 unrecoverable numerical error. No solution information is present.
245 * OTHER_ERROR: The algorithm stopped because of an error not covered by one
246 of the statuses defined above. No solution information is present.
249 OPTIMAL = result_pb2.TERMINATION_REASON_OPTIMAL
250 INFEASIBLE = result_pb2.TERMINATION_REASON_INFEASIBLE
251 UNBOUNDED = result_pb2.TERMINATION_REASON_UNBOUNDED
252 INFEASIBLE_OR_UNBOUNDED = result_pb2.TERMINATION_REASON_INFEASIBLE_OR_UNBOUNDED
253 IMPRECISE = result_pb2.TERMINATION_REASON_IMPRECISE
254 FEASIBLE = result_pb2.TERMINATION_REASON_FEASIBLE
255 NO_SOLUTION_FOUND = result_pb2.TERMINATION_REASON_NO_SOLUTION_FOUND
256 NUMERICAL_ERROR = result_pb2.TERMINATION_REASON_NUMERICAL_ERROR
257 OTHER_ERROR = result_pb2.TERMINATION_REASON_OTHER_ERROR
262 """The optimizer reached a limit, partial solution information may be present.
265 * UNDETERMINED: The underlying solver does not expose which limit was
267 * ITERATION: An iterative algorithm stopped after conducting the
268 maximum number of iterations (e.g. simplex or barrier iterations).
269 * TIME: The algorithm stopped after a user-specified amount of
271 * NODE: A branch-and-bound algorithm stopped because it explored a
272 maximum number of nodes in the branch-and-bound tree.
273 * SOLUTION: The algorithm stopped because it found the required
274 number of solutions. This is often used in MIPs to get the solver to
275 return the first feasible solution it encounters.
276 * MEMORY: The algorithm stopped because it ran out of memory.
277 * OBJECTIVE: The algorithm stopped because it found a solution better
278 than a minimum limit set by the user.
279 * NORM: The algorithm stopped because the norm of an iterate became
281 * INTERRUPTED: The algorithm stopped because of an interrupt signal or a
282 user interrupt request.
283 * SLOW_PROGRESS: The algorithm stopped because it was unable to continue
284 making progress towards the solution.
285 * OTHER: The algorithm stopped due to a limit not covered by one of the
286 above. Note that UNDETERMINED is used when the reason cannot be
287 determined, and OTHER is used when the reason is known but does not fit
288 into any of the above alternatives.
291 UNDETERMINED = result_pb2.LIMIT_UNDETERMINED
292 ITERATION = result_pb2.LIMIT_ITERATION
293 TIME = result_pb2.LIMIT_TIME
294 NODE = result_pb2.LIMIT_NODE
295 SOLUTION = result_pb2.LIMIT_SOLUTION
296 MEMORY = result_pb2.LIMIT_MEMORY
297 OBJECTIVE = result_pb2.LIMIT_OBJECTIVE
298 NORM = result_pb2.LIMIT_NORM
299 INTERRUPTED = result_pb2.LIMIT_INTERRUPTED
300 SLOW_PROGRESS = result_pb2.LIMIT_SLOW_PROGRESS
301 OTHER = result_pb2.LIMIT_OTHER
304@dataclasses.dataclass
306 """An explanation of why the solver stopped.
309 reason: Why the solver stopped, e.g. it found a provably optimal solution.
310 Additional information in `limit` when value is FEASIBLE or
311 NO_SOLUTION_FOUND, see `limit` for details.
312 limit: If the solver stopped early, what caused it to stop. Have value
313 UNSPECIFIED when reason is not NO_SOLUTION_FOUND or FEASIBLE. May still be
314 UNSPECIFIED when reason is NO_SOLUTION_FOUND or FEASIBLE, some solvers
316 detail: Additional, information beyond reason about why the solver stopped,
317 typically solver specific.
318 problem_status: Feasibility statuses for primal and dual problems.
319 objective_bounds: Bounds on the optimal objective value.
322 reason: TerminationReason = TerminationReason.OPTIMAL
323 limit: Optional[Limit] =
None
329 """Returns an equivalent protocol buffer to this Termination."""
330 return result_pb2.TerminationProto(
333 result_pb2.LIMIT_UNSPECIFIED
if self.
limit is None else self.
limit.value
342 termination_proto: result_pb2.TerminationProto,
344 """Returns a Termination that is equivalent to termination_proto."""
345 reason_proto = termination_proto.reason
346 limit_proto = termination_proto.limit
347 if reason_proto == result_pb2.TERMINATION_REASON_UNSPECIFIED:
348 raise ValueError(
"Termination reason should not be UNSPECIFIED")
350 reason_proto == result_pb2.TERMINATION_REASON_NO_SOLUTION_FOUND
351 )
or (reason_proto == result_pb2.TERMINATION_REASON_FEASIBLE)
352 limit_set = limit_proto != result_pb2.LIMIT_UNSPECIFIED
353 if reason_is_limit != limit_set:
355 f
"Termination limit (={limit_proto})) should take value other than "
356 f
"UNSPECIFIED if and only if termination reason (={reason_proto}) is "
357 "FEASIBLE or NO_SOLUTION_FOUND"
361 termination.limit =
Limit(limit_proto)
if limit_set
else None
362 termination.detail = termination_proto.detail
365 termination_proto.objective_bounds
370@dataclasses.dataclass
372 """The result of solving an optimization problem defined by a Model.
374 We attempt to return as much solution information (primal_solutions,
375 primal_rays, dual_solutions, dual_rays) as each underlying solver will provide
376 given its return status. Differences in the underlying solvers result in a
377 weak contract on what fields will be populated for a given termination
378 reason. This is discussed in detail in termination_reasons.md, and the most
379 important points are summarized below:
380 * When the termination reason is optimal, there will be at least one primal
381 solution provided that will be feasible up to the underlying solver's
383 * Dual solutions are only given for convex optimization problems (e.g.
384 linear programs, not integer programs).
385 * A basis is only given for linear programs when solved by the simplex
386 method (e.g., not with PDLP).
387 * Solvers have widely varying support for returning primal and dual rays.
388 E.g. a termination_reason of unbounded does not ensure that a feasible
389 solution or a primal ray is returned, check termination_reasons.md for
390 solver specific guarantees if this is needed. Further, many solvers will
391 provide the ray but not the feasible solution when returning an unbounded
393 * When the termination reason is that a limit was reached or that the result
394 is imprecise, a solution may or may not be present. Further, for some
395 solvers (generally, convex optimization solvers, not MIP solvers), the
396 primal or dual solution may not be feasible.
398 Solver specific output is also returned for some solvers (and only information
399 for the solver used will be populated).
402 termination: The reason the solver stopped.
403 solve_stats: Statistics on the solve process, e.g. running time, iterations.
404 solutions: Lexicographically by primal feasibility status, dual feasibility
405 status, (basic dual feasibility for simplex solvers), primal objective
406 value and dual objective value.
407 primal_rays: Directions of unbounded primal improvement, or equivalently,
408 dual infeasibility certificates. Typically provided for terminal reasons
409 UNBOUNDED and DUAL_INFEASIBLE.
410 dual_rays: Directions of unbounded dual improvement, or equivalently, primal
411 infeasibility certificates. Typically provided for termination reason
413 gscip_specific_output: statistics returned by the gSCIP solver, if used.
414 osqp_specific_output: statistics returned by the OSQP solver, if used.
415 pdlp_specific_output: statistics returned by the PDLP solver, if used.
418 termination: Termination = dataclasses.field(default_factory=Termination)
419 solve_stats: SolveStats = dataclasses.field(default_factory=SolveStats)
424 gscip_specific_output: Optional[gscip_pb2.GScipOutput] =
None
425 osqp_specific_output: Optional[osqp_pb2.OsqpOutput] =
None
426 pdlp_specific_output: Optional[result_pb2.SolveResultProto.PdlpOutput] =
None
429 """Shortcut for SolveResult.solve_stats.solve_time."""
433 """Returns a primal bound on the optimal objective value as described in ObjectiveBounds.
435 Will return a valid (possibly infinite) bound even if no primal feasible
436 solutions are available.
438 return self.
termination.objective_bounds.primal_bound
441 """Returns a dual bound on the optimal objective value as described in ObjectiveBounds.
443 Will return a valid (possibly infinite) bound even if no dual feasible
444 solutions are available.
446 return self.
termination.objective_bounds.dual_bound
449 """Indicates if at least one primal feasible solution is available.
451 When termination.reason is TerminationReason.OPTIMAL or
452 TerminationReason.FEASIBLE, this is guaranteed to be true and need not be
456 True if there is at least one primal feasible solution is available,
462 self.
solutions[0].primal_solution
is not None
463 and self.
solutions[0].primal_solution.feasibility_status
464 == solution.SolutionStatus.FEASIBLE
468 """Returns the objective value of the best primal feasible solution.
470 An error will be raised if there are no primal feasible solutions.
471 primal_bound() above is guaranteed to be at least as good (larger or equal
472 for max problems and smaller or equal for min problems) as objective_value()
473 and will never raise an error, so it may be preferable in some cases. Note
474 that primal_bound() could be better than objective_value() even for optimal
475 terminations, but on such optimal termination, both should satisfy the
476 optimality tolerances.
479 The objective value of the best primal feasible solution.
482 ValueError: There are no primal feasible solutions.
485 raise ValueError(
"No primal feasible solution available.")
486 assert self.
solutions[0].primal_solution
is not None
487 return self.
solutions[0].primal_solution.objective_value
490 """Returns a bound on the best possible objective value.
492 best_objective_bound() is always equal to dual_bound(), so they can be
493 used interchangeably.
495 return self.
termination.objective_bounds.dual_bound
507 """The variable values from the best primal feasible solution.
509 An error will be raised if there are no primal feasible solutions.
512 variables: an optional Variable or iterator of Variables indicating what
513 variable values to return. If not provided, variable_values returns a
514 dictionary with all the variable values for all variables.
517 The variable values from the best primal feasible solution.
520 ValueError: There are no primal feasible solutions.
521 TypeError: Argument is not None, a Variable or an iterable of Variables.
522 KeyError: Variable values requested for an invalid variable (e.g. is not a
523 Variable or is a variable for another model).
526 raise ValueError(
"No primal feasible solution available.")
527 assert self.
solutions[0].primal_solution
is not None
528 if variables
is None:
529 return self.
solutions[0].primal_solution.variable_values
531 return self.
solutions[0].primal_solution.variable_values[variables]
532 if isinstance(variables, Iterable):
534 self.
solutions[0].primal_solution.variable_values[v]
for v
in variables
537 "unsupported type in argument for "
538 f
"variable_values: {type(variables).__name__!r}"
542 """Returns true only if the problem has been shown to be feasible and bounded."""
544 self.
termination.problem_status.primal_status == FeasibilityStatus.FEASIBLE
546 == FeasibilityStatus.FEASIBLE
550 """Indicates if at least one primal ray is available.
552 This is NOT guaranteed to be true when termination.reason is
553 TerminationReason.kUnbounded or TerminationReason.kInfeasibleOrUnbounded.
556 True if at least one primal ray is available.
562 self, variables: None = ...
571 ) -> List[float]: ...
574 """The variable values from the first primal ray.
576 An error will be raised if there are no primal rays.
579 variables: an optional Variable or iterator of Variables indicating what
580 variable values to return. If not provided, variable_values() returns a
581 dictionary with the variable values for all variables.
584 The variable values from the first primal ray.
587 ValueError: There are no primal rays.
588 TypeError: Argument is not None, a Variable or an iterable of Variables.
589 KeyError: Variable values requested for an invalid variable (e.g. is not a
590 Variable or is a variable for another model).
593 raise ValueError(
"No primal ray available.")
594 if variables
is None:
597 return self.
primal_rays[0].variable_values[variables]
598 if isinstance(variables, Iterable):
599 return [self.
primal_rays[0].variable_values[v]
for v
in variables]
601 "unsupported type in argument for "
602 f
"ray_variable_values: {type(variables).__name__!r}"
606 """Indicates if the best solution has an associated dual feasible solution.
608 This is NOT guaranteed to be true when termination.reason is
609 TerminationReason.Optimal. It also may be true even when the best solution
610 does not have an associated primal feasible solution.
613 True if the best solution has an associated dual feasible solution.
618 self.
solutions[0].dual_solution
is not None
619 and self.
solutions[0].dual_solution.feasibility_status
620 == solution.SolutionStatus.FEASIBLE
625 self, linear_constraints: None = ...
629 def dual_values(self, linear_constraints: model.LinearConstraint) -> float: ...
634 ) -> List[float]: ...
637 """The dual values associated to the best solution.
639 If there is at least one primal feasible solution, this corresponds to the
640 dual values associated to the best primal feasible solution. An error will
641 be raised if the best solution does not have an associated dual feasible
645 linear_constraints: an optional LinearConstraint or iterator of
646 LinearConstraint indicating what dual values to return. If not provided,
647 dual_values() returns a dictionary with the dual values for all linear
651 The dual values associated to the best solution.
654 ValueError: The best solution does not have an associated dual feasible
656 TypeError: Argument is not None, a LinearConstraint or an iterable of
658 KeyError: LinearConstraint values requested for an invalid
659 linear constraint (e.g. is not a LinearConstraint or is a linear
660 constraint for another model).
663 raise ValueError(_NO_DUAL_SOLUTION_ERROR)
664 assert self.
solutions[0].dual_solution
is not None
665 if linear_constraints
is None:
666 return self.
solutions[0].dual_solution.dual_values
668 return self.
solutions[0].dual_solution.dual_values[linear_constraints]
669 if isinstance(linear_constraints, Iterable):
671 self.
solutions[0].dual_solution.dual_values[c]
672 for c
in linear_constraints
675 "unsupported type in argument for "
676 f
"dual_values: {type(linear_constraints).__name__!r}"
689 """The reduced costs associated to the best solution.
691 If there is at least one primal feasible solution, this corresponds to the
692 reduced costs associated to the best primal feasible solution. An error will
693 be raised if the best solution does not have an associated dual feasible
697 variables: an optional Variable or iterator of Variables indicating what
698 reduced costs to return. If not provided, reduced_costs() returns a
699 dictionary with the reduced costs for all variables.
702 The reduced costs associated to the best solution.
705 ValueError: The best solution does not have an associated dual feasible
707 TypeError: Argument is not None, a Variable or an iterable of Variables.
708 KeyError: Variable values requested for an invalid variable (e.g. is not a
709 Variable or is a variable for another model).
712 raise ValueError(_NO_DUAL_SOLUTION_ERROR)
713 assert self.
solutions[0].dual_solution
is not None
714 if variables
is None:
715 return self.
solutions[0].dual_solution.reduced_costs
717 return self.
solutions[0].dual_solution.reduced_costs[variables]
718 if isinstance(variables, Iterable):
719 return [self.
solutions[0].dual_solution.reduced_costs[v]
for v
in variables]
721 "unsupported type in argument for "
722 f
"reduced_costs: {type(variables).__name__!r}"
726 """Indicates if at least one dual ray is available.
728 This is NOT guaranteed to be true when termination.reason is
729 TerminationReason.Infeasible.
732 True if at least one dual ray is available.
738 self, linear_constraints: None = ...
747 ) -> List[float]: ...
750 """The dual values from the first dual ray.
752 An error will be raised if there are no dual rays.
755 linear_constraints: an optional LinearConstraint or iterator of
756 LinearConstraint indicating what dual values to return. If not provided,
757 ray_dual_values() returns a dictionary with the dual values for all
761 The dual values from the first dual ray.
764 ValueError: There are no dual rays.
765 TypeError: Argument is not None, a LinearConstraint or an iterable of
767 KeyError: LinearConstraint values requested for an invalid
768 linear constraint (e.g. is not a LinearConstraint or is a linear
769 constraint for another model).
772 raise ValueError(
"No dual ray available.")
773 if linear_constraints
is None:
776 return self.
dual_rays[0].dual_values[linear_constraints]
777 if isinstance(linear_constraints, Iterable):
778 return [self.
dual_rays[0].dual_values[v]
for v
in linear_constraints]
780 "unsupported type in argument for "
781 f
"ray_dual_values: {type(linear_constraints).__name__!r}"
786 self, variables: None = ...
796 """The reduced costs from the first dual ray.
798 An error will be raised if there are no dual rays.
801 variables: an optional Variable or iterator of Variables indicating what
802 reduced costs to return. If not provided, ray_reduced_costs() returns a
803 dictionary with the reduced costs for all variables.
806 The reduced costs from the first dual ray.
809 ValueError: There are no dual rays.
810 TypeError: Argument is not None, a Variable or an iterable of Variables.
811 KeyError: Variable values requested for an invalid variable (e.g. is not a
812 Variable or is a variable for another model).
815 raise ValueError(
"No dual ray available.")
816 if variables
is None:
819 return self.
dual_rays[0].reduced_costs[variables]
820 if isinstance(variables, Iterable):
821 return [self.
dual_rays[0].reduced_costs[v]
for v
in variables]
823 "unsupported type in argument for "
824 f
"ray_reduced_costs: {type(variables).__name__!r}"
828 """Indicates if the best solution has an associated basis.
830 This is NOT guaranteed to be true when termination.reason is
831 TerminationReason.Optimal. It also may be true even when the best solution
832 does not have an associated primal feasible solution.
835 True if the best solution has an associated basis.
839 return self.
solutions[0].basis
is not None
843 self, linear_constraints: None = ...
848 self, linear_constraints: model.LinearConstraint
857 """The constraint basis status associated to the best solution.
859 If there is at least one primal feasible solution, this corresponds to the
860 basis associated to the best primal feasible solution. An error will
861 be raised if the best solution does not have an associated basis.
865 linear_constraints: an optional LinearConstraint or iterator of
866 LinearConstraint indicating what constraint statuses to return. If not
867 provided, returns a dictionary with the constraint statuses for all
871 The constraint basis status associated to the best solution.
874 ValueError: The best solution does not have an associated basis.
875 TypeError: Argument is not None, a LinearConstraint or an iterable of
877 KeyError: LinearConstraint values requested for an invalid
878 linear constraint (e.g. is not a LinearConstraint or is a linear
879 constraint for another model).
882 raise ValueError(_NO_BASIS_ERROR)
883 assert self.
solutions[0].basis
is not None
884 if linear_constraints
is None:
885 return self.
solutions[0].basis.constraint_status
887 return self.
solutions[0].basis.constraint_status[linear_constraints]
888 if isinstance(linear_constraints, Iterable):
890 self.
solutions[0].basis.constraint_status[c]
for c
in linear_constraints
893 "unsupported type in argument for "
894 f
"constraint_status: {type(linear_constraints).__name__!r}"
899 self, variables: None = ...
911 """The variable basis status associated to the best solution.
913 If there is at least one primal feasible solution, this corresponds to the
914 basis associated to the best primal feasible solution. An error will
915 be raised if the best solution does not have an associated basis.
918 variables: an optional Variable or iterator of Variables indicating what
919 reduced costs to return. If not provided, variable_status() returns a
920 dictionary with the reduced costs for all variables.
923 The variable basis status associated to the best solution.
926 ValueError: The best solution does not have an associated basis.
927 TypeError: Argument is not None, a Variable or an iterable of Variables.
928 KeyError: Variable values requested for an invalid variable (e.g. is not a
929 Variable or is a variable for another model).
932 raise ValueError(_NO_BASIS_ERROR)
933 assert self.
solutions[0].basis
is not None
934 if variables
is None:
935 return self.
solutions[0].basis.variable_status
937 return self.
solutions[0].basis.variable_status[variables]
938 if isinstance(variables, Iterable):
939 return [self.
solutions[0].basis.variable_status[v]
for v
in variables]
941 "unsupported type in argument for "
942 f
"variable_status: {type(variables).__name__!r}"
946 """Returns an equivalent protocol buffer for a SolveResult."""
947 proto = result_pb2.SolveResultProto(
949 solutions=[s.to_proto()
for s
in self.
solutions],
950 primal_rays=[r.to_proto()
for r
in self.
primal_rays],
951 dual_rays=[r.to_proto()
for r
in self.
dual_rays],
956 existing_solver_specific_output =
None
958 def has_solver_specific_output(solver_name: str) ->
None:
959 nonlocal existing_solver_specific_output
960 if existing_solver_specific_output
is not None:
962 "found solver specific output for both"
963 f
" {existing_solver_specific_output} and {solver_name}"
965 existing_solver_specific_output = solver_name
968 has_solver_specific_output(
"gscip")
971 has_solver_specific_output(
"osqp")
974 has_solver_specific_output(
"pdlp")
980 result_proto: result_pb2.SolveResultProto,
981) -> result_pb2.ProblemStatusProto:
982 if result_proto.termination.HasField(
"problem_status"):
983 return result_proto.termination.problem_status
984 return result_proto.solve_stats.problem_status
988 result_proto: result_pb2.SolveResultProto,
989) -> result_pb2.ObjectiveBoundsProto:
990 if result_proto.termination.HasField(
"objective_bounds"):
991 return result_proto.termination.objective_bounds
992 return result_pb2.ObjectiveBoundsProto(
993 primal_bound=result_proto.solve_stats.best_primal_bound,
994 dual_bound=result_proto.solve_stats.best_dual_bound,
999 result_proto: result_pb2.SolveResultProto,
1000) -> result_pb2.TerminationProto:
1001 return result_pb2.TerminationProto(
1002 reason=result_proto.termination.reason,
1003 limit=result_proto.termination.limit,
1004 detail=result_proto.termination.detail,
1011 proto: result_pb2.SolveResultProto, mod:
model.Model
1013 """Returns a SolveResult equivalent to the input proto."""
1021 for solution_proto
in proto.solutions:
1022 result.solutions.append(solution.parse_solution(solution_proto, mod))
1023 for primal_ray_proto
in proto.primal_rays:
1024 result.primal_rays.append(solution.parse_primal_ray(primal_ray_proto, mod))
1025 for dual_ray_proto
in proto.dual_rays:
1026 result.dual_rays.append(solution.parse_dual_ray(dual_ray_proto, mod))
1027 if proto.HasField(
"gscip_output"):
1028 result.gscip_specific_output = proto.gscip_output
1029 elif proto.HasField(
"osqp_output"):
1030 result.osqp_specific_output = proto.osqp_output
1031 elif proto.HasField(
"pdlp_output"):
1032 result.pdlp_specific_output = proto.pdlp_output