Google OR-Tools v9.11
a fast and portable software suite for combinatorial optimization
|
#include <sys/types.h>
#include <algorithm>
#include <cstdint>
#include <deque>
#include <functional>
#include <initializer_list>
#include <limits>
#include <map>
#include <memory>
#include <optional>
#include <queue>
#include <set>
#include <string>
#include <tuple>
#include <type_traits>
#include <utility>
#include <vector>
#include "absl/container/flat_hash_map.h"
#include "absl/container/flat_hash_set.h"
#include "absl/log/check.h"
#include "absl/types/span.h"
#include "ortools/base/adjustable_priority_queue.h"
#include "ortools/constraint_solver/constraint_solver.h"
#include "ortools/constraint_solver/constraint_solveri.h"
#include "ortools/constraint_solver/routing.h"
#include "ortools/constraint_solver/routing_enums.pb.h"
#include "ortools/constraint_solver/routing_parameters.pb.h"
#include "ortools/constraint_solver/routing_types.h"
#include "ortools/constraint_solver/routing_utils.h"
Go to the source code of this file.
Namespaces | |
namespace | operations_research |
In SWIG mode, we don't want anything besides these top-level includes. | |
Functions | |
FirstSolutionStrategy::Value | operations_research::AutomaticFirstSolutionStrategy (bool has_pickup_deliveries, bool has_node_precedences, bool has_single_vehicle_node) |
std::vector< int64_t > | operations_research::ComputeVehicleEndChainStarts (const RoutingModel &model) |
DecisionBuilder * | operations_research::MakeSweepDecisionBuilder (RoutingModel *model, bool check_assignment) |
DecisionBuilder * | operations_research::MakeAllUnperformed (RoutingModel *model) |
Returns a DecisionBuilder making all nodes unperformed. | |