Browse Source

Constants wrongfully marked as not graphpresreving. Bugfix for bug reported by Nils Jansen.

tempestpy_adaptions
Sebastian Junges 7 years ago
parent
commit
ace351bd71
  1. 8
      src/storm/storage/prism/Program.cpp

8
src/storm/storage/prism/Program.cpp

@ -247,13 +247,7 @@ namespace storm {
} }
} }
// Then check the formulas.
for (auto const& formula : this->getFormulas()) {
if (formula.getExpression().containsVariable(undefinedConstantVariables)) {
return false;
}
}
// Proceed by checking each of the modules. // Proceed by checking each of the modules.
for (auto const& module : this->getModules()) { for (auto const& module : this->getModules()) {
if (!module.containsVariablesOnlyInUpdateProbabilities(undefinedConstantVariables)) { if (!module.containsVariablesOnlyInUpdateProbabilities(undefinedConstantVariables)) {

Loading…
Cancel
Save