| Interface | Description |
|---|---|
| StopCriterion |
Interface of a stop criterion that may be attached to a search to terminate it when a certain condition is met.
|
| Class | Description |
|---|---|
| MaxRuntime |
Stop criterion that limits runtime of a search run.
|
| MaxSteps |
Stop criterion that limits the number of steps of a search run.
|
| MaxStepsWithoutImprovement |
Stop criterion that limits the number of steps without finding any improvement during a search run.
|
| MaxTimeWithoutImprovement |
Stop criterion that limits the time without finding any improvement during a search run.
|
| MinDelta |
Stop criterion that imposes a minimum delta (amount of improvement in evaluation)
when finding a new best solution during a search run, compared to the previous
best known solution.
|
| StopCriterionChecker |
A stop criterion checker is responsible for checking the stop criteria of a given search, while this
search is running.
|
Copyright © 2016. All rights reserved.