28 "pi",
"policy-iteration",
29 "lp",
"linear-programming",
31 "ii",
"interval-iteration",
32 "svi",
"sound-value-iteration",
33 "ovi",
"optimistic-value-iteration",
34 "topological",
"vi-to-pi",
35 "vi-to-lp",
"acyclic"};
46 "The maximal number of iterations to perform before iterative solving is aborted.")
61 "Sets whether the relative or the absolute error is considered for detecting convergence.")
67 "Sets which method multiplication style to prefer for value iteration.")
76 "Enforces end component collapsing for MinMax equation systems so that their solution becomes unique. May "
77 "simplify solving but causes some overhead.")
82 "If set, enforce equality in the LP encoding for actions with a unique state.")
104 return storm::solver::MinMaxMethod::ValueIteration;
106 return storm::solver::MinMaxMethod::PolicyIteration;
108 return storm::solver::MinMaxMethod::LinearProgramming;
110 return storm::solver::MinMaxMethod::RationalSearch;
112 return storm::solver::MinMaxMethod::IntervalIteration;
114 return storm::solver::MinMaxMethod::SoundValueIteration;
116 return storm::solver::MinMaxMethod::OptimisticValueIteration;
118 return storm::solver::MinMaxMethod::Topological;
120 return storm::solver::MinMaxMethod::ViToPi;
122 return storm::solver::MinMaxMethod::ViToLp;
124 return storm::solver::MinMaxMethod::Acyclic;
127 STORM_LOG_THROW(
false, storm::exceptions::IllegalArgumentValueException,
virtual std::string getValueAsString() const =0
Retrieves the value of this argument as a string.
virtual uint_fast64_t getValueAsUnsignedInteger() const =0
Retrieves the value of this argument as an unsigned integer.
virtual bool getHasBeenSet() const
Retrieves whether the argument has been set.
virtual double getValueAsDouble() const =0
Retrieves the value of this argument as a double.
virtual bool wasSetFromDefaultValue() const =0
static ArgumentBuilder createUnsignedIntegerArgument(std::string const &name, std::string const &description)
Creates an unsigned integer argument with the given parameters.
static ArgumentBuilder createDoubleArgument(std::string const &name, std::string const &description)
Creates a double argument with the given parameters.
static ArgumentBuilder createStringArgument(std::string const &name, std::string const &description)
Creates a string argument with the given parameters.
static std::shared_ptr< ArgumentValidator< double > > createDoubleRangeValidatorExcluding(double lowerBound, double upperBound)
static std::shared_ptr< ArgumentValidator< std::string > > createMultipleChoiceValidator(std::vector< std::string > const &choices)
This class provides the interface to create an option...
ArgumentBase const & getArgumentByName(std::string const &argumentName) const
Returns a reference to the argument with the specified long name.
bool getHasOptionBeenSet() const
Retrieves whether the option has been set.
bool getLpUseOnlyInitialStateAsObjective() const
Retrieves whether only initial states should occur in the optimization objective.
bool getLpUseNonTrivialBounds() const
Retrieves whether additional bounds should be used when constructing the LP.
bool isMinMaxEquationSolvingMethodSetFromDefaultValue() const
Retrieves whether the min/max equation solving method is set from its default value.
bool isConvergenceCriterionSet() const
Retrieves whether the convergence criterion has been set.
uint_fast64_t getMaximalIterationCount() const
Retrieves the maximal number of iterations to perform until giving up on converging.
bool isMaximalIterationCountSet() const
Retrieves whether the maximal iteration count has been set.
bool isMinMaxEquationSolvingMethodSet() const
Retrieves whether a min/max equation solving technique has been set.
static const std::string moduleName
double getPrecision() const
Retrieves the precision that is used for detecting convergence.
bool isForceUniqueSolutionRequirementSet() const
ConvergenceCriterion getConvergenceCriterion() const
Retrieves the selected convergence criterion.
bool getLpUseEqualityForTrivialActions() const
Retrieves whether equality should be enforced where possible.
MinMaxEquationSolverSettings()
bool isPrecisionSet() const
Retrieves whether the precision has been set.
storm::solver::MultiplicationStyle getValueIterationMultiplicationStyle() const
Retrieves the multiplication style to use in the min-max methods.
storm::solver::MinMaxMethod getMinMaxEquationSolvingMethod() const
Retrieves the selected min/max equation solving method.
This is the base class of the settings for a particular module.
void addOption(std::shared_ptr< Option > const &option)
Adds and registers the given option.
Option & getOption(std::string const &longName)
Retrieves the option with the given long name.
#define STORM_LOG_THROW(cond, exception, message)
const std::string maximalIterationsOptionName
const std::string forceUniqueSolutionRequirementOptionName
const std::string solvingMethodOptionName
const std::string lpUseNonTrivialBoundsOptionName
const std::string precisionOptionName
const std::string lpOptimizeOnlyInitialStateOptionName
const std::string valueIterationMultiplicationStyleOptionName
const std::string absoluteOptionName
const std::string lpEqualityForUniqueActionsOptionName
const std::string maximalIterationsOptionShortName
SettingsType const & getModule()
Get module.