From 02f66434445287846d780274d767e45100a3f8b6 Mon Sep 17 00:00:00 2001 From: andreaslundell Date: Fri, 28 Feb 2025 15:47:06 +0200 Subject: [PATCH] Use objective bound instead of value --- src/Tasks/TaskPerformConvexBounding.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Tasks/TaskPerformConvexBounding.cpp b/src/Tasks/TaskPerformConvexBounding.cpp index a24dcafd..3649677d 100644 --- a/src/Tasks/TaskPerformConvexBounding.cpp +++ b/src/Tasks/TaskPerformConvexBounding.cpp @@ -187,7 +187,7 @@ void TaskPerformConvexBounding::run() { double objectiveValue = MIPSolver->getObjectiveValue(); - DualSolution sol = { solutionPoints.at(0).point, E_DualSolutionSource::ConvexBounding, objectiveValue, + DualSolution sol = { solutionPoints.at(0).point, E_DualSolutionSource::ConvexBounding, objectiveBound, iterationNumber, false }; env->dualSolver->addDualSolutionCandidate(sol);