Home
last modified time | relevance | path

Searched refs:sorted_savings_per_vehicle_type_ (Results 1 – 1 of 1) sorted by relevance

/dports/math/py-or-tools/or-tools-9.2/ortools/constraint_solver/
H A Drouting_search.cc2570 sorted_savings_per_vehicle_type_.clear(); in InitializeContainer()
2571 sorted_savings_per_vehicle_type_.resize(vehicle_types_); in InitializeContainer()
2572 for (std::vector<Saving>& savings : sorted_savings_per_vehicle_type_) { in InitializeContainer()
2599 CHECK(!sorted_savings_per_vehicle_type_.empty()) in AddNewSaving()
2601 sorted_savings_per_vehicle_type_[vehicle_type].push_back(saving); in AddNewSaving()
2609 for (std::vector<Saving>& savings : sorted_savings_per_vehicle_type_) { in Sort()
2614 const auto& savings = sorted_savings_per_vehicle_type_[0]; in Sort()
2732 return sorted_savings_per_vehicle_type_[type]; in GetSortedSavingsForVehicleType()
2914 std::vector<std::vector<Saving>> sorted_savings_per_vehicle_type_; member in operations_research::SavingsFilteredHeuristic::SavingsContainer