File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -864,15 +864,15 @@ bool HighsIis::indexStatusOk(const HighsLp& lp) const {
864864 const HighsInt illegal_status = -99 ;
865865 for (HighsInt iX = 0 ; iX < num_iis_col; iX++) {
866866 HighsInt iCol = this ->col_index_ [iX];
867- if (col_status_[iCol] != true_iis ? kIisStatusInConflict
868- : kIisStatusMaybeInConflict )
867+ if (col_status_[iCol] !=
868+ (true_iis ? kIisStatusInConflict : kIisStatusMaybeInConflict ) )
869869 return indexStatusOkReturn (false );
870870 col_status[iCol] = illegal_status;
871871 }
872872 for (HighsInt iX = 0 ; iX < num_iis_row; iX++) {
873873 HighsInt iRow = this ->row_index_ [iX];
874- if (row_status_[iRow] != true_iis ? kIisStatusInConflict
875- : kIisStatusMaybeInConflict )
874+ if (row_status_[iRow] !=
875+ (true_iis ? kIisStatusInConflict : kIisStatusMaybeInConflict ) )
876876 return indexStatusOkReturn (false );
877877 row_status[iRow] = illegal_status;
878878 }
You can’t perform that action at this time.
0 commit comments