boost/libs/graph/example/remove_edge_if_dir.expected
2021-10-05 21:37:46 +02:00

17 lines
165 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 -->