Home
last modified time | relevance | path

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

/dports/math/SCIP/scip-7.0.3/src/scip/
H A Dscip_branch.h654 SCIP_Real nodeselprio, /**< node selection priority of new node */
H A Dscip_branch.c1011 SCIP_Real nodeselprio, /**< node selection priority of new node */ in SCIPcreateChild() argument
1019 …eCreateChild(node, scip->mem->probmem, scip->set, scip->stat, scip->tree, nodeselprio, estimate) ); in SCIPcreateChild()
H A Dtree.h69 SCIP_Real nodeselprio, /**< node selection priority of new node */
H A Dtree.c737 SCIP_Real nodeselprio /**< node selection priority of child node */ in treeAddChild() argument
747 tree->childrenprio[tree->nchildren] = nodeselprio; in treeAddChild()
790 SCIP_Real nodeselprio /**< node selection priority of child node */ in nodeAssignParent() argument
831 SCIP_CALL( treeAddChild(tree, set, node, nodeselprio) ); in nodeAssignParent()
990 SCIP_Real nodeselprio, /**< node selection priority of new node */ in SCIPnodeCreateChild() argument
1017 SCIP_CALL( nodeAssignParent(*node, blkmem, set, tree, tree->focusnode, nodeselprio) ); in SCIPnodeCreateChild()
1027 …LONGINT_FORMAT " at depth %u (prio: %g)\n", SCIPnodeGetNumber(*node), (*node)->depth, nodeselprio); in SCIPnodeCreateChild()
/dports/math/py-PySCIPOpt/PySCIPOpt-3.0.2/src/pyscipopt/
H A Dscip.pyx3709 def createChild(self, nodeselprio, estimate):
3712 :param nodeselprio: float, node selection priority of new node
3718 PY_SCIP_CALL(SCIPcreateChild(self._scip, &child, nodeselprio, estimate))
H A Dscip.pxd649 …SCIP_RETCODE SCIPcreateChild(SCIP* scip, SCIP_NODE** node, SCIP_Real nodeselprio, SCIP_Real estima…