Opened 12 years ago
Closed 12 years ago
#4343 closed Patches (fixed)
graph_theory_review/"Breadth-First Search" omits starting vertex 's'
| Reported by: | Owned by: | Andrew Sutton | |
|---|---|---|---|
| Milestone: | Boost 1.43.0 | Component: | graph | 
| Version: | Boost 1.44.0 | Severity: | Cosmetic | 
| Keywords: | documentation | Cc: | 
Description
In the graph_theory_review page, under "Breadth-First Search", two references to s (the start vertex) are omitted. It reads...
We start at vertex , and first visit r and w (the two neighbors of ).
It should read...
We start at vertex s, and first visit r and w (the two neighbors of s).
  Note:
 See   TracTickets
 for help on using tickets.
    

(In [62932]) Fixed missing variables; fixes #4343