diff --git a/src/modelchecker/results/SymbolicQuantitativeCheckResult.cpp b/src/modelchecker/results/SymbolicQuantitativeCheckResult.cpp index ff65f22a7..0acd3ada3 100644 --- a/src/modelchecker/results/SymbolicQuantitativeCheckResult.cpp +++ b/src/modelchecker/results/SymbolicQuantitativeCheckResult.cpp @@ -27,7 +27,7 @@ namespace storm { } else if (comparisonType == storm::logic::ComparisonType::GreaterEqual) { states = values.greaterOrEqual(bound); } - return std::unique_ptr>(new SymbolicQualitativeCheckResult(reachableStates, values.greaterOrEqual(bound)));; + return std::unique_ptr>(new SymbolicQualitativeCheckResult(reachableStates, states)); } template