From 19cca3585f5269d08d7696f6fe7087f38cb9570d Mon Sep 17 00:00:00 2001 From: TimQu Date: Thu, 23 May 2019 18:56:35 +0200 Subject: [PATCH] PcaaWeightVectorChecker: Initializing weightedPrecision. --- .../multiobjective/pcaa/PcaaWeightVectorChecker.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/storm/modelchecker/multiobjective/pcaa/PcaaWeightVectorChecker.cpp b/src/storm/modelchecker/multiobjective/pcaa/PcaaWeightVectorChecker.cpp index 10a9554f2..19ae057dd 100644 --- a/src/storm/modelchecker/multiobjective/pcaa/PcaaWeightVectorChecker.cpp +++ b/src/storm/modelchecker/multiobjective/pcaa/PcaaWeightVectorChecker.cpp @@ -12,7 +12,7 @@ namespace storm { namespace multiobjective { template - PcaaWeightVectorChecker::PcaaWeightVectorChecker(std::vector> const& objectives) : objectives(objectives) { + PcaaWeightVectorChecker::PcaaWeightVectorChecker(std::vector> const& objectives) : objectives(objectives), weightedPrecision(storm::utility::zero()) { // Intentionally left empty }