diff --git a/src/storm/solver/IterativeMinMaxLinearEquationSolver.cpp b/src/storm/solver/IterativeMinMaxLinearEquationSolver.cpp index beda7ed2e..4bf296891 100644 --- a/src/storm/solver/IterativeMinMaxLinearEquationSolver.cpp +++ b/src/storm/solver/IterativeMinMaxLinearEquationSolver.cpp @@ -499,7 +499,7 @@ namespace storm { std::vector IterativeMinMaxLinearEquationSolver::guessUpperBound(Environment const& env, std::vector const& x, ValueType const& precision) const { std::vector ub = x; storm::utility::vector::scaleVectorInPlace(ub, storm::utility::one() + precision); - return x; + return ub; } template