15const std::string ModelCheckerSettings::filterRewZeroOptionName =
"filterrewzero";
16const std::string ModelCheckerSettings::ltl2daToolOptionName =
"ltl2datool";
20 "If set, states with reward zero are filtered out, potentially reducing the size of the equation system")
24 "If set, use an external tool to convert LTL formulas to state-based deterministic automata in HOA format")
27 "filename",
"A script that can be called with a prefix formula and a name for the output automaton.")
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.
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
bool isLtl2daToolSet() const
Retrieves whether the external ltl2da tool has been set.
static const std::string moduleName
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.