Skip to content

Commit 96eab71

Browse files
committed
Added kSolutionSourceLnsCarrara
1 parent 74f6695 commit 96eab71

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

highs/mip/HighsMipSolverData.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,9 @@ std::string HighsMipSolverData::solutionSourceToString(
5757
} else if (solution_source == kSolutionSourceShifting) {
5858
if (code) return "I";
5959
return "Shifting";
60+
} else if (solution_source == kSolutionSourceLnsCarrara) {
61+
if (code) return "A";
62+
return "LNS Carrara";
6063
} else if (solution_source == kSolutionSourceSolveLp) {
6164
if (code) return "S";
6265
return "Solve LP";

highs/mip/HighsMipSolverData.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ enum MipSolutionSource : int {
5353
kSolutionSourceRandomizedRounding,
5454
kSolutionSourceZiRound,
5555
kSolutionSourceShifting,
56+
kSolutionSourceLnsCarrara,
5657
kSolutionSourceSolveLp,
5758
kSolutionSourceEvaluateNode,
5859
kSolutionSourceUnbounded,

0 commit comments

Comments
 (0)