Home
last modified time | relevance | path

Searched refs:sepacardfreq (Results 1 – 2 of 2) sorted by relevance

/dports/math/SCIP/scip-7.0.3/src/scip/
H A Dcons_knapsack.c184 …int sepacardfreq; /**< multiplier on separation frequency, how often knaps… member
12241 int sepacardfreq; in SCIP_DECL_CONSSEPALP() local
12264 sepacardfreq = sepafreq * conshdlrdata->sepacardfreq; in SCIP_DECL_CONSSEPALP()
12265 sepacardinality = (conshdlrdata->sepacardfreq >= 0) in SCIP_DECL_CONSSEPALP()
12266 && ((sepacardfreq == 0 && depth == 0) || (sepacardfreq >= 1 && (depth % sepacardfreq == 0))); in SCIP_DECL_CONSSEPALP()
12310 int sepacardfreq; in SCIP_DECL_CONSSEPASOL() local
12333 sepacardfreq = sepafreq * conshdlrdata->sepacardfreq; in SCIP_DECL_CONSSEPASOL()
12334 sepacardinality = (conshdlrdata->sepacardfreq >= 0) in SCIP_DECL_CONSSEPASOL()
12335 && ((sepacardfreq == 0 && depth == 0) || (sepacardfreq >= 1 && (depth % sepacardfreq == 0))); in SCIP_DECL_CONSSEPASOL()
13348 … &conshdlrdata->sepacardfreq, TRUE, DEFAULT_SEPACARDFREQ, -1, SCIP_MAXTREEDEPTH, NULL, NULL) ); in SCIPincludeConshdlrKnapsack()
/dports/math/SCIP/scip-7.0.3/
H A DCHANGELOG7166 + `constraints/knapsack/sepacardfreq` = 0