#include <tree.h>
Public Attributes | |
int | taxa |
is 0 if there is no taxa: only occurs when it is an internal node | |
SuperNode * | left |
would be NULL if is a leaf node | |
SuperNode * | right |
would be NULL if is a leaf node | |
SuperNode * | parent |
is never NULL... except when it is the root | |
bool | internal |
indicates whether or not is an internal node | |
nid | id |
identification of the node |
taxa | holds taxa. is 0 when node is internal | |
*left | pointer to the left child | |
*right | pointer to the right child | |
*parent | pointer to the parent | |
internal | indicates whether or not is internal node | |
id | identification of the node (-1 when it is not the root node) |