graph-v2
graph-v2 copied to clipboard
General-purpose C++ graph library
I am taking aside the fact that BFS views are customization points, and that the user customizes them no concept satisfaction is required. In all other cases, the BFS algorithms...
I was surprised to find that DFS/BFS views never return the source vertex. The example is [here](https://raw.githubusercontent.com/akrzemi1/graph-v2/refs/heads/example/example/AdaptingThirdPartyGraph/adapting_a_third_party_graph.cpp). I suppose there is a reason for it, and it is not a...
The goal of this "issue" is to determine if this library can address my use case for graphs. My application finds all "attractive" flight connections between two given airports. How...
This is especially important as this library -- as I understand -- is meant to be a reference implementation for the C++ Standard Library proposal. Currently, the implementaiton of the...