| 82 | } |
| 83 | |
| 84 | Node::Node(NodeID parent_nid, int kids) : m_parent(parent_nid) |
| 85 | { |
| 86 | // debug("node") << " Node()\n"; |
| 87 | setTag(Tag::LEAF); /// initialize to be a leaf first |
| 88 | setNumberOfChildren(kids); |
| 89 | } |
| 90 | |
| 91 | void Node::setChild(NodeID nid, int alt) |
| 92 | { |
nothing calls this directly
no outgoing calls
no test coverage detected