From 374071670a4e5f4d87f2ceb67af0a143ea69f3b1 Mon Sep 17 00:00:00 2001 From: Matthias Volk Date: Wed, 30 Jan 2019 22:05:20 +0100 Subject: [PATCH] Activated symbolic bisimulation for parametric models --- src/storm-pars-cli/storm-pars.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/storm-pars-cli/storm-pars.cpp b/src/storm-pars-cli/storm-pars.cpp index f9de0c8d4..e522f0baf 100644 --- a/src/storm-pars-cli/storm-pars.cpp +++ b/src/storm-pars-cli/storm-pars.cpp @@ -173,9 +173,8 @@ namespace storm { } else { STORM_LOG_ASSERT(coreSettings.getEngine() == storm::settings::modules::CoreSettings::Engine::Dd, "Expected Dd engine."); 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>(), input, bisimulationSettings); - //result.second = true; + result.first = storm::cli::preprocessDdModelBisimulation(result.first->template as>(), input, bisimulationSettings); + result.second = true; } } return result;