You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
However the Graph types uses adjacency lists under the hook, whereas our graph is likely to be sparse for the most parts. petgraph offers a petgraph::csr::Csr variant, but it doesn't seem to be a drop-in replacement, so this has to be investigated.
The text was updated successfully, but these errors were encountered:
After some more investigation, I am not sure this can be easily achieved, as the API seems to be quite different between the two implementation. add_edge, for example, returns an EdgeIndex for the Graph API, but just a bool for the Csr one.
At the moment we define:
However the
Graph
types uses adjacency lists under the hook, whereas our graph is likely to be sparse for the most parts.petgraph
offers apetgraph::csr::Csr
variant, but it doesn't seem to be a drop-in replacement, so this has to be investigated.The text was updated successfully, but these errors were encountered: