stdgraph / P1709

P1709: C++ Graph Library Proposal
6 stars 0 forks source link

Graph Adaptors #34

Open neoblizz opened 1 year ago

neoblizz commented 1 year ago

We need clarification on what needs to be done here?

pratzl commented 1 year ago

One use-case is to adapt a range-of-ranges structure to support the Graph Container Interface. An example is vector<vector<tuple<int,double>>>. I showed an example of the idea in ./graph-v2/example/CppCon2022. There are limits to the implementation, and a more general implementation would be needed. There may be other use-cases.