We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d7027af + 5b7d816 commit befcf22Copy full SHA for befcf22
src/scip/presol_milp.cpp
@@ -739,7 +739,9 @@ SCIP_DECL_PRESOLEXEC(presolExecMILP)
739
*/
740
if( SCIPvarGetStatus(varx) == SCIP_VARSTATUS_FIXED && SCIPvarGetStatus(vary) == SCIP_VARSTATUS_FIXED )
741
{
742
- assert(false);
+ SCIPdebugMsg(scip, "Aggregation of <%s> and <%s> rejected because they are already fixed.\n",
743
+ SCIPvarGetName(varx), SCIPvarGetName(vary));
744
+
745
break;
746
}
747
@@ -783,7 +785,9 @@ SCIP_DECL_PRESOLEXEC(presolExecMILP)
783
785
784
786
if( SCIPvarGetStatus(aggrvar) == SCIP_VARSTATUS_FIXED )
787
788
+ SCIPdebugMsg(scip, "Multi-aggregation of <%s> rejected because it is already fixed.\n",
789
+ SCIPvarGetName(aggrvar));
790
791
792
793
0 commit comments