Browse Source

Fix for LRA scheduler generation.

tempestpy_adaptions
Tim Quatmann 5 years ago
parent
commit
8a23197a77
  1. 2
      src/storm/modelchecker/prctl/helper/SparseMdpPrctlHelper.cpp

2
src/storm/modelchecker/prctl/helper/SparseMdpPrctlHelper.cpp

@ -1467,7 +1467,7 @@ namespace storm {
}
}
if (scheduler) {
scheduler->setChoice(*choiceIt - transitionMatrix.getRowGroupIndices()[state], state);
scheduler->setChoice(bestChoice - transitionMatrix.getRowGroupIndices()[state], state);
}
return result;
}

Loading…
Cancel
Save