46 #define BETTERWEIGHTFORDEMANDNODES 74 #define SEPA_NAME "mcf" 75 #define SEPA_DESC "multi-commodity-flow network cut separator" 76 #define SEPA_PRIORITY -10000 78 #define SEPA_MAXBOUNDDIST 0.0 79 #define SEPA_USESSUBSCIP FALSE 80 #define SEPA_DELAY FALSE 83 #define DEFAULT_NCLUSTERS 5 84 #define DEFAULT_MAXWEIGHTRANGE 1e+06 85 #define DEFAULT_MAXTESTDELTA 20 86 #define DEFAULT_TRYNEGSCALING FALSE 87 #define DEFAULT_FIXINTEGRALRHS TRUE 88 #define DEFAULT_DYNAMICCUTS TRUE 89 #define DEFAULT_MODELTYPE 0 90 #define DEFAULT_MAXSEPACUTS 100 91 #define DEFAULT_MAXSEPACUTSROOT 200 92 #define DEFAULT_MAXINCONSISTENCYRATIO 0.02 93 #define DEFAULT_MAXARCINCONSISTENCYRATIO 0.5 94 #define DEFAULT_CHECKCUTSHORECONNECTIVITY TRUE 95 #define DEFAULT_SEPARATESINGLENODECUTS TRUE 96 #define DEFAULT_SEPARATEFLOWCUTSET TRUE 97 #define DEFAULT_SEPARATEKNAPSACK TRUE 100 #define BOUNDSWITCH 0.5 101 #define POSTPROCESS TRUE 104 #define MAXFRAC 0.999 106 #define MAXCOLS 2000000 107 #define MAXAGGRLEN(nvars) (0.1*(nvars)+1000) 108 #define MINCOLROWRATIO 0.01 109 #define MAXCOLROWRATIO 100.0 110 #define MAXFLOWVARFLOWROWRATIO 100.0 111 #define MAXARCNODERATIO 100.0 112 #define MAXNETWORKS 4 113 #define MAXFLOWCANDDENSITY 0.1 114 #define MINCOMNODESFRACTION 0.5 117 #define MAXCAPACITYSLACK 0.1 118 #define UNCAPACITATEDARCSTRESHOLD 0.8 119 #define HASHSIZE_NODEPAIRS 500 131 #define MCFdebugMessage printf 135 #define MCFdebugMessage while(FALSE) printf 209 unsigned char* flowrowsigns;
212 unsigned char* capacityrowsigns;
221 int nemptycommodities;
223 int commoditysignssize;
244 int capacityrowssize;
271 int* representatives;
283 #define LHSPOSSIBLE 1u 284 #define RHSPOSSIBLE 2u 285 #define LHSASSIGNED 4u 286 #define RHSASSIGNED 8u 288 #define DISCARDED 32u 289 #define UNDIRECTED 64u 299 assert(mcfnetwork !=
NULL);
302 (*mcfnetwork)->nodeflowrows =
NULL;
303 (*mcfnetwork)->nodeflowscales =
NULL;
304 (*mcfnetwork)->nodeflowinverted =
NULL;
305 (*mcfnetwork)->arccapacityrows =
NULL;
306 (*mcfnetwork)->arccapacityscales =
NULL;
307 (*mcfnetwork)->arcsources =
NULL;
308 (*mcfnetwork)->arctargets =
NULL;
309 (*mcfnetwork)->colcommodity =
NULL;
310 (*mcfnetwork)->nnodes = 0;
311 (*mcfnetwork)->nuncapacitatedarcs = 0;
312 (*mcfnetwork)->narcs = 0;
313 (*mcfnetwork)->ncommodities = 0;
325 assert(mcfnetwork !=
NULL);
327 if( *mcfnetwork !=
NULL )
332 for( v = 0; v < (*mcfnetwork)->nnodes; v++ )
336 for( k = 0; k < (*mcfnetwork)->ncommodities; k++ )
338 if( (*mcfnetwork)->nodeflowrows[v][k] !=
NULL )
347 for( a = 0; a < (*mcfnetwork)->narcs; a++ )
349 if( (*mcfnetwork)->arccapacityrows[a] !=
NULL )
382 unsigned char* flowrowsigns = mcfdata->flowrowsigns;
383 SCIP_Real* flowrowscalars = mcfdata->flowrowscalars;
384 unsigned char* capacityrowsigns = mcfdata->capacityrowsigns;
385 int* flowcands = mcfdata->flowcands;
386 int nflowcands = mcfdata->nflowcands;
388 int* commoditysigns = mcfdata->commoditysigns;
390 int* rowcommodity = mcfdata->rowcommodity;
391 int* rownodeid = mcfdata->rownodeid;
392 SCIP_ROW** capacityrows = mcfdata->capacityrows;
401 int ncompcommodities;
408 assert(mcfnetwork !=
NULL);
410 assert(2 <= ncompnodes && ncompnodes <= mcfdata->
nnodes);
411 assert(1 <= ncomparcs && ncomparcs <= mcfdata->
narcs);
412 assert(ncommodities > 0);
416 for( v = 0; v < mcfdata->nnodes; v++ )
417 assert(compnodeid[v] == -1);
429 compcommodity[k] = -1;
436 for( i = 0; i < ncompnodes; i++ )
439 assert(0 <= v && v < mcfdata->nnodes);
444 ncompcommodities = 0;
445 for( i = 0; i < nflowcands; i++ )
451 assert(0 <= r && r < nrows);
454 if( rv >= 0 && compnodeid[rv] >= 0 )
457 assert(0 <= k && k < ncommodities);
458 if( compcommodity[k] == -1 )
460 compcommodity[k] = ncompcommodities;
471 mcfnetwork->
nnodes = ncompnodes;
472 mcfnetwork->
narcs = ncomparcs;
480 for( v = 0; v < mcfnetwork->
nnodes; v++ )
498 for( a = 0; a < mcfnetwork->
narcs; a++ )
508 for( i = 0; i < nflowcands; i++ )
514 assert(0 <= r && r < nrows);
517 if( rv >= 0 && compnodeid[rv] >= 0 )
523 rk = rowcommodity[
r];
524 assert(v < mcfnetwork->nnodes);
525 assert(0 <= rk && rk < ncommodities);
528 k = compcommodity[rk];
529 assert(0 <= k && k < mcfnetwork->ncommodities);
534 scale = flowrowscalars[
r];
537 if( commoditysigns[rk] == -1 )
545 for( a = 0; a < mcfnetwork->
narcs; a++ )
555 globala = comparcs[
a];
556 capacityrow = capacityrows[globala];
561 if( capacityrow !=
NULL)
564 assert(0 <= r && r < nrows);
566 assert((capacityrowsigns[r] &
INVERTED) == 0);
567 assert(mcfdata->rowarcid[r] == globala);
585 for( j = 0; j < rowlen; j++ )
592 if( comdemands[k] != 0.0 )
607 for( j = 0; j < rowlen; j++ )
612 if( k >= 0 && comdemands[k] == 0.0 )
624 if( mcfdata->arcsources[globala] >= 0 )
626 assert(mcfdata->arcsources[globala] < mcfdata->nnodes);
627 assert(0 <= compnodeid[mcfdata->arcsources[globala]] && compnodeid[mcfdata->arcsources[globala]] < mcfnetwork->
nnodes);
628 mcfnetwork->
arcsources[
a] = compnodeid[mcfdata->arcsources[globala]];
630 if( mcfdata->arctargets[globala] >= 0 )
632 assert(mcfdata->arctargets[globala] < mcfdata->nnodes);
633 assert(0 <= compnodeid[mcfdata->arctargets[globala]] && compnodeid[mcfdata->arctargets[globala]] < mcfnetwork->
nnodes);
634 mcfnetwork->
arctargets[
a] = compnodeid[mcfdata->arctargets[globala]];
639 for( c = 0; c < ncols; c++ )
649 for( i = 0; i < ncompnodes; i++ )
651 assert(0 <= compnodes[i] && compnodes[i] < mcfdata->nnodes);
652 assert(compnodeid[compnodes[i]] == i);
653 compnodeid[compnodes[i]] = -1;
666 void mcfnetworkPrint(
670 if( mcfnetwork ==
NULL )
677 for( v = 0; v < mcfnetwork->
nnodes; v++ )
696 for( a = 0; a < mcfnetwork->
narcs; a++ )
712 void printCommodities(
717 unsigned char* flowrowsigns = mcfdata->flowrowsigns;
718 unsigned char* capacityrowsigns = mcfdata->capacityrowsigns;
720 int* commoditysigns = mcfdata->commoditysigns;
722 int* rowcommodity = mcfdata->rowcommodity;
723 int* colarcid = mcfdata->colarcid;
724 int* rownodeid = mcfdata->rownodeid;
725 int nnodes = mcfdata->nnodes;
726 SCIP_ROW** capacityrows = mcfdata->capacityrows;
746 for( c = 0; c < ncols; c++ )
748 if( colcommodity[c] == k )
751 for( r = 0; r < nrows; r++ )
753 if( rowcommodity[r] == k )
756 (flowrowsigns[r] &
INVERTED) != 0 ? -1 : +1);
761 if( rownodeid !=
NULL )
765 for( v = 0; v <
nnodes; v++ )
768 for( r = 0; r < nrows; r++ )
770 if( rownodeid[r] == v )
773 (flowrowsigns[r] &
INVERTED) != 0 ? -1 : +1);
779 assert(capacityrows !=
NULL || mcfdata->narcs == 0);
782 for( a = 0; a < mcfdata->narcs; a++ )
785 if( capacityrows[a] !=
NULL )
788 assert(0 <= r && r < nrows);
791 else if( (capacityrowsigns[r] &
RHSASSIGNED) != 0 )
799 assert(colcommodity !=
NULL || ncols == 0);
802 for( c = 0; c < ncols; c++ )
804 if( colcommodity[c] == -1 )
813 for( r = 0; r < nrows; r++ )
815 assert(rowcommodity !=
NULL);
833 if( rowscores[ind2] < rowscores[ind1] )
835 else if( rowscores[ind2] > rowscores[ind1] )
848 unsigned char* flowrowsigns;
868 flowrowsigns = mcfdata->flowrowsigns;
869 flowrowscalars = mcfdata->flowrowscalars;
870 flowrowscores = mcfdata->flowrowscores;
871 flowcands = mcfdata->flowcands;
873 assert(mcfdata->nflowcands == 0);
876 for( r = 0; r < nrows; r++ )
901 absdualsol =
ABS(absdualsol);
904 flowrowscalars[
r] = 0.0;
905 flowrowscores[
r] = 0.0;
926 coef =
ABS(rowvals[0]);
933 for( i = 0; i < rowlen; i++ )
939 hasposcoef = hasposcoef || (rowvals[i] > 0.0);
940 hasnegcoef = hasnegcoef || (rowvals[i] < 0.0);
970 flowrowscalars[
r] = 1.0/coef;
971 flowcands[mcfdata->nflowcands] =
r;
972 mcfdata->nflowcands++;
979 if(
SCIPisEQ(scip, flowrowscalars[r], 1.0) )
980 flowrowscores[
r] += 1000.0;
983 if( hasposcoef && hasnegcoef )
984 flowrowscores[
r] += 500.0;
991 if( ncontvars == rowlen )
992 flowrowscores[
r] += 1000.0;
993 else if( nintvars + nimplintvars == rowlen )
994 flowrowscores[
r] += 500.0;
995 else if( nbinvars == rowlen )
996 flowrowscores[
r] += 100.0;
1000 flowrowscores[
r] += 10.0*rowlen/(rowlen+10.0);
1004 flowrowscores[
r] += 50.0;
1006 assert(flowrowscores[r] > 0.0);
1009 maxdualflow =
MAX(maxdualflow, absdualsol);
1022 for( i = 0; i < mcfdata->nflowcands; i++ )
1027 assert(0 <= r && r < nrows);
1032 dualsol =
ABS(dualsol);
1035 assert(maxdualflow > 0.0);
1036 flowrowscores[
r] += dualsol/maxdualflow + 1.0;
1037 assert(flowrowscores[r] > 0.0);
1042 SCIPsortInd(mcfdata->flowcands, compCands, (
void*)flowrowscores, mcfdata->nflowcands);
1044 MCFdebugMessage(
"flow conservation candidates [%d]\n", mcfdata->nflowcands);
1046 for( r = 0; r < mcfdata->nflowcands; r++ )
1049 SCIPdebugMsg(scip,
"%4d [score: %2g]: %s\n", mcfdata->flowcands[r], flowrowscores[mcfdata->flowcands[r]],
1064 unsigned char* flowrowsigns = mcfdata->flowrowsigns;
1067 int nactivecommodities = mcfdata->ncommodities - mcfdata->nemptycommodities;
1070 unsigned char* capacityrowsigns;
1079 int maxcolspercommoditylimit;
1080 int *ncolspercommodity;
1081 int *maxcolspercommodity;
1091 capacityrowsigns = mcfdata->capacityrowsigns;
1092 capacityrowscores = mcfdata->capacityrowscores;
1093 capacitycands = mcfdata->capacitycands;
1095 assert(mcfdata->ncapacitycands == 0);
1105 maxcolspercommoditylimit = 2;
1108 maxcolspercommoditylimit = 1;
1111 maxcolspercommoditylimit = 2;
1114 SCIPerrorMessage(
"invalid parameter value %d for model type\n", modeltype);
1118 maxdualcapacity = 0.0;
1119 directedcandsscore = 0.0;
1120 undirectedcandsscore = 0.0;
1121 for( r = 0; r < nrows; r++ )
1131 int nposcapacitycoefs;
1132 int nnegcapacitycoefs;
1134 int ncoveredcommodities;
1139 unsigned char rowsign;
1145 capacityrowsigns[
r] = 0;
1146 capacityrowscores[
r] = 0.0;
1165 absdualsol =
ABS(absdualsol);
1174 maxcolspercommodity[
r] = 0;
1179 nposcapacitycoefs = 0;
1180 nnegcapacitycoefs = 0;
1182 ncoveredcommodities = 0;
1184 sameabsflowcoef = 0.0;
1185 maxabscapacitycoef = 0.0;
1192 for( i = 0; i < rowlen; i++ )
1201 k = colcommodity[c];
1202 assert(-1 <= k && k < ncommodities);
1207 abscoef =
ABS(rowvals[i]);
1208 if( sameflowcoef == 0.0 )
1209 sameflowcoef = rowvals[i];
1210 else if( !
SCIPisEQ(scip, sameflowcoef, rowvals[i]) )
1212 if( sameabsflowcoef == 0.0 )
1213 sameabsflowcoef = abscoef;
1214 else if( !
SCIPisEQ(scip, sameabsflowcoef, abscoef) )
1217 if( rowvals[i] > 0.0 )
1223 if( ncolspercommodity[k] == 0 )
1224 ncoveredcommodities++;
1225 ncolspercommodity[k]++;
1226 maxcolspercommodity[
r] =
MAX(maxcolspercommodity[r], ncolspercommodity[k]);
1228 if( ncolspercommodity[k] >= 2 )
1237 abscoef =
ABS(rowvals[i]);
1238 if( abscoef > maxabscapacitycoef )
1239 maxabscapacitycoef = abscoef;
1242 if( rowvals[i] > 0.0 )
1243 nposcapacitycoefs++;
1245 nnegcapacitycoefs++;
1255 if( rowsign != 0 && nposflowcoefs + nnegflowcoefs > 0 )
1259 capacityrowsigns[
r] |= rowsign;
1260 capacitycands[mcfdata->ncapacitycands] =
r;
1261 mcfdata->ncapacitycands++;
1264 capacityrowscores[
r] = 1.0;
1268 assert(ncoveredcommodities > 0);
1269 commodityexcessratio =
1270 ABS((nposflowcoefs + nnegflowcoefs)/(
SCIP_Real)ncoveredcommodities - maxcolspercommoditylimit);
1272 capacityrowscores[
r] += 1000.0 *
MAX(0.0, 2.0 - commodityexcessratio);
1279 if( (capacityrowsigns[r] &
RHSPOSSIBLE) != 0 && nnegflowcoefs == 0 && nposcapacitycoefs == 0 && nnegcapacitycoefs > 0 )
1280 capacityrowscores[
r] += 1000.0;
1281 if( (capacityrowsigns[r] &
LHSPOSSIBLE) != 0 && nposflowcoefs == 0 && nposcapacitycoefs > 0 && nnegcapacitycoefs == 0 )
1282 capacityrowscores[
r] += 1000.0;
1291 assert(nactivecommodities + 3 > 0);
1292 capacityrowscores[
r] += 2000.0 * ncoveredcommodities/(
SCIP_Real)(nactivecommodities + 3);
1296 capacityrowscores[r] += 500.0;
1300 capacityrowscores[
r] += 250.0;
1303 if(
SCIPisEQ(scip, sameabsflowcoef, 1.0) )
1304 capacityrowscores[r] += 100.0;
1307 if( maxabscapacitycoef > 0.0 && !
SCIPisEQ(scip, maxabscapacitycoef, 1.0) )
1308 capacityrowscores[r] += 100.0;
1311 capacityrowscores[
r] += 20.0 *
MAX(nposflowcoefs, nnegflowcoefs)/
MAX(1.0,(
SCIP_Real)(nposflowcoefs + nnegflowcoefs));
1314 capacityrowscores[
r] += 10.0 *
MAX(nposcapacitycoefs, nnegcapacitycoefs)/(
SCIP_Real)(nposcapacitycoefs+nnegcapacitycoefs+1.0);
1317 if( (capacityrowsigns[r] & RHSPOSSIBLE) != 0 && !
SCIPisNegative(scip, rowrhs) )
1318 capacityrowscores[r] += 10.0;
1322 capacityrowscores[r] += 10.0;
1324 assert(capacityrowscores[r] > 0.0);
1325 SCIPdebugMsg(scip,
"row <%s>: maxcolspercommodity=%d capacityrowsign=%d nposflowcoefs=%d nnegflowcoefs=%d nposcapacitycoefs=%d nnegcapacitycoefs=%d nbadcoefs=%d nactivecommodities=%d sameflowcoef=%g -> score=%g\n",
1326 SCIProwGetName(row), maxcolspercommodity[r], capacityrowsigns[r], nposflowcoefs, nnegflowcoefs, nposcapacitycoefs, nnegcapacitycoefs, nbadcoefs, nactivecommodities, sameflowcoef, capacityrowscores[r]);
1329 maxdualcapacity =
MAX(maxdualcapacity, absdualsol);
1334 assert(maxcolspercommoditylimit == 2);
1335 if( (capacityrowsigns[r] &
UNDIRECTED) != 0 )
1336 undirectedcandsscore += capacityrowscores[
r];
1338 directedcandsscore += capacityrowscores[
r];
1343 SCIPdebugMsg(scip,
"row <%s>: rowsign = %d nposflowcoefs = %d nnegflowcoefs = %d -> discard\n",
1351 if( directedcandsscore > undirectedcandsscore )
1356 MCFdebugMessage(
"detected model type: %s (%g directed score, %g undirected score)\n",
1364 for( i = 0; i < mcfdata->ncapacitycands; i++ )
1366 r = capacitycands[i];
1367 assert(0 <= r && r < nrows);
1368 if( (capacityrowsigns[r] &
UNDIRECTED) != 0 )
1371 if( maxcolspercommodity[r] <= maxcolspercommoditylimit )
1372 capacityrowscores[
r] -= 1000.0;
1386 for( i = 0; i < mcfdata->ncapacitycands; i++ )
1390 r = capacitycands[i];
1391 assert(0 <= r && r < nrows);
1396 dualsol =
ABS(dualsol);
1399 assert(maxdualcapacity > 0.0);
1400 capacityrowscores[
r] +=
MAX(dualsol, 0.0)/maxdualcapacity;
1401 assert(capacityrowscores[r] > 0.0);
1406 SCIPsortInd(mcfdata->capacitycands, compCands, (
void*)capacityrowscores, mcfdata->ncapacitycands);
1408 MCFdebugMessage(
"capacity candidates [%d]\n", mcfdata->ncapacitycands);
1410 for( r = 0; r < mcfdata->ncapacitycands; r++ )
1412 SCIPdebugMsg(scip,
"row %4d [score: %2g]: %s\n", mcfdata->capacitycands[r],
1413 capacityrowscores[mcfdata->capacitycands[r]],
SCIProwGetName(rows[mcfdata->capacitycands[r]]));
1433 assert(mcfdata->ncommodities <= mcfdata->commoditysignssize);
1434 if( mcfdata->ncommodities == mcfdata->commoditysignssize )
1436 mcfdata->commoditysignssize =
MAX(2*mcfdata->commoditysignssize, mcfdata->ncommodities+1);
1439 assert(mcfdata->ncommodities < mcfdata->commoditysignssize);
1442 SCIPdebugMsg(scip,
"**** creating new commodity %d ****\n", mcfdata->ncommodities);
1443 mcfdata->commoditysigns[mcfdata->ncommodities] = 0;
1444 mcfdata->ncommodities++;
1459 assert(source != target );
1460 assert(0 <= source && source < mcfdata->
nnodes);
1461 assert(0 <= target && target < mcfdata->nnodes);
1462 assert(newarcid !=
NULL);
1464 *newarcid = mcfdata->narcs;
1467 assert(mcfdata->narcs <= mcfdata->arcarraysize);
1468 if( mcfdata->narcs == mcfdata->arcarraysize )
1470 mcfdata->arcarraysize =
MAX(2*mcfdata->arcarraysize, mcfdata->narcs+1);
1476 assert(mcfdata->narcs < mcfdata->arcarraysize);
1479 if( mcfdata->capacityrowssize < mcfdata->arcarraysize )
1481 mcfdata->capacityrowssize = mcfdata->arcarraysize;
1484 assert(mcfdata->narcs < mcfdata->capacityrowssize);
1487 SCIPdebugMsg(scip,
"**** creating new arc %d: %d -> %d ****\n", mcfdata->narcs, source, target);
1489 mcfdata->arcsources[*newarcid] = source;
1490 mcfdata->arctargets[*newarcid] = target;
1491 mcfdata->nextoutarcs[*newarcid] = mcfdata->firstoutarcs[source];
1492 mcfdata->firstoutarcs[source] = *newarcid;
1493 mcfdata->nextinarcs[*newarcid] = mcfdata->firstinarcs[target];
1494 mcfdata->firstinarcs[target] = *newarcid;
1495 mcfdata->capacityrows[*newarcid] =
NULL;
1508 unsigned char rowsign,
1513 unsigned char* flowrowsigns = mcfdata->flowrowsigns;
1514 SCIP_Bool* plusflow = mcfdata->plusflow;
1515 SCIP_Bool* minusflow = mcfdata->minusflow;
1517 int* commoditysigns = mcfdata->commoditysigns;
1519 int* rowcommodity = mcfdata->rowcommodity;
1520 int* newcols = mcfdata->newcols;
1531 assert(comcolids !=
NULL);
1532 assert(ncomcolids !=
NULL);
1541 invertrow = ((rowsign &
INVERTED) != 0);
1544 assert(rowcommodity[r] == -1);
1545 assert((flowrowsigns[r] | rowsign) == flowrowsigns[r]);
1547 assert(rowsign != 0);
1553 commoditysigns[k] = +1;
1582 else if( rowlhs > 0.0 )
1599 flowrowsigns[
r] |= rowsign;
1601 SCIPdebugMsg(scip,
"adding flow row %d <%s> with sign %+d%s to commodity %d [score:%g]\n",
1603 k, mcfdata->flowrowscores[r]);
1607 rowcommodity[
r] = k;
1611 for( i = 0; i < rowlen; i++ )
1620 if( colcommodity[c] == -1 )
1622 assert(!plusflow[c]);
1623 assert(!minusflow[c]);
1625 colcommodity[c] = k;
1626 newcols[mcfdata->nnewcols] = c;
1627 mcfdata->nnewcols++;
1628 comcolids[*ncomcolids] = c;
1631 assert(colcommodity[c] == k);
1634 val = rowscale * rowvals[i];
1637 assert(!plusflow[c]);
1642 assert(!minusflow[c]);
1643 minusflow[c] =
TRUE;
1660 unsigned char* flowrowsigns = mcfdata->flowrowsigns;
1661 SCIP_Bool* plusflow = mcfdata->plusflow;
1662 SCIP_Bool* minusflow = mcfdata->minusflow;
1666 assert(mcfdata->commoditysigns[k] == 0);
1667 assert(comrows !=
NULL || ncomrows == 0);
1668 assert(comcolids !=
NULL);
1671 for( i = 0; i < ncomrows; i++ )
1675 unsigned char rowsign;
1677 assert(comrows !=
NULL);
1679 assert( row !=
NULL );
1682 assert(mcfdata->rowcommodity[r] == k);
1686 rowsign = flowrowsigns[
r];
1698 for( i = 0; i < ncomcolids; i++ )
1705 assert(mcfdata->colcommodity[c] == k);
1708 plusflow[c] = minusflow[c];
1725 unsigned char* flowrowsigns = mcfdata->flowrowsigns;
1726 SCIP_Bool* plusflow = mcfdata->plusflow;
1727 SCIP_Bool* minusflow = mcfdata->minusflow;
1730 int* rowcommodity = mcfdata->rowcommodity;
1734 assert(0 <= k && k < ncommodities);
1736 assert( ndelflowrows !=
NULL );
1737 assert( ndelflowvars !=
NULL );
1739 SCIPdebugMsg(scip,
"deleting commodity %d (%d total commodities) with %d flow rows\n", k, ncommodities, nrows);
1744 for( n = 0; n < nrows; n++ )
1755 assert(rowcommodity[r] == k);
1764 rowcommodity[
r] = -1;
1767 for( i = 0; i < rowlen; i++ )
1775 assert(colcommodity[c] == k || colcommodity[c] == -1);
1776 if(colcommodity[c] == k)
1778 colcommodity[c] = -1;
1781 plusflow[c] =
FALSE;
1782 minusflow[c] =
FALSE;
1791 if( k == ncommodities-1 )
1792 mcfdata->ncommodities--;
1794 mcfdata->nemptycommodities++;
1804 unsigned char* rowsign,
1808 unsigned char* flowrowsigns = mcfdata->flowrowsigns;
1809 SCIP_Bool* plusflow = mcfdata->plusflow;
1810 SCIP_Bool* minusflow = mcfdata->minusflow;
1812 int* rowcommodity = mcfdata->rowcommodity;
1813 int* commoditysigns = mcfdata->commoditysigns;
1818 unsigned char flowrowsign;
1819 unsigned char invflowrowsign;
1823 assert(invertcommodity !=
NULL);
1826 *invertcommodity =
FALSE;
1832 if( rowcommodity[r] != -1 )
1836 flowrowsign = flowrowsigns[
r];
1842 invflowrowsign = flowrowsign;
1848 for( j = 0; j < rowlen && (flowrowsign != 0 || invflowrowsign != 0); j++ )
1856 if( colcommodity[rowc] == k )
1859 if( plusflow[rowc] )
1862 if( rowvals[j] > 0.0 )
1873 if( minusflow[rowc] )
1876 if( rowvals[j] > 0.0 )
1888 else if( colcommodity[rowc] != -1 )
1896 if( flowrowsign != 0 )
1899 *rowsign = flowrowsign;
1900 *invertcommodity =
FALSE;
1902 else if( invflowrowsign != 0 )
1908 if( commoditysigns ==
NULL || commoditysigns[k] == 0 )
1911 *rowsign = invflowrowsign;
1912 *invertcommodity =
TRUE;
1917 *rowsign = (invflowrowsign |
INVERTED);
1918 *invertcommodity =
FALSE;
1935 unsigned char* nextrowsign,
1939 SCIP_Real* flowrowscores = mcfdata->flowrowscores;
1940 SCIP_Bool* plusflow = mcfdata->plusflow;
1941 SCIP_Bool* minusflow = mcfdata->minusflow;
1942 int* newcols = mcfdata->newcols;
1948 assert(nextrow !=
NULL);
1949 assert(nextrowsign !=
NULL);
1953 *nextinvertcommodity =
FALSE;
1958 assert(cols !=
NULL);
1961 while( mcfdata->nnewcols > 0 )
1967 unsigned char bestrowsign;
1974 c = newcols[mcfdata->nnewcols-1];
1975 mcfdata->nnewcols--;
1979 assert(plusflow[c] || minusflow[c]);
1980 if( plusflow[c] && minusflow[c] )
1986 bestinvertcommodity =
FALSE;
1991 for( i = 0; i < collen; i++ )
1994 unsigned char flowrowsign;
2000 getFlowrowFit(scip, mcfdata, row, k, &flowrowsign, &invertcommodity);
2003 if( flowrowsign != 0 )
2010 score = flowrowscores[
r];
2011 assert(score > 0.0);
2017 if( (flowrowsign &
INVERTED) != 0 )
2020 if( score > bestscore )
2023 bestrowsign = flowrowsign;
2024 bestinvertcommodity = invertcommodity;
2034 if( bestrow !=
NULL )
2036 assert(bestscore > 0.0);
2037 assert(bestrowsign != 0);
2039 *nextrowsign = bestrowsign;
2040 *nextinvertcommodity = bestinvertcommodity;
2055 int* flowcands = mcfdata->flowcands;
2082 assert(failed !=
NULL);
2091 plusflow = mcfdata->plusflow;
2092 minusflow = mcfdata->minusflow;
2093 colcommodity = mcfdata->colcommodity;
2094 rowcommodity = mcfdata->rowcommodity;
2106 for( c = 0; c < ncols; c++ )
2107 colcommodity[c] = -1;
2108 for( r = 0; r < nrows; r++ )
2109 rowcommodity[r] = -1;
2111 assert(flowcands !=
NULL || mcfdata->nflowcands == 0);
2122 for( i = 0; i < mcfdata->nflowcands; i++ )
2125 unsigned char newrowsign;
2129 assert(flowcands !=
NULL);
2131 assert(0 <= r && r < nrows);
2135 getFlowrowFit(scip, mcfdata, newrow, mcfdata->ncommodities, &newrowsign, &newinvertcommodity);
2136 if( newrowsign == 0 )
2138 assert(!newinvertcommodity);
2139 assert((newrowsign &
INVERTED) == 0);
2142 SCIPdebugMsg(scip,
" -------------------start new commodity %d--------------------- \n", mcfdata->ncommodities );
2151 if( newinvertcommodity )
2152 invertCommodity(scip, mcfdata, mcfdata->ncommodities-1, comrows, nnodes, comcolids, ncomcolids);
2157 comrows[
nnodes] = newrow;
2162 getNextFlowrow(scip, mcfdata, &newrow, &newrowsign, &newinvertcommodity);
2164 while( newrow !=
NULL );
2166 ncomnodes[mcfdata->ncommodities-1] =
nnodes;
2167 maxnnodes =
MAX(maxnnodes, nnodes);
2168 nflowvars += ncomcolids;
2169 SCIPdebugMsg(scip,
" -> finished commodity %d: identified %d nodes, maxnnodes=%d\n", mcfdata->ncommodities-1, nnodes, maxnnodes);
2177 deleteCommodity(scip, mcfdata, mcfdata->ncommodities-1, comrows, nnodes, &ndelflowrows, &ndelflowvars);
2178 nflowrows -= ndelflowrows;
2179 nflowvars -= ndelflowvars;
2180 assert(nflowvars >= 0);
2181 assert(nflowrows >= 0);
2185 for( k = 0; k < mcfdata->ncommodities; k++ )
2197 for( i = 0; i < mcfdata->nflowcands; i++ )
2199 assert(flowcands !=
NULL);
2201 if( rowcommodity[r] == k )
2206 if( nnodes == ncomnodes[k] )
2211 assert(nnodes == ncomnodes[k]);
2212 deleteCommodity(scip, mcfdata, k, comrows, nnodes, &ndelflowrows, &ndelflowvars);
2213 nflowrows -= ndelflowrows;
2214 nflowvars -= ndelflowvars;
2215 assert(nflowvars >= 0);
2216 assert(nflowrows >= 0);
2225 MCFdebugMessage(
"identified %d commodities (%d empty) with a maximum of %d nodes and %d flowrows, %d flowvars \n",
2226 mcfdata->ncommodities, mcfdata->nemptycommodities, maxnnodes, nflowrows, nflowvars);
2228 assert(nflowvars >= 0);
2229 assert(nflowrows >= 0);
2247 unsigned char* capacityrowsigns = mcfdata->capacityrowsigns;
2250 unsigned char* flowrowsigns = mcfdata->capacityrowsigns;
2251 int* rowcommodity = mcfdata->rowcommodity;
2267 SCIP_Real* capacityrowscores = mcfdata->capacityrowscores;
2269 int *capacitycands = mcfdata->capacitycands;
2270 int ncapacitycands = mcfdata->ncapacitycands;
2272 assert(mcfdata->narcs == 0);
2273 assert(capacitycands !=
NULL || ncapacitycands == 0);
2282 colarcid = mcfdata->colarcid;
2283 rowarcid = mcfdata->rowarcid;
2286 for( c = 0; c < ncols; c++ )
2288 for( r = 0; r < nrows; r++ )
2292 for( i = 0; i < ncapacitycands; i++ )
2297 int nassignedflowvars;
2298 int nunassignedflowvars;
2301 assert(capacitycands !=
NULL);
2302 r = capacitycands[i];
2303 assert(0 <= r && r < nrows );
2304 capacityrow = rows[
r];
2308 assert((capacityrowsigns[r] &
DISCARDED) == 0);
2309 assert(capacityrowscores[r] > 0.0);
2313 assert(rowarcid[r] == -1);
2316 assert( rowcommodity[r] == -1 );
2322 nassignedflowvars = 0;
2323 nunassignedflowvars = 0;
2324 for( k = 0; k < rowlen; k++ )
2327 assert(0 <= c && c < ncols);
2329 assert(-1 <= colcommodity[c] && colcommodity[c] < mcfdata->ncommodities);
2330 assert(-1 <= colarcid[c] && colarcid[c] < mcfdata->narcs);
2333 if( colcommodity[c] == -1 )
2337 if( colarcid[c] >= 0 )
2338 nassignedflowvars++;
2340 nunassignedflowvars++;
2347 if( nunassignedflowvars == 0 || nassignedflowvars >= nunassignedflowvars * 2 )
2349 SCIPdebugMsg(scip,
"discarding capacity candidate row %d <%s> [score:%g]: %d assigned flowvars, %d unassigned flowvars\n",
2350 r,
SCIProwGetName(capacityrow), mcfdata->capacityrowscores[r], nassignedflowvars, nunassignedflowvars);
2356 assert(mcfdata->narcs <= mcfdata->capacityrowssize);
2357 if( mcfdata->narcs == mcfdata->capacityrowssize )
2359 mcfdata->capacityrowssize =
MAX(2*mcfdata->capacityrowssize, mcfdata->narcs+1);
2362 assert(mcfdata->narcs < mcfdata->capacityrowssize);
2363 assert(mcfdata->narcs < nrows);
2365 mcfdata->capacityrows[mcfdata->narcs] = capacityrow;
2368 assert(0 <= r && r < nrows);
2369 rowarcid[
r] = mcfdata->narcs;
2380 SCIPdebugMsg(scip,
"assigning capacity row %d <%s> with sign %+d to arc %d [score:%g]: %d assigned flowvars, %d unassigned flowvars\n",
2382 mcfdata->capacityrowscores[r], nassignedflowvars, nunassignedflowvars);
2385 for( k = 0; k < rowlen; k++ )
2388 assert(0 <= rowc && rowc < ncols);
2393 if( colcommodity[rowc] >= 0 && colarcid[rowc] == -1 )
2394 colarcid[rowc] = mcfdata->narcs;
2414 int* colarcid = mcfdata->colarcid;
2415 int* newcols = mcfdata->newcols;
2416 SCIP_ROW** capacityrows = mcfdata->capacityrows;
2417 SCIP_Bool* colisincident = mcfdata->colisincident;
2426 assert(!colisincident[i]);
2432 mcfdata->nnewcols = 0;
2434 for( i = 0; i < rowlen; i++ )
2446 arcid = colarcid[c];
2449 assert(arcid < mcfdata->
narcs);
2452 assert(capacityrows[arcid] !=
NULL);
2456 for( j = 0; j < capacityrowlen; j++ )
2464 if( colcommodity[caprowc] == -1 )
2466 assert(colarcid[caprowc] == -1);
2469 assert(colarcid[caprowc] <= arcid);
2472 if( colcommodity[caprowc] == basecommodity )
2476 if( !colisincident[caprowc] )
2478 assert(mcfdata->nnewcols < SCIPgetNLPCols(scip));
2479 colisincident[caprowc] =
TRUE;
2480 newcols[mcfdata->nnewcols] = caprowc;
2481 mcfdata->nnewcols++;
2495 int* basearcpattern,
2504 unsigned char* flowrowsigns = mcfdata->flowrowsigns;
2505 int* commoditysigns = mcfdata->commoditysigns;
2506 int narcs = mcfdata->narcs;
2507 int* rowcommodity = mcfdata->rowcommodity;
2508 int* colarcid = mcfdata->colarcid;
2509 int* arcpattern = mcfdata->zeroarcarray;
2522 int* overlappingarcs;
2523 int noverlappingarcs;
2528 *invertcommodity =
FALSE;
2531 for( i = 0; i <
narcs; i++ )
2532 assert(arcpattern[i] == 0);
2541 rowcom = rowcommodity[
r];
2543 rowcomsign = commoditysigns[rowcom];
2544 assert(-1 <= rowcomsign && rowcomsign <= +1);
2549 incompatible =
FALSE;
2550 noverlappingarcs = 0;
2554 for( i = 0; i < rowlen; i++ )
2564 valsign = (rowvals[i] > 0.0 ? +1 : -1);
2567 if( (flowrowsigns[r] &
INVERTED) != 0 )
2570 arcid = colarcid[c];
2579 assert(arcid < narcs);
2582 if( basearcpattern[arcid] != 0 )
2589 if( ( valsign * basearcpattern[arcid] ) > 0 )
2594 if( rowcomsign == 0 )
2597 rowcomsign = validcomsign;
2599 else if( rowcomsign != validcomsign )
2602 incompatible =
TRUE;
2613 if( arcpattern[arcid] == 0 )
2615 overlappingarcs[noverlappingarcs] = arcid;
2618 arcpattern[arcid] += valsign;
2624 for( i = 0; i < noverlappingarcs; i++ )
2630 arcid = overlappingarcs[i];
2631 assert(0 <= arcid && arcid < narcs);
2634 basenum =
ABS(basearcpattern[arcid]);
2635 arcnum =
ABS(arcpattern[arcid]);
2636 assert(basenum != 0.0);
2637 assert(arcnum != 0.0);
2639 if( basenum > arcnum )
2640 overlap += arcnum/basenum;
2642 overlap += basenum/arcnum;
2644 arcpattern[arcid] = 0;
2648 if( !incompatible && overlap > 0.0 )
2651 int rowarcs = rowlen - nposuncap - nneguncap;
2652 int baserowarcs = baserowlen - basenposuncap - basenneguncap;
2655 assert(overlap <= (
SCIP_Real) baserowlen);
2656 assert(noverlappingarcs >= 1);
2658 *invertcommodity = (rowcomsign == -1);
2662 if( noverlappingarcs >= 2 )
2665 assert(rowarcs >= 0 && baserowarcs >= 0 );
2668 *score = overlap - (rowarcs + baserowarcs - 2.0 * overlap)/(2.0 * ncols + 1.0);
2670 *score = overlap - (rowarcs + baserowarcs - 4.0 * overlap)/(2.0 * ncols + 1.0);
2673 if(*invertcommodity)
2674 *score += 1.0 - (
ABS(nneguncap - basenposuncap) +
ABS(nposuncap - basenneguncap))/(2.0 * ncols + 1.0);
2676 *score += 1.0 - (
ABS(nposuncap - basenposuncap) +
ABS(nneguncap - basenneguncap))/(2.0 * ncols + 1.0);
2678 *score =
MAX(*score, 1e-6);
2681 SCIPdebugMsg(scip,
" -> node similarity: row <%s>: incompatible=%u overlap=%g rowlen=%d baserowlen=%d score=%g\n",
2682 SCIProwGetName(row), incompatible, overlap, rowlen, baserowlen, *score);
2697 unsigned char* flowrowsigns = mcfdata->flowrowsigns;
2699 int* commoditysigns = mcfdata->commoditysigns;
2700 int narcs = mcfdata->narcs;
2701 int* flowcands = mcfdata->flowcands;
2702 int nflowcands = mcfdata->nflowcands;
2703 int* rowcommodity = mcfdata->rowcommodity;
2704 int* colarcid = mcfdata->colarcid;
2705 int* newcols = mcfdata->newcols;
2726 assert(mcfdata->nnodes == 0);
2738 rownodeid = mcfdata->rownodeid;
2739 colisincident = mcfdata->colisincident;
2749 for( r = 0; r < nrows; r++ )
2751 for( c = 0; c < ncols; c++ )
2752 colisincident[c] =
FALSE;
2754 assert(flowcands !=
NULL || nflowcands == 0);
2757 for( n = 0; n < nflowcands; n++ )
2766 assert(flowcands !=
NULL);
2768 assert(0 <= r && r < nrows);
2771 basecommodity = rowcommodity[
r];
2772 if( basecommodity == -1 )
2775 assert(mcfdata->rowarcid[r] == -1);
2778 if( rownodeid[r] >= 0 )
2782 SCIPdebugMsg(scip,
"assigning row %d <%s> of commodity %d to node %d [score: %g]\n",
2783 r,
SCIProwGetName(rows[r]), basecommodity, mcfdata->nnodes, mcfdata->flowrowscores[r]);
2784 rownodeid[
r] = mcfdata->nnodes;
2792 if(ncommodities == 1)
2807 if( (flowrowsigns[r] &
INVERTED) != 0 )
2809 if( commoditysigns[basecommodity] == -1 )
2812 for( i = 0; i < rowlen; i++ )
2817 assert(0 <= c && c < ncols);
2818 arcid = colarcid[c];
2823 arcpattern[arcid]++;
2825 arcpattern[arcid]--;
2840 bestflowrows[i] =
NULL;
2841 bestscores[i] = 0.0;
2842 bestinverted[i] =
FALSE;
2854 for( i = 0; i < mcfdata->nnewcols; i++ )
2861 assert(0 <= c && c < ncols);
2862 assert(mcfdata->colcommodity[c] >= 0);
2863 assert(mcfdata->colcommodity[c] != basecommodity);
2866 assert(colisincident[c]);
2867 colisincident[c] =
FALSE;
2873 for( j = 0; j < collen; j++ )
2881 assert(0 <= colr && colr < nrows);
2884 if( rowprocessed[colr] )
2886 rowprocessed[colr] =
TRUE;
2889 rowcom = rowcommodity[colr];
2890 assert(rowcom != basecommodity);
2894 assert(rowcom == mcfdata->colcommodity[c]);
2895 assert((flowrowsigns[colr] & (
LHSASSIGNED | RHSASSIGNED)) != 0);
2896 assert(mcfdata->rowarcid[colr] == -1);
2899 if( rownodeid[colr] >= 0 )
2904 nposuncap, nneguncap, colrows[j], &score, &invertcommodity) );
2907 if( score > bestscores[rowcom] )
2909 bestflowrows[rowcom] = colrows[j];
2910 bestscores[rowcom] = score;
2911 bestinverted[rowcom] = invertcommodity;
2915 assert(bestflowrows[basecommodity] ==
NULL);
2922 if( bestflowrows[i] ==
NULL )
2926 assert(0 <= comr && comr < nrows);
2927 assert(rowcommodity[comr] == i);
2928 assert((flowrowsigns[comr] & (
LHSASSIGNED | RHSASSIGNED)) != 0);
2929 assert(rownodeid[comr] == -1);
2930 assert(mcfdata->nnodes >= 1);
2932 SCIPdebugMsg(scip,
" -> assigning row %d <%s> of commodity %d to node %d [invert:%u]\n",
2933 comr,
SCIProwGetName(rows[comr]), i, mcfdata->nnodes-1, bestinverted[i]);
2934 rownodeid[comr] = mcfdata->nnodes-1;
2937 if( bestinverted[i] )
2939 assert(commoditysigns[i] != +1);
2940 commoditysigns[i] = -1;
2944 assert(commoditysigns[i] != -1);
2945 commoditysigns[i] = +1;
2968 int* commoditysigns = mcfdata->commoditysigns;
2971 for( k = 0; k < mcfdata->ncommodities; k++ )
2973 if( commoditysigns[k] == 0 )
2974 commoditysigns[k] = +1;
2989 unsigned char* flowrowsigns = mcfdata->flowrowsigns;
2990 int* commoditysigns = mcfdata->commoditysigns;
2991 int* rowcommodity = mcfdata->rowcommodity;
2992 int* rownodeid = mcfdata->rownodeid;
2993 int* colsources = mcfdata->colsources;
2994 int* coltargets = mcfdata->coltargets;
3002 assert(sourcenode !=
NULL);
3003 assert(targetnode !=
NULL);
3004 assert(colsources !=
NULL);
3005 assert(coltargets !=
NULL);
3011 if( colsources[c] >= -1 )
3013 assert(coltargets[c] >= -1);
3014 *sourcenode = colsources[c];
3015 *targetnode = coltargets[c];
3026 for( i = 0; i < collen; i++ )
3033 if( rownodeid[r] >= 0 )
3040 k = rowcommodity[
r];
3041 assert(0 <= v && v < mcfdata->
nnodes);
3049 if( (flowrowsigns[r] &
INVERTED) != 0 )
3051 if( commoditysigns[k] == -1 )
3055 if( ( scale * colvals[i] ) > 0.0 )
3057 assert(*sourcenode == -1);
3059 if( *targetnode >= 0 )
3064 assert(*targetnode == -1);
3066 if( *sourcenode >= 0 )
3073 colsources[c] = *sourcenode;
3074 coltargets[c] = *targetnode;
3085 int* flowcands = mcfdata->flowcands;
3086 int nflowcands = mcfdata->nflowcands;
3088 unsigned char* flowrowsigns = mcfdata->flowrowsigns;
3090 int* rowcommodity = mcfdata->rowcommodity;
3092 int* rownodeid = mcfdata->rownodeid;
3093 int* colarcid = mcfdata->colarcid;
3094 int nnodes = mcfdata->nnodes;
3102 int* sortedflowcands;
3103 int* sortedflowcandnodeid;
3116 assert(mcfdata->nemptycommodities == 0);
3117 assert(ncommodities >= 0);
3121 if( ncommodities == 0 || nflowcands == 0 || nnodes == 0 )
3130 assert(rows !=
NULL);
3131 assert(cols !=
NULL || ncols == 0);
3142 for( n = 0; n < nflowcands; n++ )
3144 sortedflowcands[n] = flowcands[n];
3145 sortedflowcandnodeid[n] = rownodeid[flowcands[n]];
3149 SCIPsortIntInt(sortedflowcandnodeid, sortedflowcands, nflowcands);
3150 assert(sortedflowcandnodeid[0] <= 0);
3151 assert(sortedflowcandnodeid[nflowcands-1] == nnodes-1);
3154 for( v = 0; v <
nnodes; v++ )
3170 for( n = 0; n < nflowcands; n++ )
3172 if( sortedflowcandnodeid[n] >= 0 )
3174 assert(0 <= sortedflowcands[n] && sortedflowcands[n] <
SCIPgetNLPRows(scip));
3175 assert(rowcommodity[sortedflowcands[n]] == -1);
3177 assert(n < nflowcands);
3178 assert(sortedflowcandnodeid[n] == 0);
3183 for( v = 0; n < nflowcands; v++ )
3188 assert(0 <= sortedflowcands[n] && sortedflowcands[n] <
SCIPgetNLPRows(scip));
3189 assert(rowcommodity[sortedflowcands[n]] >= 0);
3190 assert(rownodeid[sortedflowcands[n]] == sortedflowcandnodeid[n]);
3191 assert(sortedflowcandnodeid[n] == v);
3192 assert(nadjnodes == 0);
3193 assert(ninccols == 0);
3198 for( ; n < nflowcands && sortedflowcandnodeid[n] == v; n++ )
3205 r = sortedflowcands[n];
3207 assert(mcfdata->rowarcid[r] == -1);
3212 for( i = 0; i < rowlen; i++ )
3223 arcid = colarcid[c];
3224 assert(-2 <= arcid && arcid < mcfdata->
narcs);
3225 assert(rowcommodity[r] == colcommodity[c]);
3235 else if( arcid == -1 )
3245 assert(-1 <= s && s < nnodes);
3246 assert(-1 <= t && t < nnodes);
3247 assert(s == v || t == v);
3258 if( s < 0 || t < 0 )
3266 assert(ninccols < ncols);
3267 inccols[ninccols] = c;
3283 if( sourcecount[u] + targetcount[u] == 1 )
3285 assert(nadjnodes < nnodes);
3286 adjnodes[nadjnodes] = u;
3294 for( l = 0; l < nadjnodes; l++ )
3299 assert(0 <= u && u < nnodes);
3300 assert(sourcecount[u] > 0 || targetcount[u] > 0);
3302 assert(ninccols >= 0);
3305 if( sourcecount[u] >= arcsthreshold )
3312 SCIPdebugMsg(scip,
" -> new arc: <%i> = (%i,%i)\n", arcid, u, v);
3315 for( m = 0; m < ninccols; m++ )
3322 assert(0 <= c && c < ncols);
3324 assert(cols !=
NULL);
3326 assert(s == v || t == v);
3331 colarcid[c] = arcid;
3334 inccols[m] = inccols[ninccols-1];
3342 if( targetcount[u] >= arcsthreshold )
3349 SCIPdebugMsg(scip,
" -> new arc: <%i> = (%i,%i)\n", arcid, v, u);
3352 for( m = 0; m < ninccols; m++ )
3359 assert(0 <= c && c < ncols);
3361 assert(cols !=
NULL);
3363 assert(s == v || t == v);
3368 colarcid[c] = arcid;
3371 inccols[m] = inccols[ninccols-1];
3380 for( l = 0; l < nadjnodes; l++ )
3388 for( l = 0; l < ninccols; l++ )
3390 assert(colarcid[inccols[l]] == -1);
3391 colarcid[inccols[l]] = -2;
3395 assert(n == nflowcands);
3396 assert(v == nnodes);
3400 for( n = 0; n < ncols; n++ )
3401 assert(colarcid[n] >= -1);
3412 MCFdebugMessage(
"network after finding uncapacitated arcs has %d nodes, %d arcs, and %d commodities\n",
3413 mcfdata->nnodes, mcfdata->narcs, mcfdata->ncommodities);
3425 int* flowcands = mcfdata->flowcands;
3426 int nflowcands = mcfdata->nflowcands;
3428 int* rowcommodity = mcfdata->rowcommodity;
3429 int* colarcid = mcfdata->colarcid;
3430 int* rowarcid = mcfdata->rowarcid;
3431 int* rownodeid = mcfdata->rownodeid;
3433 int* commoditysigns = mcfdata->commoditysigns;
3434 int narcs = mcfdata->narcs;
3435 int nnodes = mcfdata->nnodes;
3436 SCIP_ROW** capacityrows = mcfdata->capacityrows;
3448 int nnodesthreshold;
3449 int newncommodities;
3455 MCFdebugMessage(
"network before cleanup has %d nodes, %d arcs, and %d commodities\n", nnodes, narcs, ncommodities);
3463 permsize =
MAX(permsize, narcs);
3464 permsize =
MAX(permsize, nnodes);
3474 assert(flowcands !=
NULL || nflowcands == 0);
3477 for( i = 0; i < nflowcands; i++ )
3481 assert(flowcands !=
NULL);
3483 assert(0 <= r && r < nrows);
3484 assert((rownodeid[r] >= 0) == (rowcommodity[r] >= 0));
3485 if( rowcommodity[r] >= 0 )
3487 assert(rowcommodity[r] < ncommodities);
3488 nnodespercom[rowcommodity[
r]]++;
3492 assert(capacityrows !=
NULL || narcs == 0);
3495 for( a = 0; a <
narcs; a++ )
3502 assert(capacityrows !=
NULL);
3504 assert(0 <= r && r < nrows);
3505 assert(rowarcid[r] == a);
3511 for( j = 0; j < rowlen; j++ )
3516 assert(0 <= c && c < ncols);
3517 if( colcommodity[c] >= 0 && colarcid[c] == a )
3519 assert(colcommodity[c] < ncommodities);
3520 arcisincom[colcommodity[c]] =
TRUE;
3535 maxnnodes =
MAX(maxnnodes, nnodespercom[k]);
3543 SCIPdebugMsg(scip,
" -> node threshold: %d\n", nnodesthreshold);
3546 newncommodities = 0;
3549 SCIPdebugMsg(scip,
" -> commodity %d: %d nodes, %d arcs\n", k, nnodespercom[k], narcspercom[k]);
3552 if( nnodespercom[k] >= nnodesthreshold && narcspercom[k] >= 1 )
3554 assert(newncommodities <= k);
3555 perm[k] = newncommodities;
3556 commoditysigns[newncommodities] = commoditysigns[k];
3563 if( newncommodities < ncommodities )
3572 SCIPdebugMsg(scip,
" -> discarding %d of %d commodities\n", ncommodities - newncommodities, ncommodities);
3580 for( c = 0; c < ncols; c++ )
3582 if( colcommodity[c] >= 0 )
3584 assert(-1 <= colarcid[c] && colarcid[c] < narcs);
3585 assert(colcommodity[c] < mcfdata->ncommodities);
3586 colcommodity[c] = perm[colcommodity[c]];
3587 assert(colcommodity[c] < newncommodities);
3588 if( colcommodity[c] == -1 )
3593 else if( colarcid[c] >= 0 )
3594 arcisused[colarcid[c]] =
TRUE;
3597 for( i = 0; i < nflowcands; i++ )
3601 assert(flowcands !=
NULL);
3603 assert(0 <= r && r < nrows);
3604 assert((rownodeid[r] >= 0) == (rowcommodity[r] >= 0));
3605 if( rowcommodity[r] >= 0 )
3607 assert(0 <= rownodeid[r] && rownodeid[r] < nnodes);
3608 assert(rowcommodity[r] < mcfdata->ncommodities);
3609 rowcommodity[
r] = perm[rowcommodity[
r]];
3610 assert(rowcommodity[r] < newncommodities);
3611 if( rowcommodity[r] == -1 )
3617 nodeisused[rownodeid[
r]] =
TRUE;
3621 mcfdata->ncommodities = newncommodities;
3622 ncommodities = newncommodities;
3626 for( a = 0; a <
narcs; a++ )
3630 assert(capacityrows !=
NULL);
3634 assert(newnarcs <= a);
3636 capacityrows[newnarcs] = capacityrows[
a];
3645 assert(0 <= r && r < nrows);
3646 assert(rowarcid[r] == a);
3647 rowarcid[
r] = perm[
a];
3651 if( newnarcs < narcs )
3653 SCIPdebugMsg(scip,
" -> discarding %d of %d arcs\n", narcs - newnarcs, narcs);
3655 for( c = 0; c < ncols; c++ )
3657 if( colarcid[c] >= 0 )
3659 colarcid[c] = perm[colarcid[c]];
3660 assert(colarcid[c] >= 0);
3663 mcfdata->narcs = newnarcs;
3667 for( a = 0; a <
narcs; a++ )
3670 assert(capacityrows !=
NULL);
3672 assert(0 <= r && r < nrows);
3673 assert(rowarcid[r] == a);
3679 for( v = 0; v <
nnodes; v++ )
3683 assert(newnnodes <= v);
3684 perm[v] = newnnodes;
3692 if( newnnodes < nnodes )
3694 SCIPdebugMsg(scip,
" -> discarding %d of %d nodes\n", nnodes - newnnodes, nnodes);
3696 for( i = 0; i < nflowcands; i++ )
3700 assert(flowcands !=
NULL);
3702 assert(0 <= r && r < nrows);
3703 assert((rownodeid[r] >= 0) == (rowcommodity[r] >= 0));
3704 if( rowcommodity[r] >= 0 )
3706 assert(rowcommodity[r] < ncommodities);
3707 rownodeid[
r] = perm[rownodeid[
r]];
3708 assert(rownodeid[r] >= 0);
3711 mcfdata->nnodes = newnnodes;
3723 mcfdata->nemptycommodities = 0;
3731 MCFdebugMessage(
"network after cleanup has %d nodes, %d arcs, and %d commodities\n", nnodes, narcs, ncommodities);
3745 int* colarcid = mcfdata->colarcid;
3747 int narcs = mcfdata->narcs;
3748 int nnodes = mcfdata->nnodes;
3750 SCIP_ROW** capacityrows = mcfdata->capacityrows;
3752 SCIP_Real maxinconsistencyratio = sepadata->maxinconsistencyratio;
3753 SCIP_Real maxarcinconsistencyratio = sepadata->maxarcinconsistencyratio;
3765 int *flowvarspercom;
3778 assert(effortlevel !=
NULL);
3792 arcsources = mcfdata->arcsources;
3793 arctargets = mcfdata->arctargets;
3794 colsources = mcfdata->colsources;
3795 coltargets = mcfdata->coltargets;
3796 firstoutarcs = mcfdata->firstoutarcs;
3797 firstinarcs = mcfdata->firstinarcs;
3798 nextoutarcs = mcfdata->nextoutarcs;
3799 nextinarcs = mcfdata->nextinarcs;
3801 mcfdata->arcarraysize =
narcs;
3804 for( c = 0; c < ncols; c++ )
3811 for( v = 0; v <
nnodes; v++ )
3813 firstoutarcs[v] = -1;
3814 firstinarcs[v] = -1;
3816 for( a = 0; a <
narcs; a++ )
3818 nextoutarcs[
a] = -1;
3832 mcfdata->ninconsistencies = 0.0;
3833 maxninconsistencies = maxinconsistencyratio * (
SCIP_Real)narcs;
3836 for( a = 0; a <
narcs; a++ )
3858 assert(mcfdata->rowarcid[r] == a);
3861 for( i = 0; i <
nnodes; i++ )
3863 assert(sourcenodecnt[i] == 0);
3864 assert(targetnodecnt[i] == 0);
3875 for( i = 0; i < rowlen; i++ )
3879 if( colarcid[c] >= 0 )
3881 int k = colcommodity[c];
3882 assert (0 <= k && k < ncommodities);
3883 flowvarspercom[k]++;
3884 if( !comtouched[k] )
3887 comtouched[k] =
TRUE;
3893 if( ntouchedcoms == 0 )
3895 capacityrows[
a] =
NULL;
3903 totalsourcecnt = 0.0;
3904 totaltargetcnt = 0.0;
3906 for( i = 0; i < rowlen; i++ )
3910 if( colarcid[c] >= 0 )
3912 int k = colcommodity[c];
3917 assert (0 <= k && k < ncommodities);
3918 assert (comtouched[k]);
3919 assert (flowvarspercom[k] >= 1);
3925 weight = 1.0/flowvarspercom[k];
3928 if( sourcenodecnt[sourcev] == 0.0 && targetnodecnt[sourcev] == 0.0 )
3930 touchednodes[ntouchednodes] = sourcev;
3933 sourcenodecnt[sourcev] += weight;
3934 totalsourcecnt += weight;
3938 if( sourcenodecnt[targetv] == 0.0 && targetnodecnt[targetv] == 0.0 )
3940 touchednodes[ntouchednodes] = targetv;
3943 targetnodecnt[targetv] += weight;
3944 totaltargetcnt += weight;
3946 if( sourcev >= 0 || targetv >= 0 )
3947 totalnodecnt += weight;
3954 bestsourcecnt = 0.0;
3955 besttargetcnt = 0.0;
3956 for( i = 0; i < ntouchednodes; i++ )
3958 v = touchednodes[i];
3959 assert(0 <= v && v < nnodes);
3964 if( sourcenodecnt[v] >= targetnodecnt[v] )
3966 if( sourcenodecnt[v] > bestsourcecnt )
3969 bestsourcecnt = sourcenodecnt[v];
3974 if( targetnodecnt[v] > besttargetcnt )
3977 besttargetcnt = targetnodecnt[v];
3983 SCIP_Real nodecnt = sourcenodecnt[v] + targetnodecnt[v];
3987 if( nodecnt > bestsourcecnt )
3989 besttargetv = bestsourcev;
3990 besttargetcnt = bestsourcecnt;
3992 bestsourcecnt = nodecnt;
3994 else if( nodecnt > besttargetcnt )
3997 besttargetcnt = nodecnt;
4002 sourcenodecnt[v] = 0;
4003 targetnodecnt[v] = 0;
4009 totalsourcecnt = totalnodecnt;
4010 totaltargetcnt = totalnodecnt;
4012 assert(
SCIPisGE(scip,totalsourcecnt,bestsourcecnt));
4013 assert(
SCIPisGE(scip,totaltargetcnt,besttargetcnt));
4014 nsourceinconsistencies = (totalsourcecnt - bestsourcecnt)/ntouchedcoms;
4015 ntargetinconsistencies = (totaltargetcnt - besttargetcnt)/ntouchedcoms;
4018 if( nsourceinconsistencies > maxarcinconsistencyratio )
4024 if( ntargetinconsistencies > maxarcinconsistencyratio )
4031 assert(bestsourcev == -1 || bestsourcev != besttargetv);
4032 arcsources[
a] = bestsourcev;
4033 arctargets[
a] = besttargetv;
4034 SCIPdebugMsg(scip,
"arc %d: %d -> %d (len=%d, sourcecnt=%g/%g, targetcnt=%g/%g, %g/%g inconsistencies)\n",
4035 a, bestsourcev, besttargetv, rowlen,
4036 bestsourcecnt, totalsourcecnt, besttargetcnt, totaltargetcnt,
4037 nsourceinconsistencies, ntargetinconsistencies);
4040 if( bestsourcev != -1 )
4042 nextoutarcs[
a] = firstoutarcs[bestsourcev];
4043 firstoutarcs[bestsourcev] =
a;
4045 if( besttargetv != -1 )
4047 nextinarcs[
a] = firstinarcs[besttargetv];
4048 firstinarcs[besttargetv] =
a;
4052 mcfdata->ninconsistencies += 0.5*(nsourceinconsistencies + ntargetinconsistencies);
4054 if( mcfdata->ninconsistencies > maxninconsistencies )
4056 MCFdebugMessage(
" -> reached maximal number of inconsistencies: %g > %g\n",
4057 mcfdata->ninconsistencies, maxninconsistencies);
4063 if( mcfdata->ninconsistencies <= maxninconsistencies && narcs > 0 && ncommodities > 0 )
4068 MCFdebugMessage(
"extracted network has %g inconsistencies (ratio %g) -> separating with effort %d\n",
4069 mcfdata->ninconsistencies, mcfdata->ninconsistencies/(
SCIP_Real)narcs, *effortlevel);
4100 int* firstoutarcs = mcfdata->firstoutarcs;
4101 int* firstinarcs = mcfdata->firstinarcs;
4102 int* nextoutarcs = mcfdata->nextoutarcs;
4103 int* nextinarcs = mcfdata->nextinarcs;
4104 int nnodes = mcfdata->nnodes;
4109 assert(nodevisited !=
NULL);
4110 assert(0 <= startv && startv < nnodes);
4111 assert(nodevisited[startv] ==
UNKNOWN);
4112 assert(compnodes !=
NULL);
4113 assert(ncompnodes !=
NULL);
4114 assert(comparcs !=
NULL);
4115 assert(ncomparcs !=
NULL);
4124 stacknodes[0] = startv;
4126 nodevisited[startv] =
ONSTACK;
4129 while( nstacknodes > 0 )
4134 assert(firstoutarcs !=
NULL);
4135 assert(firstinarcs !=
NULL);
4136 assert(nextoutarcs !=
NULL);
4137 assert(nextinarcs !=
NULL);
4140 v = stacknodes[nstacknodes-1];
4142 assert(0 <= v && v < nnodes);
4143 assert(nodevisited[v] ==
ONSTACK);
4147 assert(*ncompnodes < nnodes);
4148 compnodes[*ncompnodes] = v;
4152 for( a = firstoutarcs[v]; a != -1; a = nextoutarcs[
a] )
4156 assert(0 <= a && a < mcfdata->
narcs);
4157 assert(arctargets !=
NULL);
4159 targetv = arctargets[
a];
4162 if( targetv != -1 && nodevisited[targetv] ==
VISITED )
4166 assert(*ncomparcs < mcfdata->narcs);
4167 comparcs[*ncomparcs] =
a;
4171 if( targetv != -1 && nodevisited[targetv] ==
UNKNOWN )
4173 assert(nstacknodes < nnodes);
4174 stacknodes[nstacknodes] = targetv;
4176 nodevisited[targetv] =
ONSTACK;
4181 for( a = firstinarcs[v]; a != -1; a = nextinarcs[
a] )
4185 assert(0 <= a && a < mcfdata->
narcs);
4186 assert(arcsources !=
NULL);
4188 sourcev = arcsources[
a];
4191 if( sourcev != -1 && nodevisited[sourcev] ==
VISITED )
4195 assert(*ncomparcs < mcfdata->narcs);
4196 comparcs[*ncomparcs] =
a;
4200 if( sourcev != -1 && nodevisited[sourcev] ==
UNKNOWN )
4202 assert(nstacknodes < nnodes);
4203 stacknodes[nstacknodes] = sourcev;
4205 nodevisited[sourcev] =
ONSTACK;
4236 int mcfnetworkssize;
4238 assert(mcfnetworks !=
NULL);
4239 assert(nmcfnetworks !=
NULL);
4240 assert(effortlevel !=
NULL);
4244 *mcfnetworks =
NULL;
4246 mcfnetworkssize = 0;
4277 mcfdata.flowrowsigns =
NULL;
4278 mcfdata.flowrowscalars =
NULL;
4279 mcfdata.flowrowscores =
NULL;
4280 mcfdata.capacityrowsigns =
NULL;
4281 mcfdata.capacityrowscores =
NULL;
4282 mcfdata.flowcands =
NULL;
4283 mcfdata.nflowcands = 0;
4284 mcfdata.capacitycands =
NULL;
4285 mcfdata.ncapacitycands = 0;
4286 mcfdata.plusflow =
NULL;
4287 mcfdata.minusflow =
NULL;
4288 mcfdata.ncommodities = 0;
4289 mcfdata.nemptycommodities = 0;
4290 mcfdata.commoditysigns =
NULL;
4291 mcfdata.commoditysignssize = 0;
4292 mcfdata.colcommodity =
NULL;
4293 mcfdata.rowcommodity =
NULL;
4294 mcfdata.colarcid =
NULL;
4295 mcfdata.rowarcid =
NULL;
4296 mcfdata.rownodeid =
NULL;
4297 mcfdata.arcarraysize = 0;
4298 mcfdata.arcsources =
NULL;
4299 mcfdata.arctargets =
NULL;
4300 mcfdata.colsources =
NULL;
4301 mcfdata.coltargets =
NULL;
4302 mcfdata.firstoutarcs =
NULL;
4303 mcfdata.firstinarcs =
NULL;
4304 mcfdata.nextoutarcs =
NULL;
4305 mcfdata.nextinarcs =
NULL;
4306 mcfdata.newcols =
NULL;
4307 mcfdata.nnewcols = 0;
4310 mcfdata.ninconsistencies = 0.0;
4311 mcfdata.capacityrows =
NULL;
4312 mcfdata.capacityrowssize = 0;
4313 mcfdata.colisincident =
NULL;
4314 mcfdata.zeroarcarray =
NULL;
4321 assert(mcfdata.flowrowsigns !=
NULL);
4322 assert(mcfdata.flowrowscalars !=
NULL);
4323 assert(mcfdata.flowrowscores !=
NULL);
4324 assert(mcfdata.flowcands !=
NULL);
4326 if( mcfdata.nflowcands == 0 )
4334 assert(mcfdata.plusflow !=
NULL);
4335 assert(mcfdata.minusflow !=
NULL);
4336 assert(mcfdata.colcommodity !=
NULL);
4337 assert(mcfdata.rowcommodity !=
NULL);
4338 assert(mcfdata.newcols !=
NULL);
4344 printCommodities(scip, &mcfdata);
4351 assert(mcfdata.capacityrowsigns !=
NULL);
4352 assert(mcfdata.capacityrowscores !=
NULL);
4353 assert(mcfdata.capacitycands !=
NULL);
4355 if( mcfdata.ncapacitycands == 0 )
4363 assert(mcfdata.colarcid !=
NULL);
4364 assert(mcfdata.rowarcid !=
NULL);
4368 assert(mcfdata.rownodeid !=
NULL);
4369 assert(mcfdata.colisincident !=
NULL);
4370 assert(mcfdata.zeroarcarray !=
NULL);
4381 assert(mcfdata.arcsources !=
NULL);
4382 assert(mcfdata.arctargets !=
NULL);
4383 assert(mcfdata.colsources !=
NULL);
4384 assert(mcfdata.coltargets !=
NULL);
4385 assert(mcfdata.firstoutarcs !=
NULL);
4386 assert(mcfdata.firstinarcs !=
NULL);
4387 assert(mcfdata.nextoutarcs !=
NULL);
4388 assert(mcfdata.nextinarcs !=
NULL);
4404 printCommodities(scip, &mcfdata);
4417 for( v = 0; v < mcfdata.nnodes; v++ )
4421 for( v = 0; v < mcfdata.nnodes; v++ )
4428 if( nodevisited[v] ==
VISITED )
4433 assert(ncompnodes >= 1);
4434 assert(compnodes[0] == v);
4435 assert(nodevisited[v] ==
VISITED);
4438 if( ncompnodes >= minnodes && ncomparcs >=
MINARCS )
4445 assert(*nmcfnetworks <= mcfnetworkssize);
4446 if( *nmcfnetworks == mcfnetworkssize )
4448 mcfnetworkssize =
MAX(2*mcfnetworkssize, *nmcfnetworks+1);
4451 assert(*nmcfnetworks < mcfnetworkssize);
4457 SCIP_CALL(
mcfnetworkFill(scip, mcfnetwork, &mcfdata, compnodeid, compnodes, ncompnodes, comparcs, ncomparcs) );
4460 for( i = *nmcfnetworks; i > 0 && mcfnetwork->
nnodes > (*mcfnetworks)[i-1]->nnodes; i-- )
4461 (*mcfnetworks)[i] = (*mcfnetworks)[i-1];
4462 (*mcfnetworks)[i] = mcfnetwork;
4467 minnodes =
MAX(minnodes, (*mcfnetworks)[*nmcfnetworks-1]->
nnodes);
4472 SCIPdebugMsg(scip,
" -> discarded network with %d nodes and %d arcs due to maxnetworks (minnodes=%d)\n",
4473 (*mcfnetworks)[*nmcfnetworks-1]->
nnodes, (*mcfnetworks)[*nmcfnetworks-1]->
narcs, minnodes);
4481 SCIPdebugMsg(scip,
" -> discarded component with %d nodes and %d arcs\n", ncompnodes, ncomparcs);
4523 #ifdef COUNTNETWORKVARIABLETYPES 4545 int nintflowvars = 0;
4546 int nbinflowvars = 0;
4547 int ncontflowvars = 0;
4549 int nintcapvars = 0;
4550 int nbincapvars = 0;
4551 int ncontcapvars = 0;
4559 for(c=0; c < ncols; c++)
4560 colvisited[c]=
FALSE;
4564 for(m=0; m < nmcfnetworks; m++)
4576 for(c=0; c < ncols; c++)
4580 if(colcommodity[c] >= 0 && ! colvisited[c])
4585 colvisited[c] =
TRUE;
4608 for( a = 0; a <
narcs; a++ )
4611 row = arccapacityrows[
a];
4623 for( i = 0; i < rowlen; i++ )
4628 if(colcommodity[c] == -1 && ! colvisited[c] )
4631 colvisited[c] =
TRUE;
4658 for( v = 0; v <
nnodes; v++ )
4661 row = nodeflowrows[v][k];
4671 MCFdebugMessage(
" nof flowvars: %5d of which [ %d , %d , %d ] are continuous, integer, binary\n",
4672 nflowvars, ncontflowvars, nintflowvars, nbinflowvars);
4673 MCFdebugMessage(
" nof capvars: %5d of which [ %d , %d , %d ] are continuous, integer, binary\n",
4674 ncapvars, ncontcapvars, nintcapvars, nbincapvars);
4693 int* representatives,
4700 for( v = 0; v < nelems; v++ )
4701 representatives[v] = v;
4707 int* representatives,
4711 assert(representatives !=
NULL);
4713 while( v != representatives[v] )
4715 representatives[v] = representatives[representatives[v]];
4716 v = representatives[v];
4725 int* representatives,
4730 assert(rep1 != rep2);
4731 assert(representatives[rep1] == rep1);
4732 assert(representatives[rep2] == rep2);
4738 representatives[rep2] = rep1;
4740 representatives[rep1] = rep2;
4756 if( nodepair1->weight > nodepair2->weight )
4758 else if( nodepair1->weight < nodepair2->weight )
4793 assert(mcfnetwork !=
NULL);
4799 assert(nodepair1 !=
NULL);
4800 assert(nodepair2 !=
NULL);
4802 source1 = nodepair1->node1;
4803 source2 = nodepair2->node1;
4804 target1 = nodepair1->node2;
4805 target2 = nodepair2->node2;
4807 assert(source1 >=0 && source1 < mcfnetwork->
nnodes);
4808 assert(source2 >=0 && source2 < mcfnetwork->nnodes);
4809 assert(target1 >=0 && target1 < mcfnetwork->nnodes);
4810 assert(target2 >=0 && target2 < mcfnetwork->nnodes);
4811 assert(source1 <= target1);
4812 assert(source2 <= target2);
4814 return (source1 == source2 && target1 == target2);
4828 unsigned int hashval;
4832 assert(mcfnetwork !=
NULL);
4836 assert( nodepair !=
NULL);
4838 source = nodepair->node1;
4839 target = nodepair->node2;
4841 assert(source >=0 && source < mcfnetwork->
nnodes);
4842 assert(target >=0 && target < mcfnetwork->nnodes);
4843 assert(source <= target);
4845 hashval = (source << 16) + target;
4868 #ifdef BETTERWEIGHTFORDEMANDNODES 4888 assert(mcfnetwork !=
NULL);
4890 #ifdef BETTERWEIGHTFORDEMANDNODES 4900 assert(nodepairqueue !=
NULL);
4907 hashtablesize = mcfnetwork->
narcs;
4910 hashGetKeyNodepairs, hashKeyEqNodepairs, hashKeyValNodepairs, (
void*) mcfnetwork) );
4917 for( a = 0; a < mcfnetwork->narcs; a++ )
4923 capacityrow = mcfnetwork->arccapacityrows[
a];
4925 SCIPdebugMsg(scip,
"arc %i = (%i %i)\n", a, mcfnetwork->arcsources[a], mcfnetwork->arctargets[a]);
4928 if( mcfnetwork->arcsources[a] <= mcfnetwork->arctargets[a] )
4930 nodepair.node1 = mcfnetwork->arcsources[
a];
4931 nodepair.node2 = mcfnetwork->arctargets[
a];
4935 nodepair.node2 = mcfnetwork->arcsources[
a];
4936 nodepair.node1 = mcfnetwork->arctargets[
a];
4939 assert(nodepair.node1 < mcfnetwork->nnodes);
4940 assert(nodepair.node2 < mcfnetwork->nnodes);
4941 if( nodepair.node1 == -1 || nodepair.node2 == -1 )
4945 if( capacityrow !=
NULL )
4961 slack =
MAX(slack, 0.0);
4964 scale =
ABS(mcfnetwork->arccapacityscales[a])/maxval;
4965 assert(scale > 0.0);
4975 for( i = 0; i < rowlen; i++ )
4982 if(colcommodity[c] >= 0)
4994 SCIPdebugMsg(scip,
"cap arc -- slack:%g -- dual:%g -- flow:%g -- cap:%g \n", scale * slack, dualsol/scale, totalflow * scale, totalcap * scale);
4996 SCIPdebugMsg(scip,
"cap arc -- slack:%g -- dual:%g1\n", scale * slack, dualsol/scale);
5000 nodepair.weight = scale * slack -
ABS(dualsol)/scale;
5001 #ifdef USEFLOWFORTIEBREAKING 5004 nodepair.weight += totalflow * scale;
5005 nodepair.weight =
MIN( nodepair.weight, -0.0001);
5008 #ifdef USECAPACITYFORTIEBREAKING 5011 nodepair.weight += totalcap * scale;
5012 nodepair.weight =
MIN( nodepair.weight, -0.0001);
5027 if( nodepairptr !=
NULL )
5030 SCIPdebugMsg(scip,
"nodepair known [%d,%d] -- old weight:%g -- new weight:%g\n", nodepair.node1,nodepair.node2,nodepairptr->weight,
5031 MIN(nodepair.weight, nodepairptr->weight));
5032 nodepairptr->weight =
MIN(nodepair.weight, nodepairptr->weight);
5037 nodepairs = (*nodepairqueue)->nodepairs;
5039 assert(nnodepairs < mcfnetwork->
narcs);
5040 nodepairs[nnodepairs] = nodepair;
5043 SCIPdebugMsg(scip,
"new nodepair [%d,%d]-- weight:%g\n", nodepair.node1, nodepair.node2, nodepair.weight);
5054 #ifdef BETTERWEIGHTFORDEMANDNODES 5062 nodepairs = (*nodepairqueue)->nodepairs;
5063 for( n = 0; n < nnodepairs; n++ )
5067 maxweight =
MAX(maxweight, nodepairs[n].weight);
5069 minweight =
MIN(minweight, nodepairs[n].weight);
5072 SCIPdebugMsg(scip,
"min/max weight:%g / %g\n", minweight, maxweight);
5079 for( n = 0; n < nnodepairs; n++ )
5081 int node1 = nodepairs[n].node1;
5082 int node2 = nodepairs[n].node2;
5084 #ifdef BETTERWEIGHTFORDEMANDNODES 5091 SCIPdebugMsg(scip,
"nodepair [%d,%d] weight %g\n", node1,node2,nodepairs[n].weight);
5099 if( nodeflowrows[node1][k] ==
NULL )
5102 if( nodeflowscales[node1][k] > 0.0 )
5119 if( nodeflowrows[node2][k] ==
NULL )
5122 if( nodeflowscales[node2][k] > 0.0 )
5144 if( !hasdemand1 || !hasdemand2 )
5145 nodepairs[n].weight += maxweight;
5151 if( hasdemand1 && hasdemand2)
5152 nodepairs[n].weight += minweight;
5155 SCIPdebugMsg(scip,
"nodepair [%d,%d] weight %g\n", node1,node2,nodepairs[n].weight);
5172 assert(nodepairqueue !=
NULL);
5173 assert(*nodepairqueue !=
NULL);
5187 assert(nodepairqueue !=
NULL);
5199 assert(nodepairqueue !=
NULL);
5247 assert(mcfnetwork !=
NULL);
5248 assert(nodepartition !=
NULL);
5249 assert(mcfnetwork->
nnodes >= 1);
5257 (*nodepartition)->nclusters = 0;
5266 nclustersleft = mcfnetwork->
nnodes;
5278 assert(nodepair !=
NULL);
5279 node1 = nodepair->node1;
5280 node2 = nodepair->node2;
5283 assert(node1 >= 0 && node1 < mcfnetwork->
nnodes);
5284 assert(node2 >= 0 && node2 < mcfnetwork->nnodes);
5289 assert(0 <= node1rep && node1rep < mcfnetwork->nnodes);
5290 assert(0 <= node2rep && node2rep < mcfnetwork->nnodes);
5293 if( node1rep == node2rep )
5297 SCIPdebugMsg(scip,
"shrinking nodepair (%d,%d) with weight %g: join representatives %d and %d\n",
5298 node1, node2, weight, node1rep, node2rep);
5304 assert((*nodepartition)->representatives[0] == 0);
5309 if( nclustersleft > nclusters )
5311 for( v = 1; v < mcfnetwork->
nnodes && nclustersleft > nclusters; v++ )
5323 assert(nclustersleft <= nclusters);
5328 for( v = 0; v < mcfnetwork->
nnodes; v++ )
5338 c = (*nodepartition)->nclusters;
5339 (*nodepartition)->nclusters++;
5342 c = (*nodepartition)->nodeclusters[rep];
5343 assert(0 <= c && c < nclusters);
5346 (*nodepartition)->nodeclusters[v] = c;
5352 for( c = 0; c < (*nodepartition)->nclusters; c++ )
5354 (*nodepartition)->clusterbegin[c] = pos;
5355 pos += clustersize[c];
5357 assert(pos == mcfnetwork->
nnodes);
5358 (*nodepartition)->clusterbegin[(*nodepartition)->nclusters] = mcfnetwork->
nnodes;
5362 for( v = 0; v < mcfnetwork->
nnodes; v++ )
5364 c = (*nodepartition)->nodeclusters[v];
5365 assert(0 <= c && c < (*nodepartition)->nclusters);
5366 pos = (*nodepartition)->clusterbegin[c] + clustersize[c];
5367 assert(pos < (*nodepartition)->clusterbegin[c+1]);
5368 (*nodepartition)->clusternodes[pos] = v;
5388 assert(nodepartition !=
NULL);
5389 assert(*nodepartition !=
NULL);
5402 unsigned int partition,
5413 if( nodepartition ==
NULL )
5414 return ((v == (
int)partition) == !inverted);
5418 unsigned int clusterbit;
5420 cluster = nodepartition->nodeclusters[v];
5421 assert(0 <= cluster && cluster < nodepartition->nclusters);
5422 clusterbit = (1 << cluster);
5424 return (((partition & clusterbit) != 0) == !inverted);
5434 unsigned int partition
5437 const int* nodeclusters = nodepartition->nodeclusters;
5447 assert(nodepartition->nodeclusters !=
NULL);
5448 nclusters = nodepartition->nclusters;
5455 ncomponents = nclusters;
5456 assert(ncomponents >= 2);
5459 for( a = 0; a <
narcs; a++ )
5461 int s = arcsources[
a];
5462 int t = arctargets[
a];
5465 if( s == -1 || t == -1 )
5476 assert(0 <= s && s < mcfnetwork->
nnodes);
5477 assert(0 <= t && t < mcfnetwork->nnodes);
5480 cs = nodeclusters[s];
5481 ct = nodeclusters[t];
5482 assert(0 <= cs && cs < nclusters);
5483 assert(0 <= ct && ct < nclusters);
5492 if( repcs == repct )
5499 if( ncomponents <= 2 )
5509 assert(ncomponents >= 2);
5511 return (ncomponents == 2);
5516 void nodepartitionPrint(
5522 for( c = 0; c < nodepartition->nclusters; c++ )
5527 for( i = nodepartition->clusterbegin[c]; i < nodepartition->clusterbegin[c+1]; i++ )
5542 unsigned int partition
5551 if( nodepartition ==
NULL )
5556 file = fopen(filename,
"w");
5564 fprintf(file,
"graph\n");
5565 fprintf(file,
"[\n");
5566 fprintf(file,
" hierarchic 1\n");
5567 fprintf(file,
" label \"\"\n");
5568 fprintf(file,
" directed 1\n");
5571 for( v = 0; v < mcfnetwork->
nnodes; v++ )
5582 fprintf(file,
" node\n");
5583 fprintf(file,
" [\n");
5584 fprintf(file,
" id %d\n", v);
5585 fprintf(file,
" label \"%s\"\n", label);
5586 fprintf(file,
" graphics\n");
5587 fprintf(file,
" [\n");
5588 fprintf(file,
" w 30.0\n");
5589 fprintf(file,
" h 30.0\n");
5590 fprintf(file,
" type \"ellipse\"\n");
5592 fprintf(file,
" fill \"#FF0000\"\n");
5594 fprintf(file,
" fill \"#00FF00\"\n");
5595 fprintf(file,
" outline \"#000000\"\n");
5596 fprintf(file,
" ]\n");
5597 fprintf(file,
" LabelGraphics\n");
5598 fprintf(file,
" [\n");
5599 fprintf(file,
" text \"%s\"\n", label);
5600 fprintf(file,
" fontSize 13\n");
5601 fprintf(file,
" fontName \"Dialog\"\n");
5602 fprintf(file,
" anchor \"c\"\n");
5603 fprintf(file,
" ]\n");
5605 fprintf(file,
" gid %d\n", mcfnetwork->
nnodes+1);
5607 fprintf(file,
" gid %d\n", mcfnetwork->
nnodes+2);
5608 fprintf(file,
" ]\n");
5612 fprintf(file,
" node\n");
5613 fprintf(file,
" [\n");
5614 fprintf(file,
" id %d\n", mcfnetwork->
nnodes);
5615 fprintf(file,
" label \"?\"\n");
5616 fprintf(file,
" graphics\n");
5617 fprintf(file,
" [\n");
5618 fprintf(file,
" w 30.0\n");
5619 fprintf(file,
" h 30.0\n");
5620 fprintf(file,
" type \"ellipse\"\n");
5621 fprintf(file,
" fill \"#FFFFFF\"\n");
5622 fprintf(file,
" outline \"#000000\"\n");
5623 fprintf(file,
" ]\n");
5624 fprintf(file,
" LabelGraphics\n");
5625 fprintf(file,
" [\n");
5626 fprintf(file,
" text \"?\"\n");
5627 fprintf(file,
" fontSize 13\n");
5628 fprintf(file,
" fontName \"Dialog\"\n");
5629 fprintf(file,
" anchor \"c\"\n");
5630 fprintf(file,
" ]\n");
5631 fprintf(file,
" ]\n");
5634 fprintf(file,
" node\n");
5635 fprintf(file,
" [\n");
5636 fprintf(file,
" id %d\n", mcfnetwork->
nnodes+1);
5637 fprintf(file,
" label \"Partition S\"\n");
5638 fprintf(file,
" graphics\n");
5639 fprintf(file,
" [\n");
5640 fprintf(file,
" type \"roundrectangle\"\n");
5641 fprintf(file,
" fill \"#CAECFF84\"\n");
5642 fprintf(file,
" outline \"#666699\"\n");
5643 fprintf(file,
" outlineStyle \"dotted\"\n");
5644 fprintf(file,
" topBorderInset 0\n");
5645 fprintf(file,
" bottomBorderInset 0\n");
5646 fprintf(file,
" leftBorderInset 0\n");
5647 fprintf(file,
" rightBorderInset 0\n");
5648 fprintf(file,
" ]\n");
5649 fprintf(file,
" LabelGraphics\n");
5650 fprintf(file,
" [\n");
5651 fprintf(file,
" text \"Partition S\"\n");
5652 fprintf(file,
" fill \"#99CCFF\"\n");
5653 fprintf(file,
" fontSize 15\n");
5654 fprintf(file,
" fontName \"Dialog\"\n");
5655 fprintf(file,
" alignment \"right\"\n");
5656 fprintf(file,
" autoSizePolicy \"node_width\"\n");
5657 fprintf(file,
" anchor \"t\"\n");
5658 fprintf(file,
" borderDistance 0.0\n");
5659 fprintf(file,
" ]\n");
5660 fprintf(file,
" isGroup 1\n");
5661 fprintf(file,
" ]\n");
5664 fprintf(file,
" node\n");
5665 fprintf(file,
" [\n");
5666 fprintf(file,
" id %d\n", mcfnetwork->
nnodes+2);
5667 fprintf(file,
" label \"Partition T\"\n");
5668 fprintf(file,
" graphics\n");
5669 fprintf(file,
" [\n");
5670 fprintf(file,
" type \"roundrectangle\"\n");
5671 fprintf(file,
" fill \"#CAECFF84\"\n");
5672 fprintf(file,
" outline \"#666699\"\n");
5673 fprintf(file,
" outlineStyle \"dotted\"\n");
5674 fprintf(file,
" topBorderInset 0\n");
5675 fprintf(file,
" bottomBorderInset 0\n");
5676 fprintf(file,
" leftBorderInset 0\n");
5677 fprintf(file,
" rightBorderInset 0\n");
5678 fprintf(file,
" ]\n");
5679 fprintf(file,
" LabelGraphics\n");
5680 fprintf(file,
" [\n");
5681 fprintf(file,
" text \"Partition T\"\n");
5682 fprintf(file,
" fill \"#99CCFF\"\n");
5683 fprintf(file,
" fontSize 15\n");
5684 fprintf(file,
" fontName \"Dialog\"\n");
5685 fprintf(file,
" alignment \"right\"\n");
5686 fprintf(file,
" autoSizePolicy \"node_width\"\n");
5687 fprintf(file,
" anchor \"t\"\n");
5688 fprintf(file,
" borderDistance 0.0\n");
5689 fprintf(file,
" ]\n");
5690 fprintf(file,
" isGroup 1\n");
5691 fprintf(file,
" ]\n");
5694 for( a = 0; a < mcfnetwork->
narcs; a++ )
5706 hasfractional =
FALSE;
5717 for( i = 0; i < rowlen; i++ )
5724 hasfractional =
TRUE;
5732 fprintf(file,
" edge\n");
5733 fprintf(file,
" [\n");
5736 fprintf(file,
" label \"%s\"\n", label);
5737 fprintf(file,
" graphics\n");
5738 fprintf(file,
" [\n");
5740 fprintf(file,
" fill \"#000000\"\n");
5742 fprintf(file,
" fill \"#FF0000\"\n");
5744 fprintf(file,
" style \"dashed\"\n");
5745 fprintf(file,
" width 1\n");
5746 fprintf(file,
" targetArrow \"standard\"\n");
5747 fprintf(file,
" ]\n");
5748 fprintf(file,
" LabelGraphics\n");
5749 fprintf(file,
" [\n");
5750 fprintf(file,
" text \"%s\"\n", label);
5751 fprintf(file,
" ]\n");
5752 fprintf(file,
" ]\n");
5756 fprintf(file,
"]\n");
5791 assert(scip !=
NULL);
5792 assert(sepadata !=
NULL);
5793 assert(cutcoefs !=
NULL);
5794 assert(ncuts !=
NULL);
5795 assert(cutoff !=
NULL);
5799 assert(nvars == 0 || vars !=
NULL);
5805 for( i = 0; i < cutnnz; ++i )
5807 cutvars[i] = vars[cutinds[i]];
5813 sepadata->dynamiccuts) );
5823 SCIPdebugMsg(scip,
" -> found MCF cut <%s>: rhs=%f, act=%f eff=%f rank=%d\n",
5840 if( !(*cutoff) && sepadata->separateknapsack)
5843 SCIP_CALL(
SCIPseparateRelaxedKnapsack(scip,
NULL, sepa, cutnnz, cutvars, cutcoefs, +1.0, cutrhs, sol, cutoff, ncuts) );
5893 unsigned int partition;
5894 unsigned int allpartitions;
5895 unsigned int startpartition;
5909 maxsepacuts = sepadata->maxsepacutsroot;
5911 maxsepacuts = sepadata->maxsepacuts;
5912 if( maxsepacuts < 0 )
5913 maxsepacuts = INT_MAX;
5918 maxtestdelta = sepadata->maxtestdelta;
5919 if( maxtestdelta <= 0 )
5920 maxtestdelta = INT_MAX;
5956 if( nodepartition ==
NULL )
5960 allpartitions = (
unsigned int) nnodes;
5961 SCIPdebugMsg(scip,
"maxtestdelta: %d, maxsepacuts: %d, nnodes: %d \n", maxtestdelta, maxsepacuts, nnodes);
5968 int nclusters = nodepartition->nclusters;
5970 assert((
unsigned int)nclusters <= 8*
sizeof(
unsigned int));
5971 SCIPdebugMsg(scip,
"maxtestdelta: %d, maxsepacuts: %d, nclusters: %d \n", maxtestdelta, maxsepacuts, nclusters);
5978 allpartitions = (1 << (nclusters-1));
5982 for( partition = startpartition; partition <= allpartitions-1 && !
SCIPisStopped(scip) && *ncuts < maxsepacuts && !*cutoff; partition++ )
5996 if( sepadata->checkcutshoreconnectivity )
6003 SCIPdebugMsg(scip,
"generating cluster cuts for partition 0x%x \n", partition );
6004 SCIPdebugMsg(scip,
" -> either shore S or shore T is not connected - skip partition.\n");
6009 for( inverted =
FALSE; inverted <= useinverted && !*cutoff; inverted++ )
6011 if( nodepartition ==
NULL )
6013 SCIPdebugMsg(scip,
"generating single-node cuts for node %u (inverted: %u)\n", partition, inverted);
6017 SCIPdebugMsg(scip,
"generating cluster cuts for partition 0x%x (inverted: %u)\n", partition, inverted);
6021 SCIP_CALL( outputGraph(scip, mcfnetwork, nodepartition, inverted, partition) );
6039 for( v = 0; v <
nnodes; v++ )
6053 if( nodeflowrows[v][k] ==
NULL )
6056 if( nodeflowscales[v][k] > 0.0 )
6060 if( nodeflowinverted[v][k] )
6063 comcutdemands[k] += rhs * nodeflowscales[v][k];
6066 assert (1 <= nnodesinS && nnodesinS <= nnodes-1);
6071 if( sepadata->separatesinglenodecuts && nodepartition !=
NULL && (nnodesinS == 1 || nnodesinS == nnodes-1) )
6073 SCIPdebugMsg(scip,
" -> shore S or T has only one node - skip partition.\n");
6083 SCIPdebugMsg(scip,
" -> commodity %d: directed cutdemand=%g\n", k, comcutdemands[k]);
6093 SCIPdebugMsg(scip,
" -> commodity %d: undirected cutdemand=%g\n", k, comcutdemands[k]);
6098 if( k == ncommodities )
6102 for( a = 0; a <
narcs; a++ )
6111 assert(arcsources[a] < nnodes);
6112 assert(arctargets[a] < nnodes);
6118 if(
nodeInPartition(nodepartition, partition, inverted, arcsources[a]) ||
6128 if(
nodeInPartition(nodepartition, partition, inverted, arcsources[a]) &&
6134 if( !
nodeInPartition(nodepartition, partition, inverted, arcsources[a]) &&
6143 if( arccapacityrows[a] ==
NULL )
6151 assert(rowweights[r] == 0.0);
6157 if( arcsources[a] == -1 || arctargets[a] == -1 )
6167 assert(maxcoef > 0.0);
6172 rowweights[
r] = arccapacityscales[
a];
6173 SCIPdebugMsg(scip,
" -> arc %d, r=%d, capacity row <%s>: weight=%g slack=%g dual=%g\n", a, r,
SCIProwGetName(arccapacityrows[a]), rowweights[r],
6177 if( sepadata->separateflowcutset )
6179 if( rowweights[r] > 0.0 )
6189 for( j = 0; j < rowlen; j++ )
6194 coef = rowvals[j] * arccapacityscales[
a];
6200 k = colcommodity[c];
6202 comdemands[k] = coef;
6216 while( left <= right )
6218 int mid = (left+right)/2;
6220 if(
REALABS( deltas[mid] / coef - 1.0 ) < 1e-03 )
6225 else if( coef < deltas[mid] )
6234 assert(right == left-1);
6235 assert(ndeltas <= deltassize);
6236 if( ndeltas == deltassize )
6241 if( left < ndeltas )
6243 for( d = ndeltas; d > left; d-- )
6244 deltas[d] = deltas[d-1];
6246 deltas[left] = coef;
6248 SCIPdebugMsg(scip,
" -> new capacity %g considered as delta\n", coef);
6255 for( v = 0; v <
nnodes; v++ )
6264 if( comdemands[k] == 0.0 )
6267 scale = comdemands[k];
6290 if( comcutdemands[k] > 0.0 )
6309 if( nodeflowrows[v][k] ==
NULL )
6318 assert(rowweights[r] == 0.0);
6324 rowweights[
r] = scale * nodeflowscales[v][k];
6325 if( nodeflowinverted[v][k] )
6326 rowweights[
r] *= -1.0;
6327 SCIPdebugMsg(scip,
" -> node %d, commodity %d, r=%d, flow row <%s>: scale=%g weight=%g slack=%g dual=%g\n",
6328 v, k, r,
SCIProwGetName(nodeflowrows[v][k]), scale, rowweights[r],
6331 if( sepadata->separateflowcutset )
6333 if( nodeflowscales[v][k] > 0.0 )
6349 if( sepadata->separateflowcutset )
6352 bestdelta = deltas[ndeltas-1];
6362 SCIPdebugMsg(scip,
" -> found %d different deltas to try\n", ndeltas);
6363 for( d = ndeltas-1; d >= 0 && d >= ndeltas-maxtestdelta; d-- )
6377 SCIPdebugMsg(scip,
"applying MIR with delta = %g\n", deltas[d]);
6378 SCIP_CALL(
SCIPcalcMIR(scip, sol,
POSTPROCESS,
BOUNDSWITCH,
USEVBDS, allowlocal, sepadata->fixintegralrhs,
NULL,
NULL,
MINFRAC,
MAXFRAC,
6379 1.0/deltas[d], aggrrow, cutcoefs, &cutrhs, cutinds, &cutnnz, &cutefficacy, &cutrank, &cutislocal, &success) );
6380 assert(allowlocal || !cutislocal);
6388 if( sepadata->separateflowcutset )
6390 if( cutefficacy > bestefficacy )
6392 bestdelta = deltas[d];
6393 bestefficacy = cutefficacy;
6399 SCIPdebugMsg(scip,
"success -> delta = %g -> rhs: %g, efficacy: %g\n", deltas[d], cutrhs, cutefficacy);
6400 SCIP_CALL(
addCut(scip, sepa, sepadata, sol, cutcoefs, cutrhs, cutinds, cutnnz, cutislocal, cutrank, ncuts, cutoff) );
6405 for( a = 0; a <
narcs; a++ )
6407 if( arccapacityrows[a] !=
NULL )
6413 if( r >= 0 && rowweights[r] != 0.0 )
6415 MCFdebugMessage(
" -> arc %d, capacity row <%s>: weight=%g slack=%g prod=%g dual=%g\n", a,
6428 if( sepadata->separateflowcutset && oldncuts == *ncuts && !*cutoff )
6431 f0 =
SCIPfrac(scip, baserhs/bestdelta);
6436 totalviolationdelta = 0.0;
6437 onedivoneminsf0 = 1.0/(1.0 - f0);
6438 for( a = 0; a <
narcs; a++ )
6452 if( arccapacityrows[a] ==
NULL )
6463 if( rowweights[r] == 0.0 )
6478 rowweight = rowweights[
r]/bestdelta;
6483 violationdelta = rowweight * (rowlhs - rowconstant);
6485 violationdelta = rowweight * (rowrhs - rowconstant);
6487 for( j = 0; j < rowlen; j++ )
6495 coef = rowvals[j] * rowweight;
6506 if( colcommodity[c] >= 0 )
6517 mircoef =
SCIPfloor(scip, coef) + (fj - f0)*onedivoneminsf0;
6524 mircoef = coef * onedivoneminsf0;
6529 if( colcommodity[c] >= 0 )
6530 violationdelta += mircoef * solval;
6532 violationdelta -= mircoef * solval;
6537 SCIPdebugMsg(scip,
" -> discarding capacity row <%s> of weight %g and slack %g: increases MIR violation by %g\n",
6540 rowweights[
r] = 0.0;
6541 totalviolationdelta += violationdelta;
6546 if( totalviolationdelta > 0.0 )
6559 SCIPdebugMsg(scip,
"applying MIR with delta = %g to flowcut inequality (violation improvement: %g)\n", bestdelta, totalviolationdelta);
6566 SCIP_CALL(
SCIPcalcMIR(scip, sol,
POSTPROCESS,
BOUNDSWITCH,
USEVBDS, allowlocal, sepadata->fixintegralrhs,
NULL,
NULL,
MINFRAC,
MAXFRAC,
6567 1.0/bestdelta, aggrrow, cutcoefs, &cutrhs, cutinds, &cutnnz, &cutefficacy, &cutrank, &cutislocal, &success) );
6569 assert(allowlocal || !cutislocal);
6573 SCIPdebugMsg(scip,
" -> delta = %g -> rhs: %g, efficacy: %g\n", bestdelta, cutrhs, cutefficacy);
6574 SCIP_CALL(
addCut(scip, sepa, sepadata, sol, cutcoefs, cutrhs, cutinds, cutnnz, cutislocal, cutrank, ncuts, cutoff) );
6617 assert(result !=
NULL);
6630 if( ncols != nvars )
6632 MCFdebugMessage(
"%d variables but %d columns -> exit\n", nvars, ncols );
6645 colrowratio = (
SCIP_Real)ncols/(nrows+1e-9);
6649 assert(sepadata !=
NULL);
6658 if( colrowratio < MINCOLROWRATIO || colrowratio >
MAXCOLROWRATIO )
6667 if( sepadata->nmcfnetworks == -1 )
6675 for( i = 0; i < sepadata->nmcfnetworks; i++ )
6677 MCFdebugMessage(
" -> extracted network %d has %d nodes, %d (%d) arcs (uncapacitated), and %d commodities (modeltype: %s)\n",
6678 i, sepadata->mcfnetworks[i]->nnodes, sepadata->mcfnetworks[i]->narcs, sepadata->mcfnetworks[i]->nuncapacitatedarcs,
6679 sepadata->mcfnetworks[i]->ncommodities,
6681 SCIPdebug( mcfnetworkPrint(sepadata->mcfnetworks[i]) );
6684 #ifdef COUNTNETWORKVARIABLETYPES 6685 SCIP_CALL( printFlowSystemInfo(scip,sepadata->mcfnetworks,sepadata->nmcfnetworks));
6689 assert(sepadata->nmcfnetworks >= 0);
6690 assert(sepadata->mcfnetworks !=
NULL || sepadata->nmcfnetworks == 0);
6691 mcfnetworks = sepadata->mcfnetworks;
6692 nmcfnetworks = sepadata->nmcfnetworks;
6699 sepadata->lastroundsuccess =
FALSE;
6701 for( i = 0; i < nmcfnetworks && !cutoff; i++ )
6707 mcfnetwork = mcfnetworks[i];
6710 assert(mcfnetwork->
nnodes >= 2);
6711 assert(mcfnetwork->
narcs >= 1);
6718 MCFdebugMessage(
"MCF network has %d nodes and %d arcs. arc node ratio %.2f exceed --> exit\n",
6724 if( sepadata->separatesinglenodecuts )
6735 nodepartitionPrint(nodepartition);
6745 MCFdebugMessage(
"MCF network has %d nodes, %d arcs, %d commodities. Found %d MCF network cuts, cutoff = %u.\n",
6752 sepadata->lastroundsuccess =
TRUE;
6754 else if( ncuts > 0 )
6757 sepadata->lastroundsuccess =
TRUE;
6774 assert(scip !=
NULL);
6775 assert(sepa !=
NULL);
6793 assert(sepadata !=
NULL);
6794 assert(sepadata->mcfnetworks ==
NULL);
6795 assert(sepadata->nmcfnetworks == -1);
6813 assert(sepadata !=
NULL);
6815 sepadata->lastroundsuccess =
TRUE;
6832 assert(sepadata !=
NULL);
6835 for( i = 0; i < sepadata->nmcfnetworks; i++ )
6840 sepadata->nmcfnetworks = -1;
6902 sepadata->mcfnetworks =
NULL;
6903 sepadata->nmcfnetworks = -1;
6905 sepadata->lastroundsuccess =
TRUE;
6911 sepaExeclpMcf, sepaExecsolMcf,
6914 assert(sepa !=
NULL);
6925 "separating/mcf/nclusters",
6926 "number of clusters to generate in the shrunken network -- default separation",
6929 "separating/mcf/maxweightrange",
6930 "maximal valid range max(|weights|)/min(|weights|) of row weights",
6933 "separating/mcf/maxtestdelta",
6934 "maximal number of different deltas to try (-1: unlimited) -- default separation",
6937 "separating/mcf/trynegscaling",
6938 "should negative values also be tested in scaling?",
6941 "separating/mcf/fixintegralrhs",
6942 "should an additional variable be complemented if f0 = 0?",
6945 "separating/mcf/dynamiccuts",
6946 "should generated cuts be removed from the LP if they are no longer tight?",
6949 "separating/mcf/modeltype",
6950 "model type of network (0: auto, 1:directed, 2:undirected)",
6953 "separating/mcf/maxsepacuts",
6954 "maximal number of mcf cuts separated per separation round",
6957 "separating/mcf/maxsepacutsroot",
6958 "maximal number of mcf cuts separated per separation round in the root node -- default separation",
6961 "separating/mcf/maxinconsistencyratio",
6962 "maximum inconsistency ratio for separation at all",
6965 "separating/mcf/maxarcinconsistencyratio",
6966 "maximum inconsistency ratio of arcs not to be deleted",
6969 "separating/mcf/checkcutshoreconnectivity",
6970 "should we separate only if the cuts shores are connected?",
6973 "separating/mcf/separatesinglenodecuts",
6974 "should we separate inequalities based on single-node cuts?",
6977 "separating/mcf/separateflowcutset",
6978 "should we separate flowcutset inequalities on the network cuts?",
6981 "separating/mcf/separateknapsack",
6982 "should we separate knapsack cover inequalities on the network cuts?",
enum SCIP_Result SCIP_RESULT
SCIP_Bool SCIPisEQ(SCIP *scip, SCIP_Real val1, SCIP_Real val2)
void * SCIPpqueueRemove(SCIP_PQUEUE *pqueue)
SCIP_RETCODE SCIPgetLPColsData(SCIP *scip, SCIP_COL ***cols, int *ncols)
static SCIP_RETCODE mcfnetworkCreate(SCIP *scip, SCIP_MCFNETWORK **mcfnetwork)
#define DEFAULT_TRYNEGSCALING
SCIP_Bool SCIPisPositive(SCIP *scip, SCIP_Real val)
SCIP_Bool SCIPisStopped(SCIP *scip)
static SCIP_RETCODE extractFlowRows(SCIP *scip, MCFDATA *mcfdata)
static void fixCommoditySigns(SCIP *scip, MCFDATA *mcfdata)
void SCIPpqueueFree(SCIP_PQUEUE **pqueue)
#define SCIPallocBlockMemoryArray(scip, ptr, num)
SCIP_RETCODE SCIPhashtableInsert(SCIP_HASHTABLE *hashtable, void *element)
SCIP_Real SCIProwGetDualsol(SCIP_ROW *row)
public methods for SCIP parameter handling
int SCIProwGetNLPNonz(SCIP_ROW *row)
SCIP_Bool ** nodeflowinverted
SCIP_RETCODE SCIPcaptureRow(SCIP *scip, SCIP_ROW *row)
SCIP_Bool SCIPisGE(SCIP *scip, SCIP_Real val1, SCIP_Real val2)
int SCIPgetNLPRows(SCIP *scip)
void * SCIPpqueueFirst(SCIP_PQUEUE *pqueue)
#define SCIPfreeMemoryArrayNull(scip, ptr)
public methods for memory management
static SCIP_RETCODE nodepairqueueCreate(SCIP *scip, SCIP_MCFNETWORK *mcfnetwork, NODEPAIRQUEUE **nodepairqueue)
static SCIP_RETCODE identifySourcesTargets(SCIP *scip, MCFDATA *mcfdata, SCIP_SEPADATA *sepadata, MCFEFFORTLEVEL *effortlevel)
SCIP_Real * SCIPcolGetVals(SCIP_COL *col)
void * SCIPhashtableRetrieve(SCIP_HASHTABLE *hashtable, void *key)
SCIP_Bool SCIPcolIsIntegral(SCIP_COL *col)
SCIP_EXPORT SCIP_Real SCIPvarGetLPSol(SCIP_VAR *var)
#define SCIPallocMemoryArray(scip, ptr, num)
SCIP_Real SCIPgetSolVal(SCIP *scip, SCIP_SOL *sol, SCIP_VAR *var)
static SCIP_RETCODE extractFlow(SCIP *scip, MCFDATA *mcfdata, SCIP_Real maxflowvarflowrowratio, SCIP_Bool *failed)
int SCIPgetNLPCols(SCIP *scip)
static SCIP_RETCODE extractCapacities(SCIP *scip, MCFDATA *mcfdata)
int SCIPgetNLPBranchCands(SCIP *scip)
#define SEPA_MAXBOUNDDIST
static SCIP_RETCODE identifyComponent(SCIP *scip, MCFDATA *mcfdata, int *nodevisited, int startv, int *compnodes, int *ncompnodes, int *comparcs, int *ncomparcs)
#define DEFAULT_MODELTYPE
struct nodepairqueue NODEPAIRQUEUE
SCIP_Real SCIProwGetConstant(SCIP_ROW *row)
int SCIPgetNVars(SCIP *scip)
#define DEFAULT_MAXINCONSISTENCYRATIO
static SCIP_RETCODE nodepartitionCreate(SCIP *scip, SCIP_MCFNETWORK *mcfnetwork, NODEPARTITION **nodepartition, int nclusters)
static void nodepairqueueFree(SCIP *scip, NODEPAIRQUEUE **nodepairqueue)
SCIP_RETCODE SCIPseparateRelaxedKnapsack(SCIP *scip, SCIP_CONS *cons, SCIP_SEPA *sepa, int nknapvars, SCIP_VAR **knapvars, SCIP_Real *knapvals, SCIP_Real valscale, SCIP_Real rhs, SCIP_SOL *sol, SCIP_Bool *cutoff, int *ncuts)
SCIP_RETCODE SCIPincludeSepaMcf(SCIP *scip)
SCIP_ROW ** SCIPcolGetRows(SCIP_COL *col)
methods for the aggregation rows
int SCIProwGetRank(SCIP_ROW *row)
SCIP_EXPORT SCIP_VARTYPE SCIPvarGetType(SCIP_VAR *var)
enum SCIP_Retcode SCIP_RETCODE
static SCIP_DECL_SORTINDCOMP(compCands)
void SCIPaggrRowFree(SCIP *scip, SCIP_AGGRROW **aggrrow)
static SCIP_DECL_HASHKEYVAL(hashKeyValNodepairs)
public methods for problem variables
#define DEFAULT_FIXINTEGRALRHS
SCIP_RETCODE SCIPsetSepaCopy(SCIP *scip, SCIP_SEPA *sepa, SCIP_DECL_SEPACOPY((*sepacopy)))
SCIP_RETCODE SCIPaddBoolParam(SCIP *scip, const char *name, const char *desc, SCIP_Bool *valueptr, SCIP_Bool isadvanced, SCIP_Bool defaultvalue, SCIP_DECL_PARAMCHGD((*paramchgd)), SCIP_PARAMDATA *paramdata)
static SCIP_DECL_SORTPTRCOMP(compNodepairs)
static SCIP_RETCODE getNodeSimilarityScore(SCIP *scip, MCFDATA *mcfdata, int baserowlen, int *basearcpattern, int basenposuncap, int basenneguncap, SCIP_ROW *row, SCIP_Real *score, SCIP_Bool *invertcommodity)
SCIP_Real SCIPceil(SCIP *scip, SCIP_Real val)
#define SCIPfreeBlockMemory(scip, ptr)
#define DEFAULT_CHECKCUTSHORECONNECTIVITY
static NODEPAIRENTRY * nodepairqueueRemove(NODEPAIRQUEUE *nodepairqueue)
int SCIProwGetLPPos(SCIP_ROW *row)
SCIP_MCFMODELTYPE modeltype
#define SCIPfreeBufferArray(scip, ptr)
static SCIP_RETCODE separateCuts(SCIP *scip, SCIP_SEPA *sepa, SCIP_SOL *sol, SCIP_Bool allowlocal, SCIP_RESULT *result)
#define SCIPallocBlockMemory(scip, ptr)
SCIP_Real SCIPgetRowSolFeasibility(SCIP *scip, SCIP_ROW *row, SCIP_SOL *sol)
public methods for separator plugins
SCIP_Bool SCIProwIsModifiable(SCIP_ROW *row)
SCIP_Bool SCIPisFeasIntegral(SCIP *scip, SCIP_Real val)
static SCIP_RETCODE mcfnetworkExtract(SCIP *scip, SCIP_SEPADATA *sepadata, SCIP_MCFNETWORK ***mcfnetworks, int *nmcfnetworks, MCFEFFORTLEVEL *effortlevel)
SCIP_RETCODE SCIPaggrRowCreate(SCIP *scip, SCIP_AGGRROW **aggrrow)
SCIP_LPSOLSTAT SCIPgetLPSolstat(SCIP *scip)
#define MAXFLOWCANDDENSITY
SCIP_Bool SCIPisInfinity(SCIP *scip, SCIP_Real val)
SCIP_Real SCIPgetCutEfficacy(SCIP *scip, SCIP_SOL *sol, SCIP_ROW *cut)
SCIP_ROW ** SCIPgetLPRows(SCIP *scip)
public methods for numerical tolerances
SCIP_RETCODE SCIPhashtableCreate(SCIP_HASHTABLE **hashtable, BMS_BLKMEM *blkmem, int tablesize, SCIP_DECL_HASHGETKEY((*hashgetkey)), SCIP_DECL_HASHKEYEQ((*hashkeyeq)), SCIP_DECL_HASHKEYVAL((*hashkeyval)), void *userptr)
SCIP_Longint SCIPgetNLPs(SCIP *scip)
public methods for querying solving statistics
static SCIP_RETCODE findUncapacitatedArcs(SCIP *scip, MCFDATA *mcfdata)
public methods for the branch-and-bound tree
#define MAXFLOWVARFLOWROWRATIO
#define DEFAULT_MAXTESTDELTA
#define DEFAULT_SEPARATEFLOWCUTSET
static void getIncidentNodes(SCIP *scip, MCFDATA *mcfdata, SCIP_COL *col, int *sourcenode, int *targetnode)
Constraint handler for knapsack constraints of the form , x binary and .
static SCIP_DECL_SEPACOPY(sepaCopyMcf)
SCIP_EXPORT const char * SCIPvarGetName(SCIP_VAR *var)
SCIP_RETCODE SCIPaggrRowSumRows(SCIP *scip, SCIP_AGGRROW *aggrrow, SCIP_Real *weights, int *rowinds, int nrowinds, SCIP_Bool sidetypebasis, SCIP_Bool allowlocal, int negslack, int maxaggrlen, SCIP_Bool *valid)
#define MAXAGGRLEN(nvars)
SCIP_EXPORT SCIP_Bool SCIPvarIsIntegral(SCIP_VAR *var)
SCIP_COL ** SCIProwGetCols(SCIP_ROW *row)
static void unionfindJoinSets(int *representatives, int rep1, int rep2)
#define DEFAULT_MAXSEPACUTSROOT
SCIP_RETCODE SCIPgetLPRowsData(SCIP *scip, SCIP_ROW ***rows, int *nrows)
static SCIP_Bool nodeInPartition(NODEPARTITION *nodepartition, unsigned int partition, SCIP_Bool inverted, int v)
SCIP_RETCODE SCIPreleaseRow(SCIP *scip, SCIP_ROW **row)
static void nodepartitionJoin(NODEPARTITION *nodepartition, int rep1, int rep2)
static SCIP_RETCODE createNewArc(SCIP *scip, MCFDATA *mcfdata, int source, int target, int *newarcid)
#define SCIPallocBuffer(scip, ptr)
BMS_BLKMEM * SCIPblkmem(SCIP *scip)
static int nodepartitionIsConnected(SCIP *scip, SCIP_MCFNETWORK *mcfnetwork, NODEPARTITION *nodepartition, unsigned int partition)
SCIP_Real * SCIProwGetVals(SCIP_ROW *row)
#define SCIPreallocMemoryArray(scip, ptr, newnum)
SCIP_Bool SCIPisZero(SCIP *scip, SCIP_Real val)
int SCIPcolGetNLPNonz(SCIP_COL *col)
#define DEFAULT_MAXSEPACUTS
static SCIP_RETCODE cleanupNetwork(SCIP *scip, MCFDATA *mcfdata)
enum McfEffortLevel MCFEFFORTLEVEL
SCIP_Real SCIPcolGetPrimsol(SCIP_COL *col)
SCIP_EXPORT SCIP_SEPADATA * SCIPsepaGetData(SCIP_SEPA *sepa)
SCIP_EXPORT const char * SCIPsepaGetName(SCIP_SEPA *sepa)
#define DEFAULT_MAXWEIGHTRANGE
static SCIP_RETCODE mcfnetworkFill(SCIP *scip, SCIP_MCFNETWORK *mcfnetwork, MCFDATA *mcfdata, int *compnodeid, int *compnodes, int ncompnodes, int *comparcs, int ncomparcs)
SCIP_RETCODE SCIPpqueueCreate(SCIP_PQUEUE **pqueue, int initsize, SCIP_Real sizefac, SCIP_DECL_SORTPTRCOMP((*ptrcomp)))
SCIP_Bool SCIPisFeasZero(SCIP *scip, SCIP_Real val)
static void collectIncidentFlowCols(SCIP *scip, MCFDATA *mcfdata, SCIP_ROW *flowrow, int basecommodity)
#define SCIPallocBufferArray(scip, ptr, num)
SCIP_Real SCIPinfinity(SCIP *scip)
public data structures and miscellaneous methods
struct nodepair NODEPAIRENTRY
multi-commodity-flow network cut separator
void SCIPhashtableFree(SCIP_HASHTABLE **hashtable)
int SCIPgetDepth(SCIP *scip)
#define DEFAULT_NCLUSTERS
SCIP_EXPORT void SCIPsortIntInt(int *intarray1, int *intarray2, int len)
SCIP_RETCODE SCIPincludeSepaBasic(SCIP *scip, SCIP_SEPA **sepa, const char *name, const char *desc, int priority, int freq, SCIP_Real maxbounddist, SCIP_Bool usessubscip, SCIP_Bool delay, SCIP_DECL_SEPAEXECLP((*sepaexeclp)), SCIP_DECL_SEPAEXECSOL((*sepaexecsol)), SCIP_SEPADATA *sepadata)
SCIP_EXPORT SCIP_Real SCIPvarGetUbGlobal(SCIP_VAR *var)
enum SCIP_McfModeltype SCIP_MCFMODELTYPE
static SCIP_DECL_HASHKEYEQ(hashKeyEqNodepairs)
static SCIP_DECL_SEPAEXITSOL(sepaExitsolMcf)
SCIP_Real SCIProwGetLhs(SCIP_ROW *row)
SCIP_ROW ** arccapacityrows
public methods for LP management
SCIP_Bool SCIPisNegative(SCIP *scip, SCIP_Real val)
SCIP_RETCODE SCIPsetSepaInitsol(SCIP *scip, SCIP_SEPA *sepa, SCIP_DECL_SEPAINITSOL((*sepainitsol)))
public methods for cuts and aggregation rows
SCIP_Bool SCIPisCutEfficacious(SCIP *scip, SCIP_SOL *sol, SCIP_ROW *cut)
void SCIProwChgRank(SCIP_ROW *row, int rank)
static void deleteCommodity(SCIP *scip, MCFDATA *mcfdata, int k, SCIP_ROW **comrows, int nrows, int *ndelflowrows, int *ndelflowvars)
#define UNCAPACITATEDARCSTRESHOLD
SCIP_RETCODE SCIPaddRealParam(SCIP *scip, const char *name, const char *desc, SCIP_Real *valueptr, SCIP_Bool isadvanced, SCIP_Real defaultvalue, SCIP_Real minvalue, SCIP_Real maxvalue, SCIP_DECL_PARAMCHGD((*paramchgd)), SCIP_PARAMDATA *paramdata)
SCIP_VAR * SCIPcolGetVar(SCIP_COL *col)
public methods for the LP relaxation, rows and columns
static void getNextFlowrow(SCIP *scip, MCFDATA *mcfdata, SCIP_ROW **nextrow, unsigned char *nextrowsign, SCIP_Bool *nextinvertcommodity)
#define HASHSIZE_NODEPAIRS
#define SCIPfreeMemory(scip, ptr)
SCIP_Real SCIPfloor(SCIP *scip, SCIP_Real val)
static SCIP_RETCODE mcfnetworkFree(SCIP *scip, SCIP_MCFNETWORK **mcfnetwork)
methods for sorting joint arrays of various types
public methods for branching rule plugins and branching
SCIP_EXPORT SCIP_Bool SCIPsepaWasLPDelayed(SCIP_SEPA *sepa)
SCIP_RETCODE SCIPaddRow(SCIP *scip, SCIP_ROW *row, SCIP_Bool forcecut, SCIP_Bool *infeasible)
#define DEFAULT_MAXARCINCONSISTENCYRATIO
#define SCIPfreeBuffer(scip, ptr)
#define DEFAULT_SEPARATEKNAPSACK
SCIP_Bool SCIPisFeasGT(SCIP *scip, SCIP_Real val1, SCIP_Real val2)
public methods for solutions
static int nodepartitionGetRepresentative(NODEPARTITION *nodepartition, int v)
#define DEFAULT_SEPARATESINGLENODECUTS
SCIP_EXPORT SCIP_Real SCIPvarGetLbGlobal(SCIP_VAR *var)
SCIP_EXPORT void SCIPsortInd(int *indarray, SCIP_DECL_SORTINDCOMP((*indcomp)), void *dataptr, int len)
static SCIP_RETCODE addCut(SCIP *scip, SCIP_SEPA *sepa, SCIP_SEPADATA *sepadata, SCIP_SOL *sol, SCIP_Real *cutcoefs, SCIP_Real cutrhs, int *cutinds, int cutnnz, SCIP_Bool cutislocal, int cutrank, int *ncuts, SCIP_Bool *cutoff)
public methods for message output
SCIP_RETCODE SCIPgetVarsData(SCIP *scip, SCIP_VAR ***vars, int *nvars, int *nbinvars, int *nintvars, int *nimplvars, int *ncontvars)
int SCIPsnprintf(char *t, int len, const char *s,...)
SCIP_RETCODE SCIPaddIntParam(SCIP *scip, const char *name, const char *desc, int *valueptr, SCIP_Bool isadvanced, int defaultvalue, int minvalue, int maxvalue, SCIP_DECL_PARAMCHGD((*paramchgd)), SCIP_PARAMDATA *paramdata)
SCIP_Real ** nodeflowscales
static SCIP_RETCODE extractCapacityRows(SCIP *scip, MCFDATA *mcfdata)
const char * SCIProwGetName(SCIP_ROW *row)
#define MINCOMNODESFRACTION
public methods for message handling
static SCIP_DECL_SEPAEXECSOL(sepaExecsolMcf)
SCIP_Real SCIPgetRowLPFeasibility(SCIP *scip, SCIP_ROW *row)
static void getFlowrowFit(SCIP *scip, MCFDATA *mcfdata, SCIP_ROW *row, int k, unsigned char *rowsign, SCIP_Bool *invertcommodity)
SCIP_Real SCIPfrac(SCIP *scip, SCIP_Real val)
static SCIP_DECL_SEPAINITSOL(sepaInitsolMcf)
SCIP_Real SCIPgetRowFeasibility(SCIP *scip, SCIP_ROW *row)
SCIP_COL ** SCIPgetLPCols(SCIP *scip)
#define SCIPallocMemory(scip, ptr)
SCIP_RETCODE SCIPsetSepaExitsol(SCIP *scip, SCIP_SEPA *sepa, SCIP_DECL_SEPAEXITSOL((*sepaexitsol)))
static SCIP_DECL_SEPAEXECLP(sepaExeclpMcf)
SCIP_ROW *** nodeflowrows
SCIP_Real * arccapacityscales
SCIP_EXPORT void SCIPsepaSetData(SCIP_SEPA *sepa, SCIP_SEPADATA *sepadata)
SCIP_RETCODE SCIPaddPoolCut(SCIP *scip, SCIP_ROW *row)
#define SCIPfreeBlockMemoryArrayNull(scip, ptr, num)
SCIP_Real SCIProwGetRhs(SCIP_ROW *row)
static SCIP_Bool nodepairqueueIsEmpty(NODEPAIRQUEUE *nodepairqueue)
SCIP_Real SCIPgetRowMaxCoef(SCIP *scip, SCIP_ROW *row)
public methods for separators
#define BMSclearMemoryArray(ptr, num)
SCIP_RETCODE SCIPaddVarsToRow(SCIP *scip, SCIP_ROW *row, int nvars, SCIP_VAR **vars, SCIP_Real *vals)
void SCIPinfoMessage(SCIP *scip, FILE *file, const char *formatstr,...)
SCIP_RETCODE SCIPsetSepaFree(SCIP *scip, SCIP_SEPA *sepa, SCIP_DECL_SEPAFREE((*sepafree)))
SCIP_RETCODE SCIPcalcMIR(SCIP *scip, SCIP_SOL *sol, SCIP_Bool postprocess, SCIP_Real boundswitch, SCIP_Bool usevbds, SCIP_Bool allowlocal, SCIP_Bool fixintegralrhs, int *boundsfortrans, SCIP_BOUNDTYPE *boundtypesfortrans, SCIP_Real minfrac, SCIP_Real maxfrac, SCIP_Real scale, SCIP_AGGRROW *aggrrow, SCIP_Real *cutcoefs, SCIP_Real *cutrhs, int *cutinds, int *cutnnz, SCIP_Real *cutefficacy, int *cutrank, SCIP_Bool *cutislocal, SCIP_Bool *success)
static void unionfindInitSets(int *representatives, int nelems)
static void invertCommodity(SCIP *scip, MCFDATA *mcfdata, int k, SCIP_ROW **comrows, int ncomrows, int *comcolids, int ncomcolids)
#define DEFAULT_DYNAMICCUTS
static SCIP_RETCODE generateClusterCuts(SCIP *scip, SCIP_SEPA *sepa, SCIP_SEPADATA *sepadata, SCIP_SOL *sol, SCIP_Bool allowlocal, SCIP_MCFNETWORK *mcfnetwork, NODEPARTITION *nodepartition, int *ncuts, SCIP_Bool *cutoff)
static int unionfindGetRepresentative(int *representatives, int v)
static void addFlowrowToCommodity(SCIP *scip, MCFDATA *mcfdata, SCIP_ROW *row, unsigned char rowsign, int *comcolids, int *ncomcolids)
public methods for global and local (sub)problems
static SCIP_DECL_HASHGETKEY(hashGetKeyNodepairs)
SCIP_Bool SCIPisEfficacious(SCIP *scip, SCIP_Real efficacy)
static SCIP_RETCODE extractNodes(SCIP *scip, MCFDATA *mcfdata)
struct nodepartition NODEPARTITION
static SCIP_DECL_SEPAFREE(sepaFreeMcf)
struct SCIP_SepaData SCIP_SEPADATA
int SCIPcolGetLPPos(SCIP_COL *col)
SCIP_RETCODE SCIPcreateEmptyRowSepa(SCIP *scip, SCIP_ROW **row, SCIP_SEPA *sepa, const char *name, SCIP_Real lhs, SCIP_Real rhs, SCIP_Bool local, SCIP_Bool modifiable, SCIP_Bool removable)
static void nodepartitionFree(SCIP *scip, NODEPARTITION **nodepartition)
SCIP_Bool SCIPisFeasPositive(SCIP *scip, SCIP_Real val)
static SCIP_RETCODE createNewCommodity(SCIP *scip, MCFDATA *mcfdata)
#define SCIPreallocBufferArray(scip, ptr, num)
SCIP_Real SCIPgetRowSolActivity(SCIP *scip, SCIP_ROW *row, SCIP_SOL *sol)
SCIP_RETCODE SCIPpqueueInsert(SCIP_PQUEUE *pqueue, void *elem)
memory allocation routines