Home
last modified time | relevance | path

Searched refs:nmaxcliquenodes (Results 1 – 4 of 4) sorted by relevance

/dports/math/SCIP/scip-7.0.3/src/tclique/
H A Dtclique_branch.c442 …int* nmaxcliquenodes, /**< pointer to store number of nodes in the maximum wei… in newSolution() argument
453 assert(nmaxcliquenodes != NULL); in newSolution()
516 *nmaxcliquenodes = ncurcliquenodes; in newSolution()
730 …int* nmaxcliquenodes, /**< pointer to store number of nodes in the maximum wei… in branch() argument
936 maxcliquenodes, nmaxcliquenodes, maxcliqueweight, in branch()
973 maxcliquenodes, nmaxcliquenodes, maxcliqueweight, &stopsolving); in branch()
1010 …int* nmaxcliquenodes, /**< pointer to store number of nodes in the maximum wei… in tcliqueMaxClique() argument
1044 assert(nmaxcliquenodes != NULL); in tcliqueMaxClique()
1083 *nmaxcliquenodes = 0; in tcliqueMaxClique()
1114 maxcliquenodes, nmaxcliquenodes, maxcliqueweight, in tcliqueMaxClique()
H A Dtclique.h276 …int* nmaxcliquenodes, /**< pointer to store number of nodes in the maximum wei…
/dports/math/SCIP/scip-7.0.3/applications/Coloring/src/
H A Dprobdata_coloring.c96 int nmaxcliquenodes; /* number of nodes in the maximum weight clique */ in preprocessGraph() local
179 &nmaxcliquenodes, &maxcliqueweight, 0, 0, 50000, 0, INT_MAX, -1, NULL, &status); in preprocessGraph()
181 printf("size of the maximum clique: %d%c \n", nmaxcliquenodes, opt); in preprocessGraph()
205 if ( (degrees[i] < nmaxcliquenodes ) in preprocessGraph()
206 … && (!COLORprobIsNodeInArray(probdata->new2oldnode[i], maxcliquenodes, nmaxcliquenodes)) ) in preprocessGraph()
302 … if ( (!COLORprobIsNodeInArray(probdata->new2oldnode[i], maxcliquenodes, nmaxcliquenodes)) ) in preprocessGraph()
/dports/math/SCIP/scip-7.0.3/src/scip/
H A Dsepa_eccuts.c1183 int nmaxcliquenodes; in searchEcAggrWithCliques() local
1214 … maxcliquenodes, &nmaxcliquenodes, &maxcliqueweight, CLIQUE_MAXFIRSTNODEWEIGHT, CLIQUE_MINWEIGHT, in searchEcAggrWithCliques()
1217 if( status != TCLIQUE_OPTIMAL || nmaxcliquenodes < sepadata->minaggrsize ) in searchEcAggrWithCliques()
1221 aggrsize = MIN(sepadata->maxaggrsize, nmaxcliquenodes); in searchEcAggrWithCliques()