![]() |
Google OR-Tools v9.14
a fast and portable software suite for combinatorial optimization
|
#include "ortools/routing/parsers/cvrptw_lib.h"#include <algorithm>#include <cstdint>#include <limits>#include <memory>#include <random>#include <string>#include <utility>#include <vector>#include "absl/container/btree_set.h"#include "absl/random/distributions.h"#include "absl/random/random.h"#include "absl/strings/str_format.h"#include "absl/strings/string_view.h"#include "absl/types/span.h"#include "ortools/base/logging.h"#include "ortools/constraint_solver/constraint_solver.h"#include "ortools/constraint_solver/routing.h"#include "ortools/constraint_solver/routing_index_manager.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 | |
| int32_t | operations_research::GetSeed (bool deterministic) |
| Random seed generator. | |
| void | operations_research::DisplayPlan (const RoutingIndexManager &manager, const RoutingModel &routing, const operations_research::Assignment &plan, bool use_same_vehicle_costs, int64_t max_nodes_per_group, int64_t same_vehicle_cost, absl::Span< const std::string > dimension_names) |