Find all of the nodes that have edges to the indicated node from themselves. @param op Node to look to @return Collection of nodes.
(E op)
| 327 | * @return Collection of nodes. |
| 328 | */ |
| 329 | public List<E> getPredecessors(E op) { |
| 330 | return mToEdges.get(op); |
| 331 | } |
| 332 | |
| 333 | |
| 334 | /** |
no test coverage detected