Browse Source

Fixed possible problem with rates and exit rates in MA

tempestpy_adaptions
Matthias Volk 7 years ago
parent
commit
983e09fd63
  1. 4
      src/storm/models/sparse/MarkovAutomaton.cpp

4
src/storm/models/sparse/MarkovAutomaton.cpp

@ -50,7 +50,9 @@ namespace storm {
if (components.exitRates) {
exitRates = std::move(components.exitRates.get());
} else {
}
if (components.rateTransitions) {
this->turnRatesToProbabilities();
}
closed = this->checkIsClosed();

Loading…
Cancel
Save