graph/example/remove_edge_if_dir.expected
2000-12-08 15:30:27 +00:00

17 lines
177 B
Plaintext

original graph:
0 --> 3 2 3
1 --> 3
2 --> 0
3 --> 2
removing edges (0,3)
0 --> 2
1 --> 3
2 --> 0
3 --> 2
removing edge (0,2) and (3, 2)
0 -->
1 --> 3
2 --> 0
3 -->