12const std::string ModelCheckerSettings::filterRewZeroOptionName =
"filterrewzero";
13const std::string ModelCheckerSettings::ltl2daToolOptionName =
"ltl2datool";
14const std::string ModelCheckerSettings::conditionalAlgorithmOptionName =
"conditional";
18 "If set, states with reward zero are filtered out, potentially reducing the size of the equation system")
22 "If set, use an external tool to convert LTL formulas to state-based deterministic automata in HOA format")
25 "filename",
"A script that can be called with a prefix formula and a name for the output automaton.")
29 std::vector<std::string>
const conditionalAlgs = {
"default",
"restart",
"bisection",
"bisection-advanced",
"pi"};
34 .setDefaultValueString(
"default")
virtual std::string getValueAsString() const =0
Retrieves the value of this argument as a string.
static ArgumentBuilder createStringArgument(std::string const &name, std::string const &description)
Creates a string argument with the given parameters.
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.
ModelCheckerSettings()
Creates a new set of general settings.
bool isFilterRewZeroSet() const
ConditionalAlgorithmSetting getConditionalAlgorithmSetting() const
Retrieves the specified algorithm for conditional probabilities.
bool isLtl2daToolSet() const
Retrieves whether the external ltl2da tool has been set.
static const std::string moduleName
bool isConditionalAlgorithmSet() const
Retrieves whether an algorithm for conditional properties has been set.
std::string getLtl2daTool() const
Retrieves the external ltl2da tool that is used for converting LTL formulas to deterministic automata...
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.
ConditionalAlgorithmSetting
ConditionalAlgorithmSetting conditionalAlgorithmSettingFromString(std::string const &algorithm)