From beb80cc5af32290747844c365f9ecb0d9a0b4b3a Mon Sep 17 00:00:00 2001 From: dehnert Date: Mon, 28 Aug 2017 22:40:46 +0200 Subject: [PATCH] fixes issue #11 raised by Joachim Klein --- src/storm/modelchecker/CheckTask.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/storm/modelchecker/CheckTask.h b/src/storm/modelchecker/CheckTask.h index 4440f1ba3..828f85215 100644 --- a/src/storm/modelchecker/CheckTask.h +++ b/src/storm/modelchecker/CheckTask.h @@ -52,6 +52,7 @@ namespace storm { template CheckTask substituteFormula(NewFormulaType const& newFormula) const { CheckTask result(newFormula, this->optimizationDirection, this->rewardModel, this->onlyInitialStatesRelevant, this->bound, this->qualitative, this->produceSchedulers, this->hint); + result.updateOperatorInformation(); return result; }