#pragma once #include #include #include #include namespace OptimisationTools { bool dijkstraAlgorithm(const int numElements, int startIndex, int endIndex, QVector &elementPath, std::function distanceDij); }