This commit is contained in:
Christopher Sanden
2025-11-17 17:34:30 +01:00
parent 1e00ba3521
commit d1fa8eda6b
2 changed files with 27 additions and 14 deletions

View File

@@ -56,7 +56,7 @@ public:
// Callbacks & funcs
bool onNodeRead(int aIndex, int aTotalCount, const std::string& aNode);
bool onEdgeRead(int aIndex, int aTotalCount, std::string& aFromNode, std::string& aToNode, float aWeight);
bool onEdgeRead(int aIndex, int aTotalCount, const std::string& aFromNode, const std::string& aToNode, float aWeight);
float Dijkstra(const Graph& graph, int src, int dst, std::vector<int>& outPath);