Storm
A Modern Probabilistic Model Checker
|
A class that implements the LpSolver interface using glpk as the background solver. More...
#include <GlpkLpSolver.h>
Public Types | |
using | VariableType = typename LpSolver< ValueType, RawMode >::VariableType |
using | Variable = typename LpSolver< ValueType, RawMode >::Variable |
using | Constant = typename LpSolver< ValueType, RawMode >::Constant |
using | Constraint = typename LpSolver< ValueType, RawMode >::Constraint |
![]() | |
enum class | VariableType { Continuous , Integer , Binary } |
Enumerates the different types of variables. More... | |
using | Variable = std::conditional_t< RawMode, typename RawLpConstraint< ValueType >::VariableIndexType, storm::expressions::Variable > |
using | Constant = std::conditional_t< RawMode, ValueType, storm::expressions::Expression > |
using | Constraint = std::conditional_t< RawMode, RawLpConstraint< ValueType >, storm::expressions::Expression > |
Public Member Functions | |
GlpkLpSolver (std::string const &name, OptimizationDirection const &optDir) | |
Constructs a solver with the given name and model sense. | |
GlpkLpSolver (std::string const &name) | |
Constructs a solver with the given name. | |
GlpkLpSolver (OptimizationDirection const &optDir) | |
Constructs a solver without a name and the given model sense. | |
GlpkLpSolver () | |
Constructs a solver without a name. | |
virtual | ~GlpkLpSolver () |
Destructs a solver by freeing the pointers to glpk's structures. | |
virtual Variable | addVariable (std::string const &name, VariableType const &type, std::optional< ValueType > const &lowerBound=std::nullopt, std::optional< ValueType > const &upperBound=std::nullopt, ValueType objectiveFunctionCoefficient=0) override |
Registers a variable of the given type. | |
virtual void | update () const override |
Updates the model to make the variables that have been declared since the last call to update usable. | |
virtual void | addConstraint (std::string const &name, Constraint const &constraint) override |
Adds a the given constraint to the LP problem. | |
virtual void | addIndicatorConstraint (std::string const &name, Variable indicatorVariable, bool indicatorValue, Constraint const &constraint) override |
Adds the given indicator constraint to the LP problem: "If indicatorVariable == indicatorValue, then constraint". | |
virtual void | optimize () const override |
Optimizes the LP problem previously constructed. | |
virtual bool | isInfeasible () const override |
Retrieves whether the model was found to be infeasible. | |
virtual bool | isUnbounded () const override |
Retrieves whether the model was found to be infeasible. | |
virtual bool | isOptimal () const override |
Retrieves whether the model was found to be optimal, i.e. | |
virtual ValueType | getContinuousValue (Variable const &name) const override |
Retrieves the value of the continuous variable with the given name. | |
virtual int_fast64_t | getIntegerValue (Variable const &name) const override |
Retrieves the value of the integer variable with the given name. | |
virtual bool | getBinaryValue (Variable const &name) const override |
Retrieves the value of the binary variable with the given name. | |
virtual ValueType | getObjectiveValue () const override |
Retrieves the value of the objective function. | |
virtual void | writeModelToFile (std::string const &filename) const override |
Writes the current LP problem to the given file. | |
virtual void | push () override |
Pushes a backtracking point on the solver's stack. | |
virtual void | pop () override |
Pops a backtracking point from the solver's stack. | |
virtual void | setMaximalMILPGap (ValueType const &gap, bool relative) override |
Specifies the maximum difference between lower- and upper objective bounds that triggers termination. | |
virtual ValueType | getMILPGap (bool relative) const override |
Returns the obtained gap after a call to optimize() | |
![]() | |
LpSolver () | |
Creates an empty LP solver. | |
LpSolver (OptimizationDirection const &optDir) | |
Creates an empty LP solver with the given model sense. | |
virtual | ~LpSolver ()=default |
Variable | addBoundedContinuousVariable (std::string const &name, ValueType lowerBound, ValueType upperBound, ValueType objectiveFunctionCoefficient=0) |
Registers an upper- and lower-bounded continuous variable, i.e. | |
Variable | addLowerBoundedContinuousVariable (std::string const &name, ValueType lowerBound, ValueType objectiveFunctionCoefficient=0) |
Registers a lower-bounded continuous variable, i.e. | |
Variable | addUpperBoundedContinuousVariable (std::string const &name, ValueType upperBound, ValueType objectiveFunctionCoefficient=0) |
Registers an upper-bounded continuous variable, i.e. | |
Variable | addUnboundedContinuousVariable (std::string const &name, ValueType objectiveFunctionCoefficient=0) |
Registers a unbounded continuous variable, i.e. | |
Variable | addContinuousVariable (std::string const &name, std::optional< ValueType > const &lowerBound=std::nullopt, std::optional< ValueType > const &upperBound=std::nullopt, ValueType objectiveFunctionCoefficient=0) |
Registers a continuous variable, i.e. | |
Variable | addBoundedIntegerVariable (std::string const &name, ValueType lowerBound, ValueType upperBound, ValueType objectiveFunctionCoefficient=0) |
Registers an upper- and lower-bounded integer variable, i.e. | |
Variable | addLowerBoundedIntegerVariable (std::string const &name, ValueType lowerBound, ValueType objectiveFunctionCoefficient=0) |
Registers a lower-bounded integer variable, i.e. | |
Variable | addUpperBoundedIntegerVariable (std::string const &name, ValueType upperBound, ValueType objectiveFunctionCoefficient=0) |
Registers an upper-bounded integer variable, i.e. | |
Variable | addUnboundedIntegerVariable (std::string const &name, ValueType objectiveFunctionCoefficient=0) |
Registers an unbounded integer variable, i.e. | |
Variable | addIntegerVariable (std::string const &name, std::optional< ValueType > const &lowerBound=std::nullopt, std::optional< ValueType > const &upperBound=std::nullopt, ValueType objectiveFunctionCoefficient=0) |
Registers an integer variable, i.e. | |
Variable | addBinaryVariable (std::string const &name, ValueType objectiveFunctionCoefficient=0) |
Registers a boolean variable, i.e. | |
Constant | getConstant (ValueType value) const |
Retrieves an expression that characterizes the given constant value. | |
void | setOptimizationDirection (OptimizationDirection const &optimizationDirection) |
Sets whether the objective function of this model is to be minimized or maximized. | |
OptimizationDirection | getOptimizationDirection () const |
Retrieves whether the objective function of this model is to be minimized or maximized. | |
storm::expressions::ExpressionManager const & | getManager () const |
Retrieves the manager for the variables created for this solver. | |
Additional Inherited Members | |
![]() | |
storm::expressions::Variable | declareOrGetExpressionVariable (std::string const &name, VariableType const &type) |
![]() | |
std::shared_ptr< storm::expressions::ExpressionManager > | manager |
bool | currentModelHasBeenOptimized |
A class that implements the LpSolver interface using glpk as the background solver.
Definition at line 19 of file GlpkLpSolver.h.
using storm::solver::GlpkLpSolver< ValueType, RawMode >::Constant = typename LpSolver<ValueType, RawMode>::Constant |
Definition at line 23 of file GlpkLpSolver.h.
using storm::solver::GlpkLpSolver< ValueType, RawMode >::Constraint = typename LpSolver<ValueType, RawMode>::Constraint |
Definition at line 24 of file GlpkLpSolver.h.
using storm::solver::GlpkLpSolver< ValueType, RawMode >::Variable = typename LpSolver<ValueType, RawMode>::Variable |
Definition at line 22 of file GlpkLpSolver.h.
using storm::solver::GlpkLpSolver< ValueType, RawMode >::VariableType = typename LpSolver<ValueType, RawMode>::VariableType |
Definition at line 21 of file GlpkLpSolver.h.
storm::solver::GlpkLpSolver< ValueType, RawMode >::GlpkLpSolver | ( | std::string const & | name, |
OptimizationDirection const & | optDir | ||
) |
Constructs a solver with the given name and model sense.
name | The name of the LP problem. |
optDir | A value indicating whether the value of the objective function is to be minimized or maximized. |
Definition at line 61 of file GlpkLpSolver.cpp.
storm::solver::GlpkLpSolver< ValueType, RawMode >::GlpkLpSolver | ( | std::string const & | name | ) |
Constructs a solver with the given name.
By default the objective function is assumed to be minimized, but this may be altered later using a call to setOptimizationDirection.
name | The name of the LP problem. |
Definition at line 67 of file GlpkLpSolver.cpp.
storm::solver::GlpkLpSolver< ValueType, RawMode >::GlpkLpSolver | ( | OptimizationDirection const & | optDir | ) |
Constructs a solver without a name and the given model sense.
optDir | A value indicating whether the value of the objective function is to be minimized or maximized. |
Definition at line 77 of file GlpkLpSolver.cpp.
storm::solver::GlpkLpSolver< ValueType, RawMode >::GlpkLpSolver | ( | ) |
Constructs a solver without a name.
By default the objective function is assumed to be minimized, but this may be altered later using a call to setOptimizationDirection.
Definition at line 72 of file GlpkLpSolver.cpp.
|
virtual |
Destructs a solver by freeing the pointers to glpk's structures.
Definition at line 82 of file GlpkLpSolver.cpp.
|
overridevirtual |
Adds a the given constraint to the LP problem.
name | The name of the constraint. If empty, the constraint has no name. |
constraint | An expression that represents the constraint. The given constraint must be a linear (in)equality over the registered variables. |
Implements storm::solver::LpSolver< ValueType, RawMode >.
Definition at line 166 of file GlpkLpSolver.cpp.
|
overridevirtual |
Adds the given indicator constraint to the LP problem: "If indicatorVariable == indicatorValue, then constraint".
name | The name of the constraint. If empty, the constraint has no name. |
indicatorVariable | must be a registered binary |
indicatorValue | |
constraint | An expression that represents the constraint. The given constraint must be a linear (in)equality over the registered variables. |
Implements storm::solver::LpSolver< ValueType, RawMode >.
Definition at line 245 of file GlpkLpSolver.cpp.
|
overridevirtual |
Registers a variable of the given type.
name | The name of the variable. |
type | The type of the variable |
lowerBound | The optional lower bound |
upperBound | The optional upper bound |
objectiveFunctionCoefficient | The coefficient with which the variable appears in the objective function. If omitted (or set to zero), the variable is irrelevant for the objective value. |
Implements storm::solver::LpSolver< ValueType, RawMode >.
Definition at line 110 of file GlpkLpSolver.cpp.
|
overridevirtual |
Retrieves the value of the binary variable with the given name.
Note that this may only be called, if the model was found to be optimal, i.e. iff isOptimal() returns true.
variable | The variable whose integer value (in the optimal solution) to retrieve. |
Implements storm::solver::LpSolver< ValueType, RawMode >.
Definition at line 448 of file GlpkLpSolver.cpp.
|
overridevirtual |
Retrieves the value of the continuous variable with the given name.
Note that this may only be called, if the model was found to be optimal, i.e. iff isOptimal() returns true.
variable | The variable whose integer value (in the optimal solution) to retrieve. |
Implements storm::solver::LpSolver< ValueType, RawMode >.
Definition at line 395 of file GlpkLpSolver.cpp.
|
overridevirtual |
Retrieves the value of the integer variable with the given name.
Note that this may only be called, if the model was found to be optimal, i.e. iff isOptimal() returns true.
variable | The variable whose integer value (in the optimal solution) to retrieve. |
Implements storm::solver::LpSolver< ValueType, RawMode >.
Definition at line 419 of file GlpkLpSolver.cpp.
|
overridevirtual |
Returns the obtained gap after a call to optimize()
Implements storm::solver::LpSolver< ValueType, RawMode >.
Definition at line 599 of file GlpkLpSolver.cpp.
|
overridevirtual |
Retrieves the value of the objective function.
Note that this may only be called, if the model was found to be optimal, i.e. iff isOptimal() returns true.
Implements storm::solver::LpSolver< ValueType, RawMode >.
Definition at line 483 of file GlpkLpSolver.cpp.
|
overridevirtual |
Retrieves whether the model was found to be infeasible.
This can only be called after the model has been optimized and not modified afterwards. Otherwise, an exception is thrown.
Implements storm::solver::LpSolver< ValueType, RawMode >.
Definition at line 350 of file GlpkLpSolver.cpp.
|
overridevirtual |
Retrieves whether the model was found to be optimal, i.e.
neither infeasible nor unbounded. This can only be called after the model has been optimized and not modified afterwards. Otherwise, an exception is thrown.
Implements storm::solver::LpSolver< ValueType, RawMode >.
Definition at line 386 of file GlpkLpSolver.cpp.
|
overridevirtual |
Retrieves whether the model was found to be infeasible.
This can only be called after the model has been optimized and not modified afterwards. Otherwise, an exception is thrown.
Implements storm::solver::LpSolver< ValueType, RawMode >.
Definition at line 368 of file GlpkLpSolver.cpp.
|
overridevirtual |
Optimizes the LP problem previously constructed.
Afterwards, the methods isInfeasible, isUnbounded and isOptimal can be used to query the optimality status.
Implements storm::solver::LpSolver< ValueType, RawMode >.
Definition at line 270 of file GlpkLpSolver.cpp.
|
overridevirtual |
Pops a backtracking point from the solver's stack.
This deletes all assertions from the solver's stack that were added after the last call to push().
Implements storm::solver::LpSolver< ValueType, RawMode >.
Definition at line 532 of file GlpkLpSolver.cpp.
|
overridevirtual |
Pushes a backtracking point on the solver's stack.
A following call to pop() deletes exactly those assertions from the solver's stack that were added after this call.
Implements storm::solver::LpSolver< ValueType, RawMode >.
Definition at line 516 of file GlpkLpSolver.cpp.
|
overridevirtual |
Specifies the maximum difference between lower- and upper objective bounds that triggers termination.
That means a solution is considered optimal if upperBound - lowerBound < gap * (relative ? |upperBound| : 1). Only relevant for programs with integer/boolean variables.
Implements storm::solver::LpSolver< ValueType, RawMode >.
Definition at line 593 of file GlpkLpSolver.cpp.
|
overridevirtual |
Updates the model to make the variables that have been declared since the last call to update
usable.
Implements storm::solver::LpSolver< ValueType, RawMode >.
Definition at line 161 of file GlpkLpSolver.cpp.
|
overridevirtual |
Writes the current LP problem to the given file.
filename | The file to which to write the string representation of the LP. |
Implements storm::solver::LpSolver< ValueType, RawMode >.
Definition at line 506 of file GlpkLpSolver.cpp.