Scippy

SCIP

Solving Constraint Integer Programs

SCIP_BtNode Struct Reference

Detailed Description

binary node data structure for binary tree

Definition at line 209 of file struct_misc.h.

#include <struct_misc.h>

Data Fields

SCIP_BTNODEparent
 
SCIP_BTNODEleft
 
SCIP_BTNODEright
 
void * dataptr
 

Field Documentation

◆ parent

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().

◆ left

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().

◆ right

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().

◆ dataptr

void* SCIP_BtNode::dataptr

user pointer

Definition at line 214 of file struct_misc.h.

Referenced by SCIPbtnodeGetData(), and SCIPbtnodeSetData().