diff --git a/src/storm/models/sparse/MarkovAutomaton.cpp b/src/storm/models/sparse/MarkovAutomaton.cpp index 27844ac21..38a06e091 100644 --- a/src/storm/models/sparse/MarkovAutomaton.cpp +++ b/src/storm/models/sparse/MarkovAutomaton.cpp @@ -205,6 +205,7 @@ namespace storm { std::shared_ptr> MarkovAutomaton::convertToCtmc() const { if (isClosed() && markovianStates.full()) { storm::storage::sparse::ModelComponents components(this->getTransitionMatrix(), this->getStateLabeling(), this->getRewardModels(), false); + components.transitionMatrix.makeRowGroupingTrivial(); if (this->hasChoiceLabeling()) { components.choiceLabeling = this->getChoiceLabeling(); }