mirror of
https://github.com/boostorg/graph.git
synced 2026-02-01 08:32:11 +00:00
functions, and added some examples that use these functions. Also added documentation for them. [SVN r7864]
17 lines
177 B
Plaintext
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 -->
|