LSSolution Class¶
- class localsolver.LSSolution¶
Solution to the optimization model. A solution carries the values of all expressions in the model. It is used to retrieve the values of all expressions (getting the solution), or to set the values of some decisions (setting the solution).
- See:
Summary¶
Returns the LocalSolver object associated to this solution. |
|
Sets the value of the given expression in this solution. |
|
Sets the value of the given expression in this solution. |
|
Sets the value of the given expression in this solution. |
|
Sets the value of the given expression in this solution. |
|
Returns the value of the given expression in this solution. |
|
Returns the value of the given expression in this solution. |
|
Returns the value of the given expression in this solution. |
|
Returns the value of the given expression in this solution. |
|
Returns the value of the given expression in this solution. |
|
Returns the value of the given expression in this solution. |
|
Returns true if the given expression is violated in this solution. |
|
Returns true if the given expression has an undefined value in this solution. |
|
Returns the status of the solution. |
|
Returns the bound computed by the solver for the given objective. |
|
Returns the bound computed by the solver for the given objective. |
|
Returns the bound computed by the solver for the given objective. |
|
Returns the gap computed by the solver for the given objective. |
|
Clear the solution and set all decisions to zero. |
Instance methods¶
- LocalSolver GetLocalSolver()¶
Returns the LocalSolver object associated to this solution.
- Returns:
LocalSolver object
- Return type:
- void SetValue(LSExpression expr, long value)¶
Sets the value of the given expression in this solution. Only decisions can be set. Only allowed in state
Stopped
. Only allowed if this expression is an integer or a boolean. If the solver was not launched, this value will be used as an initial value for the decision.This method has the same behavior as
LSSolution.SetIntValue
.- Arguments:
expr (LSExpression) – Decision.
value (long) – Value assigned to the decision in this solution.
- See:
- See:
- See:
- void SetValue(LSExpression expr, double value)
Sets the value of the given expression in this solution. Only decisions can be set. Only allowed in state
Stopped
. Only allowed if this expression is a double. If the solver was not launched, this value will be used as an initial value for the decision.This method has the same behavior as
LSSolution.SetDoubleValue
.- Arguments:
expr (LSExpression) – Decision.
value (double) – Value assigned to the decision in this solution.
- See:
- See:
- void SetValue(LSExpression expr, LSInterval value)
Sets the value of the given expression in this solution. Only decisions can be set. Only allowed in state
Stopped
. Only allowed if this expression is an interval. If the solver was not launched, this value will be used as an initial value for the decision.This method has the same behavior as
LSSolution.SetIntervalValue
.- Arguments:
expr (LSExpression) – Decision.
value (LSInterval) – Value assigned to the decision in this solution.
- See:
- See:
- void SetIntValue(LSExpression expr, long value)¶
Sets the value of the given expression in this solution. Only decisions can be set. Only allowed in state
Stopped
. Only allowed if this expression is an integer or a boolean. If the solver was not launched, this value will be used as an initial value for the decision.- Since:
3.0
- Arguments:
expr (LSExpression) – Decision.
value (long) – Value assigned to the decision in this solution.
- See:
- See:
- See:
- void SetDoubleValue(LSExpression expr, long value)¶
Sets the value of the given expression in this solution. Only decisions can be set. Only allowed in state
Stopped
. If the solver was not launched, this value will be used as an initial value for the decision. Only allowed if this expression is a double.- Since:
3.0
- Arguments:
expr (LSExpression) – Decision.
value (long) – Value assigned to the decision in this solution.
- See:
- See:
- void SetIntervalValue(LSExpression expr, LSInterval value)¶
Sets the value of the given expression in this solution. Only decisions can be set. Only allowed in state
Stopped
. If the solver was not launched, this value will be used as an initial value for the decision. Only allowed if this expression is an interval.- Since:
12.0
- Arguments:
expr (LSExpression) – Decision.
value (LSInterval) – Value assigned to the decision in this solution.
- See:
- See:
- long GetValue(LSExpression expr)¶
Returns the value of the given expression in this solution. Only allowed in states
Paused
orStopped
. Only allowed if this expression is an integer or a boolean.This method has the same behavior as
LSSolution.GetIntValue
.- Arguments:
expr (LSExpression) – Expression.
- Returns:
Value of the expression in this solution.
- Return type:
long
- See:
- See:
- double GetDoubleValue(LSExpression expr)¶
Returns the value of the given expression in this solution. Only allowed in states
Paused
orStopped
. Only allowed if this expression is a double.- Since:
3.0
- Arguments:
expr (LSExpression) – Expression.
- Returns:
Value of the expression in this solution.
- Return type:
double
- See:
- long GetIntValue(LSExpression expr)¶
Returns the value of the given expression in this solution. Only allowed in states
Paused
orStopped
. Only allowed if this expression is an integer or a boolean.- Since:
3.0
- Arguments:
expr (LSExpression) – Expression.
- Returns:
Value of the expression in this solution.
- Return type:
long
- See:
- See:
- long GetIntervalValue(LSExpression expr)¶
Returns the value of the given expression in this solution. Only allowed in states
Paused
orStopped
. Only allowed if this expression is an interval.- Since:
3.0
- Arguments:
expr (LSExpression) – Expression.
- Returns:
Value of the expression in this solution.
- Return type:
- See:
- LSCollection GetCollectionValue(LSExpression expr)¶
Returns the value of the given expression in this solution. Only allowed in states
Paused
orStopped
. Only allowed if this expression is a collection (list or set).- Since:
5.5
- Arguments:
expr (LSExpression) – Expression.
- Returns:
Value of the expression in this solution.
- Return type:
- See:
- LSCollection GetArrayValue(LSExpression expr)¶
Returns the value of the given expression in this solution. Only allowed in states
Paused
orStopped
. Only allowed if this expression is an array.- Since:
7.5
- Arguments:
expr (LSExpression) – Expression.
- Returns:
Value of the expression in this solution.
- Return type:
- See:
- bool IsViolated(LSExpression expr)¶
Returns true if the given expression is violated in this solution. An expression can be violated in 3 cases:
It is a constraint and its value is 0.
It is a double and its value is NaN (Not A Number).
It is an integer or boolean with no valid value (arithmetic or out of bounds exception).
Only allowed in states
Paused
orStopped
.- Since:
5.5
- Arguments:
expr (LSExpression) – Expression.
- Returns:
True if the expression is violated in this solution.
- Return type:
bool
- bool IsUndefined(LSExpression expr)¶
Returns true if the given expression has an undefined value in this solution. An expression can be undefined in 4 cases:
It is a double and its value is NaN (Not a Number).
It is an integer or boolean with no valid value (arithmetic or out of bounds exception).
It is an interval with at least one undefined bound.
It is the result of any ill-defined operation (at with out of bounds index or operations on undefined values for instance).
Only allowed in states
Paused
orStopped
.- Since:
7.0
- Arguments:
expr (LSExpression) – Expression.
- Returns:
True if this expression has an undefined value in this solution.
- LSSolutionStatus GetStatus()¶
Returns the status of the solution. Only allowed in states
Paused
orStopped
.- Returns:
Status of the solution
- Return type:
- long GetObjectiveBound(int objectiveIndex)¶
Returns the bound computed by the solver for the given objective. If the solver has never been launched, this method returns Int64.MaxValue or Int64.MinValue depending on the optimization direction of the objective. Only allowed in states
Paused
orStopped
. Only allowed if this expression is a boolean or an integer. This method has the same behavior asLSSolution.GetIntObjectiveBound
.- Since:
8.5
- Arguments:
objectiveIndex (int) – Index of the objective.
- Returns:
Bound of the given objective.
- Return type:
long
- See:
- See:
- long GetIntObjectiveBound(int objectiveIndex)¶
Returns the bound computed by the solver for the given objective. If the solver has never been launched, this method returns Int64.MaxValue or Int64.MinValue depending on the optimization direction of the objective. Only allowed in states
Paused
orStopped
. Only allowed if this expression is a boolean or an integer.- Since:
8.5
- Arguments:
objectiveIndex (int) – Index of the objective.
- Returns:
Bound of the given objective.
- Return type:
long
- See:
- See:
- double GetDoubleObjectiveBound(int objectiveIndex)¶
Returns the bound computed by the solver for the given objective. If the solver has never been launched, this method returns Double.PositiveInfinity or Double.NegativeInfinity depending on the optimization direction of the objective. Only allowed in states
Paused
orStopped
. Only allowed if this expression is a double.- Since:
8.5
- Arguments:
objectiveIndex (int) – Index of the objective.
- Returns:
Bound of the given objective.
- Return type:
double
- See:
- double GetObjectiveGap(int objectiveIndex)¶
Returns the gap computed by the solver for the given objective. It is defined as:
\[|obj - bound| / \max(1, |obj|, |bound|)\]Only allowed in states
Paused
orStopped
.- Arguments:
objectiveIndex (int) – Index of the objective.
- Returns:
Gap of the given objective.
- Return type:
double