From bc373475ff34eb755931453f9b4fed82b5204a77 Mon Sep 17 00:00:00 2001 From: dehnert Date: Tue, 27 Jun 2017 14:31:26 +0200 Subject: [PATCH] respecting state filters in bisimulation --- src/storm/cli/cli.cpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/storm/cli/cli.cpp b/src/storm/cli/cli.cpp index fad3709af..8fea01e61 100644 --- a/src/storm/cli/cli.cpp +++ b/src/storm/cli/cli.cpp @@ -391,9 +391,6 @@ namespace storm { std::shared_ptr buildModel(storm::settings::modules::CoreSettings::Engine const& engine, SymbolicInput const& input, storm::settings::modules::IOSettings const& ioSettings) { storm::utility::Stopwatch modelBuildingWatch(true); - - // Make sure that states in filter are built as label. ALso for bisimulation. - std::shared_ptr result; if (input.model) { if (engine == storm::settings::modules::CoreSettings::Engine::Dd || engine == storm::settings::modules::CoreSettings::Engine::Hybrid) { @@ -432,7 +429,7 @@ namespace storm { } STORM_LOG_INFO("Performing bisimulation minimization..."); - return storm::api::performBisimulationMinimization(model, storm::api::extractFormulasFromProperties(input.properties), bisimType); + return storm::api::performBisimulationMinimization(model, createFormulasToRespect(input.properties), bisimType); } template