OptimisationTools.h 295 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12
#pragma once
#include <QObject>
#include <QDebug>

#include <functional>
#include <QVector>

namespace OptimisationTools {
    bool dijkstraAlgorithm(const int numElements, int startIndex, int endIndex, QVector<int> &elementPath, std::function<double(const int, const int)> distanceDij);
}