Open joshheinrichs opened 9 years ago
Currently, all vertexes are finding the shortest path to all other vertexes using Djikstra's algorithm. This means that it has a O(n^3log(n)) running time. This can be reduced down to O(n^2).
Probably not relevant for the moment, since only point to point distance is required. This feature will likely be cut.
Currently, all vertexes are finding the shortest path to all other vertexes using Djikstra's algorithm. This means that it has a O(n^3log(n)) running time. This can be reduced down to O(n^2).