All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
pub_tree.h
Go to the documentation of this file.
22 /*---+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0----+----1----+----2*/
48 /** returns the set of variable branchings that were performed in the parent node to create this node */
52 SCIP_VAR** branchvars, /**< array of variables on which the branching has been performed in the parent node */
54 SCIP_BOUNDTYPE* boundtypes, /**< array of boundtypes which the branching in the parent node set */
55 int* nbranchvars, /**< number of variables on which branching has been performed in the parent node
56 * if this is larger than the array size, arrays should be reallocated and method should be called again */
60 /** returns the set of variable branchings that were performed in all ancestor nodes (nodes on the path to the root) to create this node */
64 SCIP_VAR** branchvars, /**< array of variables on which the branchings has been performed in all ancestors */
66 SCIP_BOUNDTYPE* boundtypes, /**< array of boundtypes which the branchings in all ancestors set */
67 int* nbranchvars, /**< number of variables on which branchings have been performed in all ancestors
68 * if this is larger than the array size, arrays should be reallocated and method should be called again */
79 /** returns the set of variable branchings that were performed in all ancestor nodes (nodes on the path to the root) to create this node
85 SCIP_VAR** branchvars, /**< array of variables on which the branchings has been performed in all ancestors */
87 SCIP_BOUNDTYPE* boundtypes, /**< array of boundtypes which the branchings in all ancestors set */
88 int* nbranchvars, /**< number of variables on which branchings have been performed in all ancestors
92 int* nodeswitches, /**< marks, where in the arrays the branching decisions of the next node on the path
100 /** checks for two nodes whether they share the same root path, i.e., whether one is an ancestor of the other */
145 /** gets the domain change information of the node, i.e., the information about the differences in the
174 /* In optimized mode, the function calls are overwritten by defines to reduce the number of function calls and
type definitions for miscellaneous datastructures SCIP_NODETYPE SCIPnodeGetType(SCIP_NODE *node) int SCIPnodeGetDepth(SCIP_NODE *node) SCIP_DOMCHG * SCIPnodeGetDomchg(SCIP_NODE *node) void SCIPnodeGetAncestorBranchingPath(SCIP_NODE *node, SCIP_VAR **branchvars, SCIP_Real *branchbounds, SCIP_BOUNDTYPE *boundtypes, int *nbranchvars, int branchvarssize, int *nodeswitches, int *nnodes, int nodeswitchsize) SCIP_Bool SCIPnodeIsPropagatedAgain(SCIP_NODE *node) void SCIPnodeGetParentBranchings(SCIP_NODE *node, SCIP_VAR **branchvars, SCIP_Real *branchbounds, SCIP_BOUNDTYPE *boundtypes, int *nbranchvars, int branchvarssize) SCIP_Longint SCIPnodeGetNumber(SCIP_NODE *node) type definitions for branch and bound tree void SCIPnodeGetAncestorBranchings(SCIP_NODE *node, SCIP_VAR **branchvars, SCIP_Real *branchbounds, SCIP_BOUNDTYPE *boundtypes, int *nbranchvars, int branchvarssize) SCIP_Real SCIPnodeGetEstimate(SCIP_NODE *node) SCIP_Bool SCIPnodesSharePath(SCIP_NODE *node1, SCIP_NODE *node2) SCIP_Bool SCIPnodeIsActive(SCIP_NODE *node) SCIP_NODE * SCIPnodeGetParent(SCIP_NODE *node) SCIP_Real SCIPnodeGetLowerbound(SCIP_NODE *node) SCIP_NODE * SCIPnodesGetCommonAncestor(SCIP_NODE *node1, SCIP_NODE *node2) common defines and data types used in all packages of SCIP SCIP_RETCODE SCIPnodePrintAncestorBranchings(SCIP_NODE *node, FILE *file) SCIP_DECL_SORTPTRCOMP(SCIPnodeCompLowerbound) |