@param node @return the set of nodes that are attached by edges to the given node.
(Node node)
| 369 | * @return the set of nodes that are attached by edges to the given node. |
| 370 | */ |
| 371 | public List<Node> getAdjacencies(Node node) { |
| 372 | return ((ReRootedNode)node).getAdjacencies(); |
| 373 | } |
| 374 | |
| 375 | /** |
| 376 | * Returns the Edge that connects these two nodes |
no outgoing calls
no test coverage detected