Browse Source

Error fixed.

Former-commit-id: b2514633a7
tempestpy_adaptions
David_Korzeniewski 10 years ago
parent
commit
dfab1c291c
  1. 2
      src/modelchecker/csl/SparseMarkovAutomatonCslModelChecker.cpp

2
src/modelchecker/csl/SparseMarkovAutomatonCslModelChecker.cpp

@ -390,7 +390,7 @@ namespace storm {
// Set the values for all states in MECs.
for (auto state : statesInMecs) {
result[state] = lraValuesForEndComponents[stateToMecIndexMap[state]];
result[state] = x[firstAuxiliaryStateIndex + stateToMecIndexMap[state]];
}
return result;

Loading…
Cancel
Save