Uses of Class
org.cicirello.search.restarts.ReoptimizableMultistarter
-
Packages that use ReoptimizableMultistarter Package Description org.cicirello.search.concurrent This package includes multithreaded search implementations, as well as classes and interfaces related to implementing multithreaded metaheuristics.org.cicirello.search.restarts This package includes classes and interfaces related to implementing multistart metaheuristics (i.e., metaheuristics that periodically restart, and return the best solution across a number of such restarts). -
-
Uses of ReoptimizableMultistarter in org.cicirello.search.concurrent
Constructors in org.cicirello.search.concurrent with parameters of type ReoptimizableMultistarter Constructor Description ParallelReoptimizableMultistarter(ReoptimizableMultistarter<T> multistartSearch, int numThreads)
Constructs a parallel multistart metaheuristic that executes multiple runs of a specified metaheuristic in parallel across multiple threads.TimedParallelReoptimizableMultistarter(ReoptimizableMultistarter<T> multistartSearch, int numThreads)
Constructs a parallel multistart metaheuristic that executes multiple runs of a specified metaheuristic in parallel across multiple threads.Constructor parameters in org.cicirello.search.concurrent with type arguments of type ReoptimizableMultistarter Constructor Description ParallelReoptimizableMultistarter(Collection<ReoptimizableMultistarter<T>> multistarters)
Constructs a parallel multistart metaheuristic that executes multiple runs of a set of specified metaheuristics in parallel across multiple threads.TimedParallelReoptimizableMultistarter(Collection<ReoptimizableMultistarter<T>> multistarters)
Constructs a parallel multistart metaheuristic that executes multiple runs of a set of specified metaheuristics in parallel across multiple threads. -
Uses of ReoptimizableMultistarter in org.cicirello.search.restarts
Methods in org.cicirello.search.restarts that return ReoptimizableMultistarter Modifier and Type Method Description ReoptimizableMultistarter<T>
ReoptimizableMultistarter. split()
-