[graph]-Minor errors in docs
14 Oct
2008
14 Oct
'08
8:24 p.m.
At the bottom of this doc page: http://www.boost.org/doc/libs/1_36_0/libs/graph/doc/graph_concepts.html#sec:... There are numerous add_edge() calls that are incorrect, e.g. add_edge(digraph, u, v, Weight(1.2));
From what I can tell, these should be:
add_edge(u, v, Weight(1.2), digraph); Now, I'm only using 1.35, but the 1.36 documentation for add_edge here: http://www.boost.org/doc/libs/1_36_0/libs/graph/doc/adjacency_list.html supports my guess. Thanks, --Michael Fawcett
5876
Age (days ago)
5876
Last active (days ago)
0 comments
1 participants
participants (1)
-
Michael Fawcett