Skip to content

Commit cc1bdfa

Browse files
committed
Merged latest into this branch and formatted
1 parent 5045c8a commit cc1bdfa

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

highs/mip/HighsCutGeneration.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -728,7 +728,8 @@ bool HighsCutGeneration::cmirCutGenerationHeuristic(double minEfficacy,
728728
}
729729
double checkefficacy = checkviol / sqrt(checknorm);
730730
// the efficacy can become infinite if the cut 0 <= -1 is derived
731-
assert(fabs(checkefficacy - bestefficacy) < 0.001 || fabs(checkefficacy) >= 1e30);
731+
assert(fabs(checkefficacy - bestefficacy) < 0.001 ||
732+
fabs(checkefficacy) >= 1e30);
732733
}
733734
#endif
734735

0 commit comments

Comments
 (0)