Browse Source

Activated symbolic bisimulation for parametric models

tempestpy_adaptions
Matthias Volk 6 years ago
parent
commit
374071670a
  1. 5
      src/storm-pars-cli/storm-pars.cpp

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

@ -173,9 +173,8 @@ namespace storm {
} else { } else {
STORM_LOG_ASSERT(coreSettings.getEngine() == storm::settings::modules::CoreSettings::Engine::Dd, "Expected Dd engine."); STORM_LOG_ASSERT(coreSettings.getEngine() == storm::settings::modules::CoreSettings::Engine::Dd, "Expected Dd engine.");
if (generalSettings.isBisimulationSet()) { if (generalSettings.isBisimulationSet()) {
STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "Bisimulation is not supported for symbolic parametric models.");
//result.first = storm::cli::preprocessDdModelBisimulation(result.first->template as<storm::models::symbolic::Model<DdType, ValueType>>(), input, bisimulationSettings);
//result.second = true;
result.first = storm::cli::preprocessDdModelBisimulation(result.first->template as<storm::models::symbolic::Model<DdType, ValueType>>(), input, bisimulationSettings);
result.second = true;
} }
} }
return result; return result;

Loading…
Cancel
Save