Google OR-Tools v9.11
a fast and portable software suite for combinatorial optimization
|
clang-format off More...
#include <routing_search.h>
Public Member Functions | |
SeedQueue (bool prioritize_farthest_nodes) | |
Public Attributes | |
std::priority_queue< Seed, std::vector< Seed >, std::greater< Seed > > | priority_queue |
const bool | prioritize_farthest_nodes |
clang-format off
Definition at line 365 of file routing_search.h.
|
inlineexplicit |
Definition at line 366 of file routing_search.h.
const bool operations_research::CheapestInsertionFilteredHeuristic::SeedQueue::prioritize_farthest_nodes |
When 'prioritize_farthest_nodes' is true, the start/end distance is inverted so higher priority is given to farther nodes.
Definition at line 375 of file routing_search.h.
std::priority_queue<Seed, std::vector<Seed>, std::greater<Seed> > operations_research::CheapestInsertionFilteredHeuristic::SeedQueue::priority_queue |
By default, the priority is given (hierarchically) to nodes with lower number of allowed vehicles, higher penalty and lower start/end distance.
Definition at line 372 of file routing_search.h.