Browse Source

fixed ignoring the hypothesis when not doing refinement

tempestpy_adaptions
TimQu 7 years ago
parent
commit
040c1f0d4c
  1. 2
      src/storm-pars-cli/storm-pars.cpp

2
src/storm-pars-cli/storm-pars.cpp

@ -239,7 +239,7 @@ namespace storm {
} else { } else {
STORM_PRINT_AND_LOG("." << std::endl); STORM_PRINT_AND_LOG("." << std::endl);
verificationCallback = [&] (std::shared_ptr<storm::logic::Formula const> const& formula) { verificationCallback = [&] (std::shared_ptr<storm::logic::Formula const> const& formula) {
std::unique_ptr<storm::modelchecker::CheckResult> result = storm::api::checkRegionsWithSparseEngine<ValueType>(model, storm::api::createTask<ValueType>(formula, true), regions, engine);
std::unique_ptr<storm::modelchecker::CheckResult> result = storm::api::checkRegionsWithSparseEngine<ValueType>(model, storm::api::createTask<ValueType>(formula, true), regions, engine, regionSettings.getHypothesis());
return result; return result;
}; };
} }

Loading…
Cancel
Save