![]() |
Google OR-Tools v9.12
a fast and portable software suite for combinatorial optimization
|
#include <cstdint>
#include <functional>
#include <optional>
#include <vector>
#include "ortools/constraint_solver/constraint_solver.h"
#include "ortools/constraint_solver/routing.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 | |
Constraint * | operations_research::MakeDifferentFromValues (Solver *solver, IntVar *var, std::vector< int64_t > values) |
Constraint * | operations_research::MakeResourceConstraint (const RoutingModel::ResourceGroup *resource_group, const std::vector< IntVar * > *vehicle_resource_vars, RoutingModel *model) |
Constraint * | operations_research::MakePathSpansAndTotalSlacks (const RoutingDimension *dimension, std::vector< IntVar * > spans, std::vector< IntVar * > total_slacks) |
Constraint * | operations_research::MakeRouteConstraint (RoutingModel *model, std::vector< IntVar * > route_cost_vars, std::function< std::optional< int64_t >(const std::vector< int64_t > &)> route_evaluator) |