Home
last modified time | relevance | path

Searched refs:SCIPnodeGetLowerbound (Results 1 – 25 of 27) sorted by relevance

12

/dports/math/SCIP/scip-7.0.3/src/scip/
H A Dnodesel_bfs.c151 *selnode != NULL ? SCIPnodeGetLowerbound(*selnode) : SCIPinfinity(scip)); in SCIP_DECL_NODESELSELECT()
190 if( node != NULL && SCIPnodeGetLowerbound(node) < maxbound ) in SCIP_DECL_NODESELSELECT()
193 … SCIPdebugMsg(scip, " -> selected prio child: lower=%g\n", SCIPnodeGetLowerbound(*selnode)); in SCIP_DECL_NODESELSELECT()
198 if( node != NULL && SCIPnodeGetLowerbound(node) < maxbound ) in SCIP_DECL_NODESELSELECT()
201 … SCIPdebugMsg(scip, " -> selected best child: lower=%g\n", SCIPnodeGetLowerbound(*selnode)); in SCIP_DECL_NODESELSELECT()
206 if( node != NULL && SCIPnodeGetLowerbound(node) < maxbound ) in SCIP_DECL_NODESELSELECT()
209 … SCIPdebugMsg(scip, " -> selected prio sibling: lower=%g\n", SCIPnodeGetLowerbound(*selnode)); in SCIP_DECL_NODESELSELECT()
214 if( node != NULL && SCIPnodeGetLowerbound(node) < maxbound ) in SCIP_DECL_NODESELSELECT()
223 *selnode != NULL ? SCIPnodeGetLowerbound(*selnode) : SCIPinfinity(scip)); in SCIP_DECL_NODESELSELECT()
245 lowerbound1 = SCIPnodeGetLowerbound(node1); in SCIP_DECL_NODESELCOMP()
[all …]
H A Dnodesel.c301 nodepq->lowerboundsum += SCIPnodeGetLowerbound(node); in SCIPnodepqInsert()
313 lowerbound = SCIPnodeGetLowerbound(node); in SCIPnodepqInsert()
364 nodepq->lowerboundsum -= SCIPnodeGetLowerbound(slots[rempos]); in nodepqDelPos()
370 (void*)slots[freepos], SCIPnodeGetLowerbound(slots[freepos]), freepos, freebfspos); in nodepqDelPos()
444 lastlowerbound = SCIPnodeGetLowerbound(slots[lastbfsqueueidx]); in nodepqDelPos()
467 …&& SCIPnodeGetLowerbound(slots[bfsqueue[brotherpos]]) < SCIPnodeGetLowerbound(slots[bfsqueue[child… in nodepqDelPos()
471 if( lastlowerbound <= SCIPnodeGetLowerbound(slots[bfsqueue[childpos]]) ) in nodepqDelPos()
589 return SCIPnodeGetLowerbound(nodepq->slots[bfspos]); in SCIPnodepqGetLowerbound()
657 if( SCIPsetIsGE(set, SCIPnodeGetLowerbound(node), cutoffbound) ) in SCIPnodepqBound()
660 pos, nodepq->len, SCIPnodeGetDepth(node), SCIPnodeGetLowerbound(node)); in SCIPnodepqBound()
[all …]
H A Dnodesel_dfs.c106 lowerbound1 = SCIPnodeGetLowerbound(node1); in SCIP_DECL_NODESELCOMP()
107 lowerbound2 = SCIPnodeGetLowerbound(node2); in SCIP_DECL_NODESELCOMP()
H A Dnodesel_estimate.c170 *selnode != NULL ? SCIPnodeGetLowerbound(*selnode) : SCIPinfinity(scip)); in SCIP_DECL_NODESELSELECT()
201 *selnode != NULL ? SCIPnodeGetLowerbound(*selnode) : SCIPinfinity(scip)); in SCIP_DECL_NODESELSELECT()
304 lowerbound1 = SCIPnodeGetLowerbound(node1); in SCIP_DECL_NODESELCOMP()
305 lowerbound2 = SCIPnodeGetLowerbound(node2); in SCIP_DECL_NODESELCOMP()
H A Dvisual.c303 lowerbound = SCIPretransformObj(set->scip, SCIPnodeGetLowerbound(node)); in SCIPvisualNewChild()
305 lowerbound = SCIPnodeGetLowerbound(node); in SCIPvisualNewChild()
366 lowerbound = SCIPretransformObj(set->scip, SCIPnodeGetLowerbound(node)); in SCIPvisualUpdateChild()
368 lowerbound = SCIPnodeGetLowerbound(node); in SCIPvisualUpdateChild()
498 lowerbound = SCIPretransformObj(set->scip, SCIPnodeGetLowerbound(node)); in SCIPvisualSolvedNode()
500 lowerbound = SCIPnodeGetLowerbound(node); in SCIPvisualSolvedNode()
559 lowerbound = SCIPretransformObj(set->scip, SCIPnodeGetLowerbound(node)); in SCIPvisualCutoffNode()
561 lowerbound = SCIPnodeGetLowerbound(node); in SCIPvisualCutoffNode()
H A Dpub_tree.h157 SCIP_Real SCIPnodeGetLowerbound(
262 #define SCIPnodeGetLowerbound(node) ((node)->lowerbound) macro
H A Dnodesel_uct.c207 score = nodeseldata->useestimate ? SCIPnodeGetEstimate(node) : SCIPnodeGetLowerbound(node); in nodeGetUctScore()
514 lowerbound1 = SCIPnodeGetLowerbound(node1); in SCIP_DECL_NODESELCOMP()
515 lowerbound2 = SCIPnodeGetLowerbound(node2); in SCIP_DECL_NODESELCOMP()
H A Dnodesel_hybridestim.c83 return (1.0-estimweight) * SCIPnodeGetLowerbound(node) + estimweight * SCIPnodeGetEstimate(node); in getNodeselScore()
175 *selnode != NULL ? SCIPnodeGetLowerbound(*selnode) : SCIPinfinity(scip)); in SCIP_DECL_NODESELSELECT()
H A Dbranch_multaggr.c331 estimateprobdown = SCIPnodeGetLowerbound(node); in selectVarMultAggrBranching()
395 estimateprobup = SCIPnodeGetLowerbound(node); in selectVarMultAggrBranching()
963 …SCIPdebugMsg(scip, " down node: lowerbound %f estimate %f\n", SCIPnodeGetLowerbound(downchild), SC… in SCIP_DECL_BRANCHEXECLP()
966 …SCIPdebugMsg(scip, " up node: lowerbound %f estimate %f\n", SCIPnodeGetLowerbound(upchild), SCIPno… in SCIP_DECL_BRANCHEXECLP()
1022 SCIPdebugMsg(scip, " -> down child's lowerbound: %g\n", SCIPnodeGetLowerbound(downchild)); in SCIP_DECL_BRANCHEXECLP()
1023 SCIPdebugMsg(scip, " -> up child's lowerbound: %g\n", SCIPnodeGetLowerbound(upchild)); in SCIP_DECL_BRANCHEXECLP()
H A Dbranch_vanillafullstrong.c470 … SCIPdebugMsg(scip, " -> down child's lowerbound: %g\n", SCIPnodeGetLowerbound(downchild)); in SCIP_DECL_BRANCHEXECLP()
475 SCIPdebugMsg(scip, " -> eq child's lowerbound: %g\n", SCIPnodeGetLowerbound(eqchild)); in SCIP_DECL_BRANCHEXECLP()
480 SCIPdebugMsg(scip, " -> up child's lowerbound: %g\n", SCIPnodeGetLowerbound(upchild)); in SCIP_DECL_BRANCHEXECLP()
H A Dbranch_allfullstrong.c166 … SCIPdebugMsg(scip, " -> down child's lowerbound: %g\n", SCIPnodeGetLowerbound(downchild)); in branch()
171 SCIPdebugMsg(scip, " -> eq child's lowerbound: %g\n", SCIPnodeGetLowerbound(eqchild)); in branch()
176 SCIPdebugMsg(scip, " -> up child's lowerbound: %g\n", SCIPnodeGetLowerbound(upchild)); in branch()
H A Dsolve.c325 lowerbound = SCIPnodeGetLowerbound(SCIPtreeGetFocusNode(tree)); in SCIPprimalHeuristics()
1075 estimate = SCIPnodeGetLowerbound(focusnode); in updateEstimate()
2324 loclowerbound = SCIPnodeGetLowerbound(focusnode); in priceAndCutLoop()
2411 if( SCIPsetIsLT(set, SCIPnodeGetLowerbound(focusnode), primal->cutoffbound) ) in priceAndCutLoop()
2522 || SCIPsetIsGE(set, SCIPnodeGetLowerbound(focusnode), primal->cutoffbound) in priceAndCutLoop()
2824 SCIPnodeGetLowerbound(focusnode), SCIPlpGetSolstat(lp), in priceAndCutLoop()
2868SCIPnodeGetLowerbound(focusnode), SCIPprobExternObjval(transprob, origprob, set, SCIPnodeGetLowerb… in applyBounding()
2873 if( (set->misc_exactsolve && SCIPnodeGetLowerbound(focusnode) >= primal->cutoffbound) in applyBounding()
2877 SCIPnodeGetLowerbound(focusnode), primal->cutoffbound); in applyBounding()
3937 && SCIPnodeGetLowerbound(focusnode) < primal->cutoffbound ) in propAndSolve()
[all …]
H A Dbranch_fullstrong.c631 SCIPdebugMsg(scip, " -> down child's lowerbound: %g\n", SCIPnodeGetLowerbound(downchild)); in SCIP_DECL_BRANCHEXECLP()
632 SCIPdebugMsg(scip, " -> up child's lowerbound: %g\n", SCIPnodeGetLowerbound(upchild)); in SCIP_DECL_BRANCHEXECLP()
H A Dbranch_cloud.c641 SCIPdebugMsg(scip, " -> down child's lowerbound: %g\n", SCIPnodeGetLowerbound(downchild)); in SCIP_DECL_BRANCHEXECLP()
642 SCIPdebugMsg(scip, " -> up child's lowerbound: %g\n", SCIPnodeGetLowerbound(upchild)); in SCIP_DECL_BRANCHEXECLP()
H A Dscip_prob.c3569 … SCIPprobExternObjval(scip->transprob, scip->origprob, scip->set, SCIPnodeGetLowerbound(node)) : S… in SCIPgetLocalDualbound()
3589 return node != NULL ? SCIPnodeGetLowerbound(node) : SCIP_INVALID; in SCIPgetLocalLowerbound()
3606 …return SCIPprobExternObjval(scip->transprob, scip->origprob, scip->set, SCIPnodeGetLowerbound(node… in SCIPgetNodeDualbound()
3623 return SCIPnodeGetLowerbound(node); in SCIPgetNodeLowerbound()
H A Drelax.c416 oldlowerbound = SCIPnodeGetLowerbound(node); in SCIPrelaxExec()
H A Dbranch.c1560 loclowerbound = SCIPnodeGetLowerbound(tree->focusnode); in SCIPbranchruleExecLPSol()
1667 loclowerbound = SCIPnodeGetLowerbound(tree->focusnode); in SCIPbranchruleExecExternSol()
1772 loclowerbound = SCIPnodeGetLowerbound(tree->focusnode); in SCIPbranchruleExecPseudoSol()
H A Dbranch_relpscost.c1845 SCIPdebugMsg(scip, " -> down child's lowerbound: %g\n", SCIPnodeGetLowerbound(downchild)); in execRelpscost()
1846 SCIPdebugMsg(scip, " -> up child's lowerbound : %g\n", SCIPnodeGetLowerbound(upchild)); in execRelpscost()
H A Dtree.c4672 … if( SCIPsetIsLT(set, SCIPnodeGetLowerbound(tree->children[c]), stat->referencebound) ) in SCIPnodeFocus()
5560 …ocal(var), SCIPvarGetUbLocal(var), SCIPvarGetBranchPriority(var), SCIPnodeGetLowerbound(tree->focu… in SCIPtreeBranchVar()
5592 …ocal(var), SCIPvarGetUbLocal(var), SCIPvarGetBranchPriority(var), SCIPnodeGetLowerbound(tree->focu… in SCIPtreeBranchVar()
5618 … SCIPvarGetName(var), val, SCIPvarGetBranchPriority(var), SCIPnodeGetLowerbound(tree->focusnode)); in SCIPtreeBranchVar()
5670 … SCIPvarGetName(var), val, SCIPvarGetBranchPriority(var), SCIPnodeGetLowerbound(tree->focusnode)); in SCIPtreeBranchVar()
5679 …var), val, SCIPvarGetRootSol(var), SCIPvarGetBranchPriority(var), SCIPnodeGetLowerbound(tree->focu… in SCIPtreeBranchVar()
7398 #undef SCIPnodeGetLowerbound
7458 SCIP_Real SCIPnodeGetLowerbound( in SCIPnodeGetLowerbound() function
H A Dheur_lpface.c1152 …while( SCIPisEQ(scip, SCIPnodeGetLowerbound(parent), focusnodelb) && nonimprovingpathlen < heurdat… in SCIP_DECL_HEUREXEC()
H A Ddebug.c1227 localbound = SCIPnodeGetLowerbound(node); in SCIPdebugCheckLocalLowerbound()
H A Devent_estim.c1012 nodeinfo->lowerbound = SCIPnodeGetLowerbound(node); in subtreeSumGapStoreNode()
H A Dreopt.c6550 SCIPnodeGetLowerbound(leaves[n])) ); in SCIPreoptSaveOpenNodes()
6557 SCIPnodeGetLowerbound(childs[n])) ); in SCIPreoptSaveOpenNodes()
6564 SCIPnodeGetLowerbound(siblings[n])) ); in SCIPreoptSaveOpenNodes()
H A Dbranch_lookahead.c2661 SCIPnodeGetLowerbound(downchild), SCIPnodeGetEstimate(downchild)); in branchOnVar()
2663 SCIPnodeGetLowerbound(upchild), SCIPnodeGetEstimate(upchild)); in branchOnVar()
/dports/math/py-PySCIPOpt/PySCIPOpt-3.0.2/src/pyscipopt/
H A Dscip.pxd641 SCIP_Real SCIPnodeGetLowerbound(SCIP_NODE* node)

12