Browse Source

Removed reference to obsolete method.

Former-commit-id: b215303f56
tempestpy_adaptions
dehnert 11 years ago
parent
commit
a6841c0a4d
  1. 2
      src/models/MarkovAutomaton.h

2
src/models/MarkovAutomaton.h

@ -145,7 +145,7 @@ namespace storm {
this->markovianStates.set(state, false);
}
for (uint_fast64_t row = this->getNondeterminsticChoiceIndices()[state] + (this->isHybridState(state) ? 1 : 0); row < this->getNondeterminsticChoiceIndices()[state + 1]; ++row) {
for (uint_fast64_t row = this->getTransitionMatrix().getRowGroupIndices()[state] + (this->isHybridState(state) ? 1 : 0); row < this->getTransitionMatrix().getRowGroupIndices()[state + 1]; ++row) {
for (auto const& entry : this->transitionMatrix.getRow(row)) {
newTransitionMatrixBuilder.addNextValue(currentChoice, entry.first, entry.second);
}

Loading…
Cancel
Save