From 524f3aa0c2315e57bfc537621a1aca77d338b6b9 Mon Sep 17 00:00:00 2001 From: sjunges Date: Tue, 26 Jan 2016 20:43:03 +0100 Subject: [PATCH] perform bisim wrt single formula Former-commit-id: 1543d1df1d2d66b01467fea798f944f9c0e80b95 --- src/utility/storm.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/utility/storm.h b/src/utility/storm.h index 701caa634..bac80573f 100644 --- a/src/utility/storm.h +++ b/src/utility/storm.h @@ -169,7 +169,7 @@ namespace storm { } template - std::shared_ptr> performBisimulationMinimization(std::shared_ptr> model, std::vector> const& formulas, storm::storage::BisimulationType type) { + std::shared_ptr> performBisimulationMinimization(std::shared_ptr> const& model, std::vector> const& formulas, storm::storage::BisimulationType type) { using ValueType = typename ModelType::ValueType; STORM_LOG_THROW(model->isOfType(storm::models::ModelType::Dtmc) || model->isOfType(storm::models::ModelType::Ctmc) || model->isOfType(storm::models::ModelType::Mdp), storm::exceptions::InvalidSettingsException, "Bisimulation minimization is currently only available for DTMCs, CTMCs and MDPs."); @@ -185,8 +185,8 @@ namespace storm { } template - std::shared_ptr> performBisimulationMinimization(std::shared_ptr> model, std::shared_ptr const& formula, storm::storage::BisimulationType type) { - return performBisimulationMinimization(model, {formula}, type); + std::shared_ptr> performBisimulationMinimization(std::shared_ptr> const& model, std::shared_ptr const& formula, storm::storage::BisimulationType type) { + return performBisimulationMinimization(model, {formula}, type); }