Home
last modified time | relevance | path

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

/dports/math/SCIP/scip-7.0.3/src/scip/
H A Dscip_probing.c218 …int probingdepth /**< probing depth of the node in the probing path that … in SCIPbacktrackProbing() argument
228 if( probingdepth < 0 || probingdepth > SCIPtreeGetProbingDepth(scip->tree) ) in SCIPbacktrackProbing()
231 probingdepth, SCIPtreeGetProbingDepth(scip->tree)); in SCIPbacktrackProbing()
237 scip->cliquetable, probingdepth) ); in SCIPbacktrackProbing()
1069 int probingdepth; in SCIPsnprintfProbingStats() local
1090 probingdepth = SCIPgetProbingDepth(scip); in SCIPsnprintfProbingStats()
1092 ptr += SCIPsnprintf(ptr, len, "Depth: (%d total, %d probing) ", depth, probingdepth); in SCIPsnprintfProbingStats()
H A Dbranch_lookahead.c4370 int probingdepth; in executeBranchingRecursive() local
4389 probingdepth = SCIPgetProbingDepth(scip); in executeBranchingRecursive()
4488 statistics->nlpssolved[probingdepth]++; in executeBranchingRecursive()
4742 int probingdepth; in selectVarRecursive() local
4763 probingdepth = SCIPgetProbingDepth(scip); in selectVarRecursive()
4764 assert(probingdepth >= 0 && probingdepth < config->recursiondepth); in selectVarRecursive()
4852 statistics->npropdomred[probingdepth]++; in selectVarRecursive()
5246 statistics->npropdomred[probingdepth]++; in selectVarRecursive()
5500 int probingdepth = 0; in selectVarStart() local
5502 probingdepth = SCIPgetProbingDepth(scip); in selectVarStart()
[all …]
H A Dscip_probing.h136 …int probingdepth /**< probing depth of the node in the probing path that …
H A Dheur_nlpdiving.c2306 int probingdepth; in SCIP_DECL_HEUREXEC() local
2309 probingdepth = SCIPgetProbingDepth(scip); in SCIP_DECL_HEUREXEC()
2310 assert(probingdepth >= 1); in SCIP_DECL_HEUREXEC()
2366 SCIP_CALL( SCIPbacktrackProbing(scip, probingdepth) ); in SCIP_DECL_HEUREXEC()
H A Dtree.h729 …int probingdepth /**< probing depth of the node in the probing path that …
H A Dcons_sos1.c2103 int* probingdepth, /**< pointer to store current probing depth */ in performImplicationGraphAnalysis() argument
2116 if ( conshdlrdata->depthimplanalysis >= 0 && *probingdepth >= conshdlrdata->depthimplanalysis ) in performImplicationGraphAnalysis()
2118 ++(*probingdepth); in performImplicationGraphAnalysis()
2198 oldprobingdepth = *probingdepth; in performImplicationGraphAnalysis()
2211 …cymatrix, givennode, succnode, impllbs, implubs, implnodes, naddconss, probingdepth, infeasible) ); in performImplicationGraphAnalysis()
2212 *probingdepth = oldprobingdepth; in performImplicationGraphAnalysis()
2231 …cymatrix, givennode, succnode, impllbs, implubs, implnodes, naddconss, probingdepth, infeasible) ); in performImplicationGraphAnalysis()
2232 *probingdepth = oldprobingdepth; in performImplicationGraphAnalysis()
3448 int probingdepth; in presolRoundVarsSOS1() local
3460 probingdepth = 0; in presolRoundVarsSOS1()
[all …]
H A Dheur_undercover.c2519 int probingdepth; in fixAndPropagate() local
2549 probingdepth = SCIPgetProbingDepth(scip); in fixAndPropagate()
2633 SCIP_CALL( SCIPbacktrackProbing(scip, probingdepth) ); in fixAndPropagate()
H A Dtree.c6697 …int probingdepth /**< probing depth of the node in the probing path that … in treeBacktrackProbing() argument
6715 assert(-1 <= probingdepth && probingdepth <= SCIPtreeGetProbingDepth(tree)); in treeBacktrackProbing()
6719 newpathlen = SCIPnodeGetDepth(tree->probingroot) + probingdepth + 1; in treeBacktrackProbing()
6843 …int probingdepth /**< probing depth of the node in the probing path that … in SCIPtreeBacktrackProbing() argument
6848 assert(0 <= probingdepth && probingdepth <= SCIPtreeGetProbingDepth(tree)); in SCIPtreeBacktrackProbing()
6852 eventqueue, eventfilter, cliquetable, probingdepth) ); in SCIPtreeBacktrackProbing()
/dports/math/py-PySCIPOpt/PySCIPOpt-3.0.2/src/pyscipopt/
H A Dscip.pyx3804 def backtrackProbing(self, probingdepth):
3806 … :param probingdepth: probing depth of the node in the probing path that should be reactivated
3808 PY_SCIP_CALL( SCIPbacktrackProbing(self._scip, probingdepth) )
H A Dscip.pxd542 SCIP_RETCODE SCIPbacktrackProbing(SCIP* scip, int probingdepth)