stdgraph / P1709

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

2.4 BiPartite Graphs #9

Open neoblizz opened 1 year ago

neoblizz commented 1 year ago

A separate proposal for this? However, the Kevin Bacon example requires bipartite graphs. I also have questions about bipartiteness (or labeling in general) at every talk I give about C++ graph libraries.

pratzl commented 11 months ago

I've added functions to the paper to support multipartite functionality in the Graph Container Interface. There are a couple things still needed:

  1. Revise existing text describing bipartite functionality to include/acknowlege multipartite functionality.
  2. Add constructors for csr_graph for multipartite support
pratzl commented 11 months ago

Added load CPOs instead of constructors because load_partition needs to be called multiple times, which doesn't work for constructors.

pratzl commented 11 months ago

The introduction needs to be revised to support multipartite graphs.