Browse Source

And another minor bug.

Former-commit-id: af2e9d05ee
tempestpy_adaptions
dehnert 10 years ago
parent
commit
f5a9ebe2f7
  1. 5
      src/stormParametric.cpp

5
src/stormParametric.cpp

@ -154,6 +154,11 @@ void check() {
std::shared_ptr<storm::models::AbstractModel<ValueType>> model = storm::builder::ExplicitPrismModelBuilder<ValueType>::translateProgram(program, options);
// Convert the transition rewards to state rewards if necessary.
if (model->hasTransitionRewards()) {
model->convertTransitionRewardsToStateRewards();
}
model->printModelInformationToStream(std::cout);
// Program Translation Time Measurement, End

Loading…
Cancel
Save