15const std::string Smt2SmtSolverSettings::solverCommandOption =
"solvercommand";
16const std::string Smt2SmtSolverSettings::exportScriptOption =
"exportscript";
20 "If set, this command is used to call the solver and to let the solver know that it should read SMT-LIBv2 "
21 "commands from standard input. If not set, only a SMT-LIB script file might be exported.")
31 "path",
"path and filename to the location where the script file should be exported to.")
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.
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.
bool isSolverCommandSet() const
Retrieves whether the solver command has been set.
Smt2SmtSolverSettings()
Creates a new set of SmtlibSmtSolver settings that is managed by the given manager.
static const std::string moduleName
bool check() const override
Checks whether the settings are consistent.
bool isExportSmtLibScriptSet() const
Retrieves whether the SMT-LIBv2 script should be exportet to a file.
std::string getSolverCommand() const
Retrieves the solver command i.e.
std::string getExportSmtLibScriptPath() const
Retrieves the path where the SMT-LIBv2 script file should be exportet to.
SettingsType const & getModule()
Get module.