Module src.olaaaf.mlo_solver.optimizationValues

Enumeration informing of the final state of an optimization task.

Classes

class OptimizationValues (*args, **kwds)

Enumeration informing of the final state of an optimization task.

Expand source code
class OptimizationValues(enum.Enum):
    """
    Enumeration informing of the final state of an optimization task.
    """

    INFEASIBLE = -1 #: If the problem is infeasible.
    OPTIMAL = 0 #: If an optimum was found.
    UNBOUNDED = 1 #: If the optimum is at infinite.

Ancestors

  • enum.Enum

Class variables

var INFEASIBLE

If the problem is infeasible.

var OPTIMAL

If an optimum was found.

var UNBOUNDED

If the optimum is at infinite.