I get a lot of errors when compiling while using the function make_reverse_graph
of the Boost Graph Library.
Asked
Active
Viewed 121 times
0

Steve Lillis
- 3,263
- 5
- 22
- 41

thi gg
- 1,969
- 2
- 22
- 47
1 Answers
1
Be sure that your graph is defined as boost::bidirectionalS
.
This means that there is for each vertex a list of its in-edges, which makes the reversion of the graph much more efficient.

thi gg
- 1,969
- 2
- 22
- 47