From c2138a8f1de257a3851ecd7f923479875a4c20ee Mon Sep 17 00:00:00 2001 From: sjunges Date: Tue, 26 Jan 2016 21:21:42 +0100 Subject: [PATCH] no, thou shall not check how stupid i've been here Former-commit-id: e241a6976e2aaefa7e8d4aa978d5e0c83e8b2568 --- 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 bac80573f..3ca286918 100644 --- a/src/utility/storm.h +++ b/src/utility/storm.h @@ -183,14 +183,14 @@ namespace storm { return performNondeterministicSparseBisimulationMinimization>(model->template as>(), formulas, type); } } - + template std::shared_ptr> performBisimulationMinimization(std::shared_ptr> const& model, std::shared_ptr const& formula, storm::storage::BisimulationType type) { - return performBisimulationMinimization(model, {formula}, type); + std::vector> formulas = { formula }; + return performBisimulationMinimization(model, formulas , type); } - template std::shared_ptr preprocessModel(std::shared_ptr model, std::vector> const& formulas) { if (model->isSparseModel() && storm::settings::generalSettings().isBisimulationSet()) {