Storm
A Modern Probabilistic Model Checker
Loading...
Searching...
No Matches
CoreSettings.cpp
Go to the documentation of this file.
2
10
13
17
18namespace storm {
19namespace settings {
20namespace modules {
21
22const std::string CoreSettings::moduleName = "core";
23const std::string CoreSettings::eqSolverOptionName = "eqsolver";
24const std::string CoreSettings::lpSolverOptionName = "lpsolver";
25const std::string CoreSettings::smtSolverOptionName = "smtsolver";
26const std::string CoreSettings::statisticsOptionName = "statistics";
27const std::string CoreSettings::statisticsOptionShortName = "stats";
28const std::string CoreSettings::engineOptionName = "engine";
29const std::string CoreSettings::engineOptionShortName = "e";
30const std::string CoreSettings::ddLibraryOptionName = "ddlib";
31const std::string CoreSettings::intelTbbOptionName = "enable-tbb";
32const std::string CoreSettings::intelTbbOptionShortName = "tbb";
33
35 // TODO: We currently never set Gurobi as a default LP solver as
36 // its availability is depending on the license, which may be confusing.
37 // We track this item in #issue 680.
38#if defined STORM_HAVE_GLPK
39 return "glpk";
40#elif defined STORM_HAVE_SOPLEX
41 return "soplex"
42#else
43 return "z3";
44#endif
45}
46
47CoreSettings::CoreSettings() : ModuleSettings(moduleName), engine(storm::utility::Engine::Sparse) {
48 std::vector<std::string> engines;
49 for (auto e : storm::utility::getEngines()) {
51 }
52 engines.push_back("portfolio"); // for backwards compatibility
53
54 this->addOption(storm::settings::OptionBuilder(moduleName, engineOptionName, false, "Sets which engine is used for model building and model checking.")
55 .setShortName(engineOptionShortName)
56 .addArgument(storm::settings::ArgumentBuilder::createStringArgument("name", "The name of the engine to use.")
58 .setDefaultValueString("sparse")
59 .build())
60 .build());
61
62 std::vector<std::string> linearEquationSolver = {"gmm++", "native", "eigen", "elimination", "topological", "acyclic"};
63 this->addOption(
64 storm::settings::OptionBuilder(moduleName, eqSolverOptionName, false, "Sets which solver is preferred for solving systems of linear equations.")
65 .addArgument(storm::settings::ArgumentBuilder::createStringArgument("name", "The name of the solver to prefer.")
67 .setDefaultValueString("topological")
68 .build())
69 .build());
70
71 std::vector<std::string> ddLibraries = {"cudd", "sylvan"};
72 this->addOption(storm::settings::OptionBuilder(moduleName, ddLibraryOptionName, false, "Sets which library is preferred for decision-diagram operations.")
73 .addArgument(storm::settings::ArgumentBuilder::createStringArgument("name", "The name of the library to prefer.")
75 .setDefaultValueString("sylvan")
76 .build())
77 .build());
78
79 std::vector<std::string> lpSolvers = {"gurobi", "glpk", "z3", "soplex"};
80 this->addOption(storm::settings::OptionBuilder(moduleName, lpSolverOptionName, false, "Sets which LP solver is preferred.")
81 .addArgument(storm::settings::ArgumentBuilder::createStringArgument("name", "The name of an LP solver.")
84 .build())
85 .build());
86
87 std::vector<std::string> smtSolvers = {"z3", "mathsat"};
88 this->addOption(storm::settings::OptionBuilder(moduleName, smtSolverOptionName, false, "Sets which SMT solver is preferred.")
89 .addArgument(storm::settings::ArgumentBuilder::createStringArgument("name", "The name of an SMT solver.")
92 .build())
93 .build());
94 this->addOption(storm::settings::OptionBuilder(moduleName, statisticsOptionName, false, "Sets whether to display statistics if available.")
95 .setShortName(statisticsOptionShortName)
96 .build());
97
98 this->addOption(
99 storm::settings::OptionBuilder(moduleName, intelTbbOptionName, false, "Sets whether to use Intel TBB (if Storm was built with support for TBB).")
100 .setShortName(intelTbbOptionShortName)
101 .build());
102}
103
104storm::solver::EquationSolverType CoreSettings::getEquationSolver() const {
105 std::string equationSolverName = this->getOption(eqSolverOptionName).getArgumentByName("name").getValueAsString();
106 if (equationSolverName == "gmm++") {
107 return storm::solver::EquationSolverType::Gmmxx;
108 } else if (equationSolverName == "native") {
109 return storm::solver::EquationSolverType::Native;
110 } else if (equationSolverName == "eigen") {
111 return storm::solver::EquationSolverType::Eigen;
112 } else if (equationSolverName == "elimination") {
113 return storm::solver::EquationSolverType::Elimination;
114 } else if (equationSolverName == "topological") {
115 return storm::solver::EquationSolverType::Topological;
116 } else if (equationSolverName == "acyclic") {
117 return storm::solver::EquationSolverType::Acyclic;
118 }
119 STORM_LOG_THROW(false, storm::exceptions::IllegalArgumentValueException, "Unknown equation solver '" << equationSolverName << "'.");
120}
121
123 return this->getOption(eqSolverOptionName).getHasOptionBeenSet();
124}
125
127 return !this->getOption(eqSolverOptionName).getHasOptionBeenSet() || this->getOption(eqSolverOptionName).getArgumentByName("name").wasSetFromDefaultValue();
128}
129
130storm::solver::LpSolverType CoreSettings::getLpSolver() const {
131 std::string lpSolverName = this->getOption(lpSolverOptionName).getArgumentByName("name").getValueAsString();
132 if (lpSolverName == "gurobi") {
133 return storm::solver::LpSolverType::Gurobi;
134 } else if (lpSolverName == "glpk") {
135 return storm::solver::LpSolverType::Glpk;
136 } else if (lpSolverName == "z3") {
137 return storm::solver::LpSolverType::Z3;
138 } else if (lpSolverName == "soplex") {
139 return storm::solver::LpSolverType::Soplex;
140 }
141 STORM_LOG_THROW(false, storm::exceptions::IllegalArgumentValueException, "Unknown LP solver '" << lpSolverName << "'.");
142}
143
145 return !this->getOption(lpSolverOptionName).getHasOptionBeenSet() || this->getOption(lpSolverOptionName).getArgumentByName("name").wasSetFromDefaultValue();
146}
147
148storm::solver::SmtSolverType CoreSettings::getSmtSolver() const {
149 std::string smtSolverName = this->getOption(smtSolverOptionName).getArgumentByName("name").getValueAsString();
150 if (smtSolverName == "z3") {
151 return storm::solver::SmtSolverType::Z3;
152 } else if (smtSolverName == "mathsat") {
153 return storm::solver::SmtSolverType::Mathsat;
154 }
155 STORM_LOG_THROW(false, storm::exceptions::IllegalArgumentValueException, "Unknown SMT solver '" << smtSolverName << "'.");
156}
157
159 std::string ddLibraryAsString = this->getOption(ddLibraryOptionName).getArgumentByName("name").getValueAsString();
160 if (ddLibraryAsString == "sylvan") {
162 } else {
164 }
165}
166
168 return !this->getOption(ddLibraryOptionName).getArgumentByName("name").getHasBeenSet() ||
169 this->getOption(ddLibraryOptionName).getArgumentByName("name").wasSetFromDefaultValue();
170}
171
173 return this->getOption(statisticsOptionName).getHasOptionBeenSet();
174}
175
177 return this->getOption(intelTbbOptionName).getHasOptionBeenSet();
178}
179
181 return engine;
182}
183
187
189 // Finalize engine.
190 std::string engineStr = this->getOption(engineOptionName).getArgumentByName("name").getValueAsString();
192 STORM_LOG_THROW(engine != storm::utility::Engine::Unknown, storm::exceptions::IllegalArgumentValueException, "Unknown engine '" << engineStr << "'.");
193}
194
196#ifdef STORM_HAVE_INTELTBB
197 return true;
198#else
199 STORM_LOG_WARN_COND(!isUseIntelTbbSet(), "Enabling TBB is not supported in this version of Storm as it was not built with support for it.");
200 return true;
201#endif
202}
203
204} // namespace modules
205} // namespace settings
206} // namespace storm
virtual std::string getValueAsString() const =0
Retrieves the value of this argument as a string.
virtual bool getHasBeenSet() const
Retrieves whether the argument has been set.
virtual bool wasSetFromDefaultValue() const =0
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.
Definition Option.cpp:79
bool getHasOptionBeenSet() const
Retrieves whether the option has been set.
Definition Option.cpp:125
storm::solver::LpSolverType getLpSolver() const
Retrieves the selected LP solver.
storm::dd::DdType getDdLibraryType() const
Retrieves the selected library for DD-related operations.
bool isShowStatisticsSet() const
Retrieves whether statistics are to be shown.
storm::solver::EquationSolverType getEquationSolver() const
Retrieves the selected equation solver.
bool isUseIntelTbbSet() const
Retrieves whether the option to use Intel TBB is set.
bool isEquationSolverSetFromDefaultValue() const
Retrieves whether the equation solver has been set from its default value.
bool isEquationSolverSet() const
Retrieves whether a equation solver has been set.
CoreSettings()
Creates a new set of core settings.
bool isLpSolverSetFromDefaultValue() const
Retrieves whether the lp solver has been set from its default value.
void finalize() override
Prepares the modules for further usage, should be called at the end of the initialization,...
void setEngine(storm::utility::Engine const &engine)
Sets the engine for further usage.
bool check() const override
Checks whether the settings are consistent.
storm::solver::SmtSolverType getSmtSolver() const
Retrieves the selected SMT solver.
bool isDdLibraryTypeSetFromDefaultValue() const
Retrieves whether the selected DD library is set from its default value.
static const std::string moduleName
storm::utility::Engine getEngine() const
Retrieves the selected engine.
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_WARN_COND(cond, message)
Definition macros.h:38
#define STORM_LOG_THROW(cond, exception, message)
Definition macros.h:30
std::string getDefaultLpSolverAsString()
SettingsType const & getModule()
Get module.
Engine
An enumeration of all engines.
Definition Engine.h:31
std::string toString(Engine const &engine)
Returns a string representation of the given engine.
Definition Engine.cpp:41
std::vector< Engine > getEngines()
Returns a list of all available engines (excluding Unknown)
Definition Engine.cpp:33
Engine engineFromString(std::string const &engineStr)
Parses the string representation of an engine and returns the corresponding engine.
Definition Engine.cpp:70
LabParser.cpp.
Definition cli.cpp:18