Class LocalSearchOperator
- java.lang.Object
-
- com.google.ortools.constraintsolver.BaseObject
-
- com.google.ortools.constraintsolver.LocalSearchOperator
-
- Direct Known Subclasses:
IntVarLocalSearchOperator
public class LocalSearchOperator extends BaseObject
The base class for all local search operators.
A local search operator is an object that defines the neighborhood of a
solution. In other words, a neighborhood is the set of solutions which can
be reached from a given solution using an operator.
The behavior of the LocalSearchOperator class is similar to iterators.
The operator is synchronized with an assignment (gives the
current values of the variables); this is done in the Start() method.
Then one can iterate over the neighbors using the MakeNextNeighbor method.
This method returns an assignment which represents the incremental changes
to the current solution. It also returns a second assignment representing
the changes to the last solution defined by the neighborhood operator; this
assignment is empty if the neighborhood operator cannot track this
information.
-
-
Field Summary
-
Fields inherited from class com.google.ortools.constraintsolver.BaseObject
swigCMemOwn
-
-
Constructor Summary
Constructors Modifier Constructor Description LocalSearchOperator()protectedLocalSearchOperator(long cPtr, boolean cMemoryOwn)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description voiddelete()protected voidfinalize()protected static longgetCPtr(LocalSearchOperator obj)booleanHasFragments()booleanHoldsDelta()booleannextNeighbor(Assignment delta, Assignment deltadelta)voidreset()voidstart(Assignment assignment)protected voidswigDirectorDisconnect()protected static longswigRelease(LocalSearchOperator obj)voidswigReleaseOwnership()voidswigTakeOwnership()-
Methods inherited from class com.google.ortools.constraintsolver.BaseObject
getCPtr, swigRelease, toString
-
-
-
-
Method Detail
-
getCPtr
protected static long getCPtr(LocalSearchOperator obj)
-
swigRelease
protected static long swigRelease(LocalSearchOperator obj)
-
finalize
protected void finalize()
- Overrides:
finalizein classBaseObject
-
delete
public void delete()
- Overrides:
deletein classBaseObject
-
swigDirectorDisconnect
protected void swigDirectorDisconnect()
-
swigReleaseOwnership
public void swigReleaseOwnership()
-
swigTakeOwnership
public void swigTakeOwnership()
-
nextNeighbor
public boolean nextNeighbor(Assignment delta, Assignment deltadelta)
-
start
public void start(Assignment assignment)
-
reset
public void reset()
-
HasFragments
public boolean HasFragments()
-
HoldsDelta
public boolean HoldsDelta()
-
-