Uses of Class
com.google.ortools.linearsolver.MPSolver.BasisStatus
-
Packages that use MPSolver.BasisStatus Package Description com.google.ortools.linearsolver -
-
Uses of MPSolver.BasisStatus in com.google.ortools.linearsolver
Methods in com.google.ortools.linearsolver that return MPSolver.BasisStatus Modifier and Type Method Description MPSolver.BasisStatusMPConstraint. basisStatus()Advanced usage: returns the basis status of the constraint.
It is only available for continuous problems).
Note that if a constraint "linear_expression in [lb, ub]" is transformed
into "linear_expression + slack = 0" with slack in [-ub, -lb], then this
status is the same as the status of the slack variable with AT_UPPER_BOUND
and AT_LOWER_BOUND swapped.
MPSolver.BasisStatusMPVariable. basisStatus()Advanced usage: returns the basis status of the variable in the current
solution (only available for continuous problems).
static MPSolver.BasisStatusMPSolver.BasisStatus. swigToEnum(int swigValue)static MPSolver.BasisStatusMPSolver.BasisStatus. valueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static MPSolver.BasisStatus[]MPSolver.BasisStatus. values()Returns an array containing the constants of this enum type, in the order they are declared.
-