Skip to content

Commit a936749

Browse files
committed
Error in NE overflow
1 parent 7397c40 commit a936749

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

highs/ipm/hipo/ipm/FactorHiGHSSolver.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -433,9 +433,10 @@ Int FactorHiGHSSolver::chooseNla() {
433433

434434
Int NE_status = analyseNE(symb_NE, NE_nz_limit);
435435
if (NE_status) failure_NE = true;
436-
if (NE_status == kStatusOverflow)
436+
if (NE_status == kStatusOverflow) {
437437
log_.printDevInfo("Integer overflow forming NE matrix\n");
438-
overflow_NE = true;
438+
overflow_NE = true;
439+
}
439440
}
440441

441442
Int status = kStatusOk;

0 commit comments

Comments
 (0)