Storm 1.13.0.1
A Modern Probabilistic Model Checker
Loading...
Searching...
No Matches
ModelCheckerSettings.h
Go to the documentation of this file.
1#pragma once
2
3#include "storm-config.h"
5
6namespace storm {
7namespace settings {
8namespace modules {
9
14 public:
19
20 bool isFilterRewZeroSet() const;
21
27 bool isLtl2daToolSet() const;
28
34 std::string getLtl2daTool() const;
35
36 // The name of the module.
37 static const std::string moduleName;
38
39 private:
40 // Define the string names of the options as constants.
41 static const std::string filterRewZeroOptionName;
42 static const std::string ltl2daToolOptionName;
43};
44
45} // namespace modules
46} // namespace settings
47} // namespace storm
ModelCheckerSettings()
Creates a new set of general settings.
bool isLtl2daToolSet() const
Retrieves whether the external ltl2da tool has been set.
std::string getLtl2daTool() const
Retrieves the external ltl2da tool that is used for converting LTL formulas to deterministic automata...
ModuleSettings(std::string const &moduleName)
Constructs a new settings object.