Skip to content

Commit

Permalink
Use objective bound instead of value
Browse files Browse the repository at this point in the history
  • Loading branch information
andreaslundell committed Feb 28, 2025
1 parent 7defae3 commit 02f6643
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Tasks/TaskPerformConvexBounding.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 02f6643

Please sign in to comment.