| Class | Description |
|---|---|
| LocalSearch<SolutionType extends Solution> |
Local searches are searches that start from an initial solution and modify this solution in an attempt to improve it.
|
| MultiNeighbourhoodSearch<SolutionType extends Solution> |
Abstract neighbourhood search that uses multiple neighbourhoods to modify the current solution.
|
| NeighbourhoodSearch<SolutionType extends Solution> |
A neighbourhood search is a specific kind of local search in which the current solution is repeatedly modified by
applying moves, generated by one or more neighbourhoods, that transform this solution into a similar, neighbouring
solution.
|
| Search<SolutionType extends Solution> |
General abstract search used to solve a problem with the specified solution type.
|
| SingleNeighbourhoodSearch<SolutionType extends Solution> |
Abstract neighbourhood search that uses a single neighbourhood to modify the current solution.
|
Copyright © 2016. All rights reserved.