binary node data structure for binary tree
Definition at line 209 of file struct_misc.h.
#include <struct_misc.h>
Data Fields | |
| SCIP_BTNODE * | parent |
| SCIP_BTNODE * | left |
| SCIP_BTNODE * | right |
| void * | dataptr |
| SCIP_BTNODE* SCIP_BtNode::parent |
pointer to the parent node
Definition at line 211 of file struct_misc.h.
Referenced by SCIPbtnodeGetParent(), SCIPbtnodeIsRoot(), and SCIPbtnodeSetParent().
| SCIP_BTNODE* SCIP_BtNode::left |
pointer to the left child node
Definition at line 212 of file struct_misc.h.
Referenced by SCIPbtnodeGetLeftchild(), SCIPbtnodeIsLeaf(), and SCIPbtnodeSetLeftchild().
| SCIP_BTNODE* SCIP_BtNode::right |
pointer to the right child node
Definition at line 213 of file struct_misc.h.
Referenced by SCIPbtnodeGetRightchild(), SCIPbtnodeIsLeaf(), and SCIPbtnodeSetRightchild().
| void* SCIP_BtNode::dataptr |
user pointer
Definition at line 214 of file struct_misc.h.
Referenced by SCIPbtnodeGetData(), and SCIPbtnodeSetData().