1#ifndef STORM_SETTINGS_MODULES_GENERALSETTINGS_H_
2#define STORM_SETTINGS_MODULES_GENERALSETTINGS_H_
4#include "storm-config.h"
126 bool check()
const override;
134 static const std::string helpOptionName;
135 static const std::string helpOptionShortName;
136 static const std::string printTimeAndMemoryOptionName;
137 static const std::string printTimeAndMemoryOptionShortName;
138 static const std::string versionOptionName;
139 static const std::string verboseOptionName;
140 static const std::string verboseOptionShortName;
141 static const std::string showProgressOptionName;
142 static const std::string showProgressOptionShortName;
143 static const std::string precisionOptionName;
144 static const std::string precisionOptionShortName;
145 static const std::string configOptionName;
146 static const std::string configOptionShortName;
147 static const std::string bisimulationOptionName;
148 static const std::string bisimulationOptionShortName;
149 static const std::string parametricOptionName;
150 static const std::string exactOptionName;
151 static const std::string soundOptionName;
This class represents the general settings.
bool isHelpSet() const
Retrieves whether the help option was set.
bool isBisimulationSet() const
Retrieves whether the option to perform bisimulation minimization is set.
uint64_t getShowProgressDelay() const
Retrieves the delay for printing information about the exploration progress.
bool isExactSet() const
Retrieves whether the option enabling exact model checking is set and we should use infinite precisio...
std::string getConfigFilename() const
Retrieves the name of the file that is to be scanned for settings.
void finalize() override
Prepares the modules for further usage, should be called at the end of the initialization,...
bool isVerboseSet() const
Retrieves whether the verbose option was set.
bool isParametricSet() const
Retrieves whether the option enabling parametric model checking is set.
bool isVersionSet() const
Retrieves whether the version option was set.
bool isPrecisionSet() const
bool isSoundSet() const
Retrieves whether the option forcing soundnet is set.
bool isExactFinitePrecisionSet() const
Retrieves whether the option enabling exact model checking is set.
bool isShowProgressSet() const
Retrieves whether the progress option was set.
void setPrecision(std::string precision)
std::string getHelpFilterExpression() const
Retrieves the name of the module for which to show the help or "all" to indicate that the full help n...
bool isConfigSet() const
Retrieves whether the config option was set.
bool check() const override
Checks whether the settings are consistent.
GeneralSettings()
Creates a new set of general settings.
double getPrecision() const
Retrieves the precision to use for numerical operations.
static const std::string moduleName
This is the base class of the settings for a particular module.
SettingsType const & getModule()
Get module.