@param node the node whose children are being requested. @return the list of nodes that are the children of the given node. The list may be empty for a terminal node (a tip).
(Node node)
| 208 | * The list may be empty for a terminal node (a tip). |
| 209 | */ |
| 210 | public List<Node> getChildren(Node node) { |
| 211 | return new ArrayList<Node>(((ReRootedNode)node).getChildren()); |
| 212 | } |
| 213 | |
| 214 | /** |
| 215 | * @return Whether this tree has node heights available |
no outgoing calls
no test coverage detected