Skip to content
Snippets Groups Projects
Commit 8a745991 authored by Romain BERNARD's avatar Romain BERNARD
Browse files

reverse priority queue order to have least the lowest deviation score first

parent 0377af82
No related branches found
No related tags found
1 merge request!2Route manipulation API with automatic constraint propagation
Pipeline #7397 passed with warnings
......@@ -9,7 +9,7 @@
#include <queue>
#include "BestRequestInsertion.h"
class BestInsertionQueue : public std::priority_queue<BestRequestInsertion, std::vector<BestRequestInsertion>> {
class BestInsertionQueue : public std::priority_queue<BestRequestInsertion, std::vector<BestRequestInsertion>, std::greater<>> {
private:
size_t _requestId{std::numeric_limits<size_t>::max()};
size_t _vehicleId{std::numeric_limits<size_t>::max()};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment