Changes between Version 1 and Version 2 of soc/2007/UserFriendlyGraphNewClasses
- Timestamp:
- May 18, 2007, 12:08:57 PM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
soc/2007/UserFriendlyGraphNewClasses
v1 v2 1 = New Graph Classes = 1 2 I am currently considering alternative approaches to the implementation of the `undirected_graph` and `directed_graph` classes. One thing is clear - i intend to leverage as much existing code in Boost.Graph as possible, so it's probable that these classes will be implemented in terms of the `adjacency_list<>` class. The irony to this approach is that I am not introducing new classes so much as additional abstractions around an existing class. On the other hand, it does make implementation a breeze. 2 3