We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 55360da + befcf22 commit 96386adCopy full SHA for 96386ad
src/scip/presol_milp.cpp
@@ -760,7 +760,9 @@ SCIP_DECL_PRESOLEXEC(presolExecMILP)
760
*/
761
if( SCIPvarGetStatus(varx) == SCIP_VARSTATUS_FIXED && SCIPvarGetStatus(vary) == SCIP_VARSTATUS_FIXED )
762
{
763
- assert(false);
+ SCIPdebugMsg(scip, "Aggregation of <%s> and <%s> rejected because they are already fixed.\n",
764
+ SCIPvarGetName(varx), SCIPvarGetName(vary));
765
+
766
break;
767
}
768
@@ -804,7 +806,9 @@ SCIP_DECL_PRESOLEXEC(presolExecMILP)
804
806
805
807
if( SCIPvarGetStatus(aggrvar) == SCIP_VARSTATUS_FIXED )
808
809
+ SCIPdebugMsg(scip, "Multi-aggregation of <%s> rejected because it is already fixed.\n",
810
+ SCIPvarGetName(aggrvar));
811
812
813
814
0 commit comments