Find all of the nodes that have edges from the indicated node to themselves. @param op Node to look from @return Collection of nodes.
(E op)
| 338 | * @return Collection of nodes. |
| 339 | */ |
| 340 | public List<E> getSuccessors(E op) { |
| 341 | return mFromEdges.get(op); |
| 342 | } |
| 343 | |
| 344 | /** |
| 345 | * Find all of the nodes that have soft edges to the indicated node from |
no test coverage detected