Closed Shushman closed 6 years ago
We got rid of the custom visitor code a while back since it was horribly inefficient. You might have a look at altering gdistances!()
which is our current reference model for anything BFS. (If that's too complex, then you can modify Dijkstra.)
Thanks! Will do.
This is more of a question than an issue but I wasn't sure where to put it. Is ther e currently a framework for using the shortest path search algorithms in
LightGraphs
with custom visitors? I seeAbstractGraphVisitor
defined insrc/LightGraphs.jl
but I'm not sure where they are being used, if at all. Also, it seems thatdijkstra
andastar
etc. don't have any scope currently for custom visitors - wanted to confirm this. Thanks!