| Assignment |
An Assignment is a variable -> domains mapping, used
to report solutions to the user.
|
| AssignmentElement |
|
| AssignmentIntContainer |
|
| AssignmentIntervalContainer |
|
| AssignmentSequenceContainer |
|
| BaseIntExpr |
|
| BaseLns |
This is the base class for building an Lns operator.
|
| BaseObject |
A BaseObject is the root of all reversibly allocated objects.
A DebugString method and the associated << operator are implemented
as a convenience.
|
| BooleanVar |
|
| CastConstraint |
Cast constraints are special channeling constraints designed
to keep a variable in sync with an expression.
|
| ChangeValue |
Defines operators which change the value of variables;
each neighbor corresponds to *one* modified variable.
Sub-classes have to define ModifyValue which determines what the new
variable value is going to be (given the current value and the variable).
|
| Constraint |
A constraint is the main modeling object.
|
| ConstraintSolverParameters |
Solver parameters.
|
| ConstraintSolverParameters.Builder |
Solver parameters.
|
| ConstraintSolverParameters.TrailCompression |
Internal parameters of the solver.
|
| ConstraintSolverParametersOrBuilder |
|
| Decision |
A Decision represents a choice point in the search tree.
|
| DecisionBuilder |
A DecisionBuilder is responsible for creating the search tree.
|
| DecisionVisitor |
A DecisionVisitor is used to inspect a decision.
It contains virtual methods for all type of 'declared' decisions.
|
| DefaultPhaseParameters |
This struct holds all parameters for the default search.
DefaultPhaseParameters is only used by Solver::MakeDefaultPhase methods.
Note this is for advanced users only.
|
| Demon |
A Demon is the base element of a propagation queue.
|
| DisjunctiveConstraint |
|
| FirstSolutionStrategy |
First solution strategies, used as starting point of local search.
|
| FirstSolutionStrategy.Builder |
First solution strategies, used as starting point of local search.
|
| FirstSolutionStrategy.Value |
Protobuf enum operations_research.FirstSolutionStrategy.Value
|
| FirstSolutionStrategyOrBuilder |
|
| GlobalVehicleBreaksConstraint |
GlobalVehicleBreaksConstraint ensures breaks constraints are enforced on
all vehicles in the dimension passed to its constructor.
It is intended to be used for dimensions representing time.
A break constraint ensures break intervals fit on the route of a vehicle.
For a given vehicle, it forces break intervals to be disjoint from visit
intervals, where visit intervals start at CumulVar(node) and last for
node_visit_transit[node].
|
| ImprovementSearchLimit |
|
| IntBoolPair |
|
| IntervalVar |
Interval variables are often used in scheduling.
|
| IntervalVarElement |
|
| IntExpr |
The class IntExpr is the base of all integer expressions in
constraint programming.
It contains the basic protocol for an expression:
- setting and modifying its bound
- querying if it is bound
- listening to events modifying its bounds
- casting it into a variable (instance of IntVar)
|
| IntIntToLongFunction |
Represents a function that accepts two int-valued arguments and produces a
long-valued result.
|
| IntTupleSet |
|
| IntVar |
The class IntVar is a subset of IntExpr.
|
| IntVarElement |
|
| IntVarIterator |
The class Iterator has two direct subclasses.
|
| IntVarLocalSearchFilter |
|
| IntVarLocalSearchHandler |
|
| IntVarLocalSearchOperator |
|
| IntVarLocalSearchOperatorTemplate |
Base operator class for operators manipulating variables.
|
| LocalSearchFilter |
Classes to which this template function can be applied to as of 04/2014.
Usage: LocalSearchOperator* op = MakeLocalSearchOperator<Relocate>(...);
class TwoOpt;
class Relocate;
class Exchange;
class Cross;
class MakeActiveOperator;
class MakeInactiveOperator;
class MakeChainInactiveOperator;
class SwapActiveOperator;
class ExtendedSwapActiveOperator;
class MakeActiveAndRelocate;
class RelocateAndMakeActiveOperator;
class RelocateAndMakeInactiveOperator;
Local Search Filters are used for fast neighbor pruning.
Filtering a move is done in several phases:
- in the Relax phase, filters determine which parts of their internals
will be changed by the candidate, and modify intermediary State
- in the Accept phase, filters check that the candidate is feasible,
- if the Accept phase succeeds, the solver may decide to trigger a
Synchronize phase that makes filters change their internal representation
to the last candidate,
- otherwise (Accept fails or the solver does not want to synchronize),
a Revert phase makes filters erase any intermediary State generated by the
Relax and Accept phases.
A given filter has phases called with the following pattern:
(Relax.Accept.Synchronize | Relax.Accept.Revert | Relax.Revert)*.
Filters's Revert() is always called in the reverse order their Accept() was
called, to allow late filters to use state done/undone by early filters'
Accept()/Revert().
|
| LocalSearchFilterManager |
Filter manager: when a move is made, filters are executed to decide whether
the solution is feasible and compute parts of the new cost.
|
| LocalSearchFilterManager.FilterEvent |
|
| LocalSearchMetaheuristic |
Local search metaheuristics used to guide the search.
|
| LocalSearchMetaheuristic.Builder |
Local search metaheuristics used to guide the search.
|
| LocalSearchMetaheuristic.Value |
Protobuf enum operations_research.LocalSearchMetaheuristic.Value
|
| LocalSearchMetaheuristicOrBuilder |
|
| LocalSearchMonitor |
|
| LocalSearchOperator |
This class represent a reversible FIFO structure.
The main difference w.r.t a standard FIFO structure is that a Solver is
given as parameter to the modifiers such that the solver can store the
backtrack information
Iterator's traversing order should not be changed, as some algorithm
depend on it to be consistent.
It's main use is to store a list of demons in the various classes of
variables.
The base class for all local search operators.
A local search operator is an object that defines the neighborhood of a
solution.
|
| LocalSearchPhaseParameters |
|
| LongTernaryOperator |
Represents an operation upon three long-valued operands and producing a
long-valued result.
|
| LongTernaryPredicate |
Represents a predicate (boolean-valued function) uppon
three long-valued operands.
|
| mainConstants |
|
| ModelCache |
Implements a complete cache for model elements: expressions and
constraints.
|
| ModelVisitor |
Model visitor.
|
| OptimizeVar |
This class encapsulates an objective.
|
| Pack |
|
| PathOperator |
Base class of the local search operators dedicated to path modifications
(a path is a set of nodes linked together by arcs).
This family of neighborhoods supposes they are handling next variables
representing the arcs (var[i] represents the node immediately after i on
a path).
Several services are provided:
- arc manipulators (SetNext(), ReverseChain(), MoveChain())
- path inspectors (Next(), Prev(), IsPathEnd())
- path iterators: operators need a given number of nodes to define a
neighbor; this class provides the iteration on a given number of (base)
nodes which can be used to define a neighbor (through the BaseNode method)
Subclasses only need to override MakeNeighbor to create neighbors using
the services above (no direct manipulation of assignments).
|
| PropagationBaseObject |
NOLINT
The PropagationBaseObject is a subclass of BaseObject that is also
friend to the Solver class.
|
| PropagationMonitor |
|
| RegularLimit |
Usual limit based on wall_time, number of explored branches and
number of failures in the search tree
|
| RegularLimitParameters |
A search limit
The default values for int64 fields is the maxima value, i.e., 2^63-1
|
| RegularLimitParameters.Builder |
A search limit
The default values for int64 fields is the maxima value, i.e., 2^63-1
|
| RegularLimitParametersOrBuilder |
|
| RevBool |
This class adds reversibility to a POD type.
It contains the stamp optimization.
|
| RevInteger |
This class adds reversibility to a POD type.
It contains the stamp optimization.
|
| RevLong |
This class adds reversibility to a POD type.
It contains the stamp optimization.
|
| RevPartialSequence |
----- RevPartialSequence -----
|
| RoutingDimension |
Dimensions represent quantities accumulated at nodes along the routes.
|
| RoutingIndexManager |
Manager for any NodeIndex <-> variable index conversion.
|
| RoutingModel |
|
| RoutingModel.VehicleTypeContainer |
Struct used to sort and store vehicles by their type.
|
| RoutingModel.VehicleTypeContainer.VehicleClassEntry |
|
| RoutingModelParameters |
Parameters which have to be set when creating a RoutingModel.
|
| RoutingModelParameters.Builder |
Parameters which have to be set when creating a RoutingModel.
|
| RoutingModelParametersOrBuilder |
|
| RoutingModelVisitor |
Routing model visitor.
|
| RoutingSearchParameters |
Parameters defining the search used to solve vehicle routing problems.
|
| RoutingSearchParameters.Builder |
Parameters defining the search used to solve vehicle routing problems.
|
| RoutingSearchParameters.ImprovementSearchLimitParameters |
Parameters required for the improvement search limit.
|
| RoutingSearchParameters.ImprovementSearchLimitParameters.Builder |
Parameters required for the improvement search limit.
|
| RoutingSearchParameters.ImprovementSearchLimitParametersOrBuilder |
|
| RoutingSearchParameters.LocalSearchNeighborhoodOperators |
Local search neighborhood operators used to build a solutions neighborhood.
|
| RoutingSearchParameters.LocalSearchNeighborhoodOperators.Builder |
Local search neighborhood operators used to build a solutions neighborhood.
|
| RoutingSearchParameters.LocalSearchNeighborhoodOperatorsOrBuilder |
|
| RoutingSearchParameters.SchedulingSolver |
Underlying solver to use in dimension scheduling, respectively for
continuous and mixed models.
|
| RoutingSearchParametersOrBuilder |
|
| SearchLimit |
Base class of all search limits.
|
| SearchLog |
The base class of all search logs that periodically outputs information when
the search is running.
|
| SearchMonitor |
A search monitor is a simple set of callbacks to monitor all search events
|
| SequenceVar |
A sequence variable is a variable whose domain is a set of possible
orderings of the interval variables.
|
| SequenceVarElement |
The SequenceVarElement stores a partial representation of ranked
interval variables in the underlying sequence variable.
This representation consists of three vectors:
- the forward sequence.
|
| SequenceVarLocalSearchHandler |
|
| SequenceVarLocalSearchOperator |
|
| SequenceVarLocalSearchOperatorTemplate |
Base operator class for operators manipulating variables.
|
| SolutionCollector |
This class is the root class of all solution collectors.
It implements a basic query API to be used independently
of the collector used.
|
| SolutionPool |
This class is used to manage a pool of solutions.
|
| Solver |
Solver Class
A solver represents the main computation engine.
|
| Solver.FailException |
This exceptions signal that a failure has been raised in the C++ world.
|
| Solver.IntegerCastInfo |
Holds semantic information stating that the 'expression' has been
cast into 'variable' using the Var() method, and that
'maintainer' is responsible for maintaining the equality between
'variable' and 'expression'.
|
| SWIGTYPE_p_absl__Duration |
|
| SWIGTYPE_p_absl__flat_hash_setT_int_t |
|
| SWIGTYPE_p_std__vectorT_absl__flat_hash_setT_int_t_t |
|
| SWIGTYPE_p_std__vectorT_int_t |
|
| SWIGTYPE_p_std__vectorT_operations_research__Assignment_const_p_t |
|
| SWIGTYPE_p_std__vectorT_operations_research__LocalSearchFilterManager__FilterEvent_t |
|
| SWIGTYPE_p_std__vectorT_std__dequeT_int_t_t |
|
| SWIGTYPE_p_std__vectorT_std__setT_operations_research__RoutingModel__VehicleTypeContainer__VehicleClassEntry_t_t |
|
| SymmetryBreaker |
A symmetry breaker is an object that will visit a decision and
create the 'symmetrical' decision in return.
Each symmetry breaker represents one class of symmetry.
|
| TypeIncompatibilityChecker |
Checker for type incompatibilities.
|
| TypeRegulationsChecker |
|
| TypeRegulationsConstraint |
The following constraint ensures that incompatibilities and requirements
between types are respected.
It verifies both "hard" and "temporal" incompatibilities.
Two nodes with hard incompatible types cannot be served by the same vehicle
at all, while with a temporal incompatibility they can't be on the same
route at the same time.
The VisitTypePolicy of a node determines how visiting it impacts the type
count on the route.
For example, for
- three temporally incompatible types T1 T2 and T3
- 2 pairs of nodes a1/r1 and a2/r2 of type T1 and T2 respectively, with
- a1 and a2 of VisitTypePolicy TYPE_ADDED_TO_VEHICLE
- r1 and r2 of policy ADDED_TYPE_REMOVED_FROM_VEHICLE
- 3 nodes A, UV and AR of type T3, respectively with type policies
TYPE_ADDED_TO_VEHICLE, TYPE_ON_VEHICLE_UP_TO_VISIT and
TYPE_SIMULTANEOUSLY_ADDED_AND_REMOVED
the configurations
UV --> a1 --> r1 --> a2 --> r2, a1 --> r1 --> a2 --> r2 --> A and
a1 --> r1 --> AR --> a2 --> r2 are acceptable, whereas the configurations
a1 --> a2 --> r1 --> ..., or A --> a1 --> r1 --> ..., or
a1 --> r1 --> UV --> ...
|
| TypeRequirementChecker |
Checker for type requirements.
|