@return a set of all nodes that have degree 2 or more. These nodes are often refered to as internal nodes.
()
| 289 | * These nodes are often refered to as internal nodes. |
| 290 | */ |
| 291 | public Set<Node> getInternalNodes() { |
| 292 | return new LinkedHashSet<Node>(internalNodes); |
| 293 | } |
| 294 | |
| 295 | /** |
| 296 | * @return the set of taxa associated with the external |
no outgoing calls
no test coverage detected