Home
last modified time | relevance | path

Searched refs:maxsepacutsroot (Results 1 – 13 of 13) sorted by relevance

/dports/math/SCIP/scip-7.0.3/src/scip/
H A Dsepa_strongcg.c83 …int maxsepacutsroot; /**< maximal number of strong CG cuts separated per sepa… member
315 maxsepacuts = sepadata->maxsepacutsroot; in SCIP_DECL_SEPAEXECLP()
510 &sepadata->maxsepacutsroot, FALSE, DEFAULT_MAXSEPACUTSROOT, 0, INT_MAX, NULL, NULL) ); in SCIPincludeSepaStrongcg()
H A Dsepa_gomory.c114 …int maxsepacutsroot; /**< maximal number of gomory cuts separated per separat… member
426 maxsepacuts = sepadata->maxsepacutsroot; in SCIP_DECL_SEPAEXECLP()
652 &sepadata->maxsepacutsroot, FALSE, DEFAULT_MAXSEPACUTSROOT, 0, INT_MAX, NULL, NULL) ); in SCIPincludeSepaGomory()
H A Dsepa_aggregation.c142 …int maxsepacutsroot; /**< maximal number of cmir cuts separated per separatio… member
1173 maxsepacuts = sepadata->maxsepacutsroot; in separateCuts()
1521 &sepadata->maxsepacutsroot, FALSE, DEFAULT_MAXSEPACUTSROOT, 0, INT_MAX, NULL, NULL) ); in SCIPincludeSepaAggregation()
H A Dsepa_zerohalf.c189 …int maxsepacutsroot; /**< maximal number of zerohalf cuts separated per separ… member
2190 maxsepacuts = depth == 0 ? sepadata->maxsepacutsroot : sepadata->maxsepacuts; in doSeparation()
2465 &sepadata->maxsepacutsroot, FALSE, DEFAULT_MAXSEPACUTSROOT, 0, INT_MAX, NULL, NULL) ); in SCIPincludeSepaZerohalf()
H A Dsepa_eccuts.c148 …int maxsepacutsroot; /**< maximal number of e.c. cuts separated per separatio… member
2637 nmaxcuts = SCIPgetDepth(scip) == 0 ? sepadata->maxsepacutsroot : sepadata->maxsepacuts; in separateCuts()
2864 &sepadata->maxsepacutsroot, FALSE, DEFAULT_MAXSEPACUTSROOT, 0, INT_MAX, NULL, NULL) ); in SCIPincludeSepaEccuts()
H A Dsepa_oddcycle.c198 …int maxsepacutsroot; /**< max. number of oddcycle cuts separated per separati… member
3585 sepadata->maxsepacutsround = sepadata->maxsepacutsroot; in separateOddCycles()
3764 &sepadata->maxsepacutsroot, FALSE, DEFAULT_MAXSEPACUTSROOT, 0, INT_MAX, NULL, NULL) ); in SCIPincludeSepaOddcycle()
H A Dsepa_mcf.c196 …int maxsepacutsroot; /**< maximal number of cmir cuts separated per separatio… member
5922 maxsepacuts = sepadata->maxsepacutsroot; in generateClusterCuts()
6972 &sepadata->maxsepacutsroot, FALSE, DEFAULT_MAXSEPACUTSROOT, -1, INT_MAX, NULL, NULL) ); in SCIPincludeSepaMcf()
H A Dcons_knapsack.c188 …int maxsepacutsroot; /**< maximal number of cuts separated per separation rou… member
11784 maxncuts = (SCIPgetDepth(scip) == 0 ? conshdlrdata->maxsepacutsroot : conshdlrdata->maxsepacuts); in enforceConstraint()
12277 maxsepacuts = (depth == 0 ? conshdlrdata->maxsepacutsroot : conshdlrdata->maxsepacuts); in SCIP_DECL_CONSSEPALP()
12338 maxsepacuts = (depth == 0 ? conshdlrdata->maxsepacutsroot : conshdlrdata->maxsepacuts); in SCIP_DECL_CONSSEPASOL()
13372 &conshdlrdata->maxsepacutsroot, FALSE, DEFAULT_MAXSEPACUTSROOT, 0, INT_MAX, NULL, NULL) ); in SCIPincludeConshdlrKnapsack()
H A Dcons_indicator.c375 …int maxsepacutsroot; /**< maximal number of cuts separated per separation rou… member
4706 maxsepacuts = conshdlrdata->maxsepacutsroot; in separateIndicators()
7307 &conshdlrdata->maxsepacutsroot, FALSE, DEFAULT_MAXSEPACUTSROOT, 0, INT_MAX, NULL, NULL) ); in SCIPincludeConshdlrIndicator()
H A Dcons_linear.c286 …int maxsepacutsroot; /**< maximal number of cuts separated per separation rou… member
15869 maxsepacuts = (depth == 0 ? conshdlrdata->maxsepacutsroot : conshdlrdata->maxsepacuts); in SCIP_DECL_CONSSEPALP()
15935 maxsepacuts = (depth == 0 ? conshdlrdata->maxsepacutsroot : conshdlrdata->maxsepacuts); in SCIP_DECL_CONSSEPASOL()
17570 &conshdlrdata->maxsepacutsroot, FALSE, DEFAULT_MAXSEPACUTSROOT, 0, INT_MAX, NULL, NULL) ); in SCIPincludeConshdlrLinear()
/dports/math/SCIP/scip-7.0.3/examples/GMI/src/
H A Dsepa_gmi.c101 …int maxsepacutsroot; /**< maximal number of GMI cuts separated per separation… member
648 maxsepacuts = sepadata->maxsepacutsroot; in SCIP_DECL_SEPAEXECLP()
854 &sepadata->maxsepacutsroot, FALSE, DEFAULT_MAXSEPACUTSROOT, -1, INT_MAX, NULL, NULL) ); in SCIPincludeSepaGMI()
/dports/math/SCIP/scip-7.0.3/applications/STP/src/
H A Dcons_stp.c145 …int maxsepacutsroot; /**< maximal number of cuts separated per separation rou… member
1341 maxcuts = atrootnode ? conshdlrdata->maxsepacutsroot : conshdlrdata->maxsepacuts; in SCIP_DECL_CONSSEPALP()
1628 &conshdlrdata->maxsepacutsroot, FALSE, DEFAULT_MAXSEPACUTSROOT, 0, INT_MAX, NULL, NULL) ); in SCIPincludeConshdlrStp()
/dports/math/SCIP/scip-7.0.3/
H A DCHANGELOG3935 - `constraints/indicator/{maxsepacuts,maxsepacutsroot}` to restrict the number of separated cuts
4544 - changed default value of parameter `separating/gomory/maxsepacutsroot` to 50