(Object node)
| 36 | } |
| 37 | |
| 38 | @Override |
| 39 | public int inDegree(Object node) { |
| 40 | // only works for non-multigraphs; multigraphs not yet supported |
| 41 | return predecessors(node).size(); |
| 42 | } |
| 43 | |
| 44 | @Override |
| 45 | public int outDegree(Object node) { |
nothing calls this directly
no test coverage detected