For a given operator, get all operators immediately after it. @param op operator to fetch successors of @return list of all operators imeediately after op, or an empty list if op is a leaf.
(Operator op)
| 125 | * if op is a leaf. |
| 126 | */ |
| 127 | public List<Operator> getSuccessors(Operator op) { |
| 128 | return fromEdges.get(op); |
| 129 | } |
| 130 | |
| 131 | /** |
| 132 | * For a given operator, get all operators softly immediately before it in the |
no test coverage detected