fast_paths
fast_paths copied to clipboard
Fast shortest path calculations for Rust
Hey, i am using this lib for the current advent of code. And I got the wrong result for my input. The test input is working and everything else also....
Some of the ideas taken from this discussion: https://github.com/Stunkymonkey/osm_ch/issues/1 * [x] cancel witness searches after a certain amount of nodes have been explored -> see #37 * [ ] use...
See discussion here: https://github.com/easbar/fast_paths/commit/20ba8105ee60a33d22f8a11dff83b8e5094430ac#r53021469
My main use of this algorithm is in [pandana](https://github.com/UDST/pandana) ware the common need is to for each knode, calculate summary statistics about all the nodes that are within a thresholded.
I test the following , it raise error: let shortest_path = path_calculator.calc_path_multiple_sources_and_targets(&fast_graph, sources, targets); ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ method not found in `PathCalculator` // ... see above // we want to either start...
Your library works great for me when I use a set of edges with under 2200 records. When I try it with a larger set of edges the application hangs.....