On an AdjMatrix<_,_,Directed,DefaultId>, what's the best way to find the shortest paths from all vertices to a destination vertex? petgraph has a Reverse wrapper, but unlike gryf it's not flexible enough (the vertex-attribute type has to implement Copy, which mine doesn't).
On an
AdjMatrix<_,_,Directed,DefaultId>, what's the best way to find the shortest paths from all vertices to a destination vertex?petgraphhas aReversewrapper, but unlike gryf it's not flexible enough (the vertex-attribute type has to implement Copy, which mine doesn't).