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); }