(Digraph G)
| 17 | private final Digraph g; |
| 18 | |
| 19 | public SAP(Digraph G) { |
| 20 | if (G == null) throw new IllegalArgumentException(); |
| 21 | g = new Digraph(G); |
| 22 | } |
| 23 | |
| 24 | private class Helper { |
| 25 | private int length; |
nothing calls this directly
no outgoing calls
no test coverage detected