| 302 | } |
| 303 | |
| 304 | bool NodeTree::isOpen(NodeID nid) const |
| 305 | { |
| 306 | return ((getStatus(nid) == NodeStatus::UNDETERMINED) || |
| 307 | hasOpenChildren(nid)); |
| 308 | } |
| 309 | |
| 310 | void NodeTree::onChildClosed(NodeID nid) |
| 311 | { |
nothing calls this directly
no test coverage detected