Home
last modified time | relevance | path

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

/dports/math/SCIP/scip-7.0.3/src/scip/
H A Dbranch_lookahead.c1000 …int maxncands; /**< If abbreviated == TRUE, at most how many candidates… member
1853 int ncands = config->maxncands; in scoreContainerCreate()
4244 config->maxncands, candidatelist->ncandidates); in filterCandidates()
4265 nusedcands = MIN(config->maxncands, candidatelist->ncandidates); in filterCandidates()
5866 int maxncands; in SCIP_DECL_BRANCHINIT() local
5871 maxncands = branchruledata->config->maxncands; in SCIP_DECL_BRANCHINIT()
5872 maxncands = MIN(maxncands, SCIPgetNBinVars(scip) + SCIPgetNIntVars(scip)); in SCIP_DECL_BRANCHINIT()
5887 … SCIP_CALL( SCIPallocMemoryArray(scip, &branchruledata->statistics->chosenfsbcand, maxncands) ); in SCIP_DECL_BRANCHINIT()
5893 branchruledata->statistics->maxnbestcands = maxncands; in SCIP_DECL_BRANCHINIT()
6275 &branchruledata->config->maxncands, TRUE, DEFAULT_MAXNCANDS, 1, INT_MAX, NULL, NULL) ); in SCIPincludeBranchruleLookahead()