|
|
@ -269,6 +269,13 @@ namespace storm { |
|
|
|
terminalStateExpressions.emplace_back(expression); |
|
|
|
} |
|
|
|
|
|
|
|
template <storm::dd::DdType DdType, typename ValueType> |
|
|
|
void JaniMenuGameAbstractor<DdType, ValueType>::notifyGuardsArePredicates() { |
|
|
|
for (auto& automaton : automata) { |
|
|
|
automaton.notifyGuardsArePredicates(); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
// Explicitly instantiate the class.
|
|
|
|
template class JaniMenuGameAbstractor<storm::dd::DdType::CUDD, double>; |
|
|
|
template class JaniMenuGameAbstractor<storm::dd::DdType::Sylvan, double>; |
|
|
|