Storm 1.14.0.1
A Modern Probabilistic Model Checker
Loading...
Searching...
No Matches
InternalSignatureRefiner.cpp
Go to the documentation of this file.
2
3namespace storm {
4namespace dd {
5namespace bisimulation {
6
9 reuseBlockNumbers(bisimulationOptions.reuseMode == ReuseMode::BlockNumbers),
10 createChangedStates(bisimulationOptions.refinementMode == RefinementMode::ChangedStates) {
11 // Intentionally left empty.
12}
13
15 // Intentionally left empty.
16}
17
18ReuseWrapper::ReuseWrapper(bool value) : value(value) {
19 // Intentionally left empty.
20}
21
23 return value;
24}
25
27 value = true;
28}
29
30} // namespace bisimulation
31} // namespace dd
32} // namespace storm
InternalSignatureRefinerOptions(bool shiftStateVariables, BisimulationOptions const &bisimulationOptions)