From ef893abca6076a708e1ef5c88bed6e352a8a6cb1 Mon Sep 17 00:00:00 2001 From: TimQu Date: Tue, 23 Jan 2018 21:47:22 +0100 Subject: [PATCH] fixed a case for topologicalMinMaxSolver with exact arithmetic --- src/storm/solver/MinMaxLinearEquationSolver.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/storm/solver/MinMaxLinearEquationSolver.cpp b/src/storm/solver/MinMaxLinearEquationSolver.cpp index 433e02c11..b543925e8 100644 --- a/src/storm/solver/MinMaxLinearEquationSolver.cpp +++ b/src/storm/solver/MinMaxLinearEquationSolver.cpp @@ -220,6 +220,8 @@ namespace storm { result = std::make_unique>(std::make_unique>()); } else if (method == MinMaxMethod::LinearProgramming) { result = std::make_unique>(std::make_unique>(), std::make_unique>()); + } else if (method == MinMaxMethod::Topological) { + result = std::make_unique>(); } else { STORM_LOG_THROW(false, storm::exceptions::InvalidSettingsException, "Unsupported technique."); }