Home
last modified time | relevance | path

Searched refs:sepafreq (Results 1 – 15 of 15) sorted by relevance

/dports/math/SCIP/scip-7.0.3/check/coverage/settings/
H A Dpresolving_separating_heuristics_off_randombranching.set6 constraints/or/sepafreq = 1
/dports/math/SCIP/scip-7.0.3/src/objscip/
H A Dobjconshdlr.h105 …int sepafreq, /**< frequency for separating cuts; zero means to separate … in ObjConshdlr() argument
122 scip_sepafreq_(sepafreq), in ObjConshdlr()
/dports/math/SCIP/scip-7.0.3/examples/LOP/settings/
H A Ddefault.set27 constraints/lop/sepafreq = 1
/dports/math/SCIP/scip-7.0.3/examples/TSP/
H A Dsciptsp.set5 constraints/logicor/sepafreq = 10
/dports/math/SCIP/scip-7.0.3/src/scip/
H A Dscip_cons.h90 …int sepafreq, /**< frequency for separating cuts; zero means to separa…
186 …int sepafreq, /**< frequency for separating cuts; zero means to separa…
H A Dstruct_cons.h208 …int sepafreq; /**< frequency for separating cuts; zero means to separa… member
H A Dcons.c2050 assert(conssepalp != NULL || conssepasol != NULL || sepafreq == -1); in doConshdlrCreate()
2077 (*conshdlr)->sepafreq = sepafreq; in doConshdlrCreate()
2225 &(*conshdlr)->sepafreq, FALSE, sepafreq, -1, SCIP_MAXTREEDEPTH, NULL, NULL) ); in doConshdlrCreate()
2325 assert(conssepalp != NULL || conssepasol != NULL || sepafreq == -1); in SCIPconshdlrCreate()
2878 && ((depth == 0 && conshdlr->sepafreq == 0) in SCIPconshdlrSeparateLP()
2879 || (conshdlr->sepafreq > 0 && depth % conshdlr->sepafreq == 0) in SCIPconshdlrSeparateLP()
3034 && ((depth == 0 && conshdlr->sepafreq == 0) in SCIPconshdlrSeparateSol()
3035 || (conshdlr->sepafreq > 0 && depth % conshdlr->sepafreq == 0) in SCIPconshdlrSeparateSol()
4217 assert(conssepalp != NULL || conssepasol != NULL || sepafreq == -1); in SCIPconshdlrSetSepa()
4221 conshdlr->sepafreq = sepafreq; in SCIPconshdlrSetSepa()
[all …]
H A Dscip_cons.c80 …int sepafreq, /**< frequency for separating cuts; zero means to separa… in SCIPincludeConshdlr() argument
137 … name, desc, sepapriority, enfopriority, chckpriority, sepafreq, propfreq, eagerfreq, maxprerounds, in SCIPincludeConshdlr()
225 …int sepafreq, /**< frequency for separating cuts; zero means to separa… in SCIPsetConshdlrSepa() argument
240 SCIPconshdlrSetSepa(conshdlr, conssepalp, conssepasol, sepafreq, sepapriority, delaysepa); in SCIPsetConshdlrSepa()
249 SCIP_CALL( SCIPsetSetDefaultIntParam(scip->set, paramname, sepafreq) ); in SCIPsetConshdlrSepa()
H A Dpub_cons.h92 …int sepafreq, /**< frequency for separating cuts; zero means to separa…
H A Dcons.h78 …int sepafreq, /**< frequency for separating cuts; zero means to separa…
H A Dcons_knapsack.c12240 int sepafreq; in SCIP_DECL_CONSSEPALP() local
12263 sepafreq = SCIPconshdlrGetSepaFreq(conshdlr); in SCIP_DECL_CONSSEPALP()
12264 sepacardfreq = sepafreq * conshdlrdata->sepacardfreq; in SCIP_DECL_CONSSEPALP()
12309 int sepafreq; in SCIP_DECL_CONSSEPASOL() local
12332 sepafreq = SCIPconshdlrGetSepaFreq(conshdlr); in SCIP_DECL_CONSSEPASOL()
12333 sepacardfreq = sepafreq * conshdlrdata->sepacardfreq; in SCIP_DECL_CONSSEPASOL()
H A Dcons_indicator.c5273 int sepafreq; in SCIP_DECL_CONSINITSOL() local
5283 sepafreq = SCIPconshdlrGetSepaFreq(conshdlr); in SCIP_DECL_CONSINITSOL()
5284 if ( (sepafreq != -1 || conshdlrdata->enforcecuts) && logicorsepafreq != 1 ) in SCIP_DECL_CONSINITSOL()
/dports/math/SCIP/scip-7.0.3/
H A DCHANGELOG48 Thus, do not change constraints/logicor/sepafreq anymore, but output warning.
5689 - set parameter `constraints/and/sepafreq` default value to 1
7162 + `constraints/linear/sepafreq` = 0
7163 + `constraints/and/sepafreq` = 0
7164 + `constraints/conjunction/sepafreq` = 0
7165 + `constraints/knapsack/sepafreq` = 0
7167 + `constraints/logicor/sepafreq` = 0
7168 + `constraints/or/sepafreq` = 0
7169 + `constraints/setppc/sepafreq` = 0
7170 + `constraints/varbound/sepafreq` = 0
[all …]
/dports/math/py-PySCIPOpt/PySCIPOpt-3.0.2/src/pyscipopt/
H A Dscip.pyx3336 enfopriority=0, chckpriority=0, sepafreq=-1, propfreq=-1,
3349 :param sepafreq: frequency for separating cuts; 0 = only at root node (Default value = -1)
3362 …udeConshdlr(self._scip, n, d, sepapriority, enfopriority, chckpriority, sepafreq, propfreq, eagerf…
H A Dscip.pxd899 int sepafreq,