Class TimedParallelReoptimizableMultistarter<T extends Copyable<T>>

java.lang.Object
org.cicirello.search.concurrent.TimedParallelMultistarter<T>
org.cicirello.search.concurrent.TimedParallelReoptimizableMultistarter<T>
Type Parameters:
T - The type of object being optimized.
All Implemented Interfaces:
AutoCloseable, Splittable<TrackableSearch<T>>, Metaheuristic<T>, ReoptimizableMetaheuristic<T>, TrackableSearch<T>

public final class TimedParallelReoptimizableMultistarter<T extends Copyable<T>> extends TimedParallelMultistarter<T> implements ReoptimizableMetaheuristic<T>
This class is used for implementing parallel multistart metaheuristics. It can be used to restart any class that implements the ReoptimizableMetaheuristic interface. A multistart metaheuristic returns the best result from among all of the restarts. In the case of a parallel multistart metaheuristic, the search returns the best result from among all restarts across all threads.

This parallel multistarter enables specifying the run length in terms of time, rather than by number of restarts. It then executes as many restarts as that length of time allows. This may be more desirable for multiple use cases. First, if the run lengths can vary from one restart to another, each parallel instance of the search may have rather different run times if we were to specify the number of times to restart. This would lead to some threads sitting idle. Second, if we were executing different metaheuristics in different threads, then again one or more threads may complete early sitting idle if we were to specify number of times to restart. Third, a similar phenomena can result if we were executing the same metaheuristic (e.g., simulated annealing) but where each parallel instance was using a different mutation operator. Finally, if we know how much time we can afford to search, we don't need a priori know the length of time required by a restart.

There are several constructors enabling different ways to configure the search. You can initialize the search with a combination of a ReoptimizableMetaheuristic and number of threads along with either a RestartSchedule for the purpose of specifying run lengths for the restarts, or a run length if all runs are to be of the same length. You can also initialize the search with a Collection of RestartSchedule objects, one for each thread (with number of threads implied by size of Collection. Or you can initialize the search with a Collection of ReoptimizableMetaheuristic objects and a Collection of RestartSchedule objects (both Collections of the same size). You can also initialize the search with a ReoptimizableMultistarter configured with your restart schedule, along with the number of threads, or a Collection of ReoptimizableMultistarter objects.

  • Constructor Details

    • TimedParallelReoptimizableMultistarter

      public TimedParallelReoptimizableMultistarter(ReoptimizableMetaheuristic<T> search, int runLength, int numThreads)
      Constructs a parallel multistart metaheuristic that executes multiple runs of a specified metaheuristic in parallel across multiple threads. All restarts are the same in length.
      Parameters:
      search - The metaheuristic to restart multiple times in parallel.
      runLength - The length of every restarted run of the metaheuristic.
      numThreads - The number of threads to use.
      Throws:
      IllegalArgumentException - if numThreads is less than 1.
      IllegalArgumentException - if nunLength is less than 1.
    • TimedParallelReoptimizableMultistarter

      public TimedParallelReoptimizableMultistarter(ReoptimizableMetaheuristic<T> search, RestartSchedule r, int numThreads)
      Constructs a parallel multistart metaheuristic that executes multiple runs of a specified metaheuristic in parallel across multiple threads. All parallel instances follow the same restart schedule of run lengths.
      Parameters:
      search - The metaheuristic to restart multiple times in parallel.
      r - The schedule of run lengths. Note that the threads do not share a single RestartSchedule. Rather, each thread will be initialized with its own copy of r.
      numThreads - The number of threads to use.
      Throws:
      IllegalArgumentException - if numThreads is less than 1.
    • TimedParallelReoptimizableMultistarter

      public TimedParallelReoptimizableMultistarter(ReoptimizableMetaheuristic<T> search, Collection<? extends RestartSchedule> schedules)
      Constructs a parallel multistart metaheuristic that executes multiple runs of a specified metaheuristic in parallel across multiple threads. Each parallel instance follows its own restart schedule of run lengths.
      Parameters:
      search - The metaheuristic to restart multiple times in parallel.
      schedules - The schedules of run lengths, one for each thread. The number of threads will be equal to the number of restart schedules.
      Throws:
      IllegalArgumentException - if schedules.size() is less than 1.
    • TimedParallelReoptimizableMultistarter

      public TimedParallelReoptimizableMultistarter(Collection<? extends ReoptimizableMetaheuristic<T>> searches, Collection<? extends RestartSchedule> schedules)
      Constructs a parallel multistart metaheuristic that executes multiple runs of a set of specified metaheuristics in parallel across multiple threads. Each parallel search follows its own restart schedule of run lengths.
      Parameters:
      searches - A collection of the metaheuristics to restart multiple times in parallel. The number of threads will be equal to the size of this collection.
      schedules - The schedules of run lengths, one for each thread.
      Throws:
      IllegalArgumentException - if searches.size() is not equal to schedules.size().
      IllegalArgumentException - if the Collection of Metaheuristics don't all share the same problem (i.e., requires that s1.getProblem() == s2.getProblem() for all s1, s2 in searches).
      IllegalArgumentException - if the Collection of Metaheuristics don't all share a single ProgressTracker (i.e., requires that s1.getProgressTracker() == s2.getProgressTracker() for all s1, s2 in searches).
    • TimedParallelReoptimizableMultistarter

      public TimedParallelReoptimizableMultistarter(Collection<? extends ReoptimizableMetaheuristic<T>> searches, int runLength)
      Constructs a parallel multistart metaheuristic that executes multiple runs of a set of specified metaheuristics in parallel across multiple threads. All runs of all parallel instances follows a constant run length.
      Parameters:
      searches - A collection of the metaheuristics to restart multiple times in parallel. The number of threads will be equal to the size of this collection.
      runLength - The length of all restarted runs of all parallel metaheuristics.
      Throws:
      IllegalArgumentException - if runLength < 1.
      IllegalArgumentException - if the Collection of Metaheuristics don't all share the same problem (i.e., requires that s1.getProblem() == s2.getProblem() for all s1, s2 in searches).
      IllegalArgumentException - if the Collection of Metaheuristics don't all share a single ProgressTracker (i.e., requires that s1.getProgressTracker() == s2.getProgressTracker() for all s1, s2 in searches).
    • TimedParallelReoptimizableMultistarter

      public TimedParallelReoptimizableMultistarter(ReoptimizableMultistarter<T> multistartSearch, int numThreads)
      Constructs a parallel multistart metaheuristic that executes multiple runs of a specified metaheuristic in parallel across multiple threads. All parallel instances follow the same restart schedule of run lengths.
      Parameters:
      multistartSearch - A ReoptimizableMultistarter configured with the metaheuristic and restart schedule. Each of the threads will be an identical copy of this ReoptimizableMultistarter.
      numThreads - The number of threads to use.
      Throws:
      IllegalArgumentException - if numThreads is less than 1.
    • TimedParallelReoptimizableMultistarter

      public 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. Each of the Multistarters will run in its own thread. The number of threads will be equal to the number of Multistarters passed to the constructor.
      Parameters:
      multistarters - A collection of Multistarters configured with the metaheuristics and restart schedules for the threads.
      Throws:
      IllegalArgumentException - if the Collection of Multistarters don't all share the same problem (i.e., requires that s1.getProblem() == s2.getProblem() for all s1, s2 in multistarters).
      IllegalArgumentException - if the Collection of Multistarters don't all share a single ProgressTracker (i.e., requires that s1.getProgressTracker() == s2.getProgressTracker() for all s1, s2 in multistarters).
  • Method Details

    • reoptimize

      public SolutionCostPair<T> reoptimize(int time)
      Executes a parallel multistart search. The number of threads, the specific metaheuristic executed by each thread, the restart schedules, etc are determined by how the TimedParallelMultistarter was configured at the time of construction. All parallel instances of the search are executed for approximately the length of time indicated by the time parameter, restarting as many times as time allows, keeping track of the best solution across the multiple parallel runs of the search. It may terminate earlier if one of the parallel searches indicates the best possible solution was found. Each restart of each parallel search begins at the best solution found so far, but reinitializes any search control parameters.

      If this method is called multiple times, the restart schedules of the parallel metaheuristics are not reinitialized, and the run lengths for the additional restarts will continue where the schedules left off.

      Specified by:
      reoptimize in interface ReoptimizableMetaheuristic<T extends Copyable<T>>
      Parameters:
      time - The approximate length of time for the search. The unit of time is as indicated by the constant TimedParallelMultistarter.TIME_UNIT_MS unless changed by a call to the TimedParallelMultistarter.setTimeUnit(int) method. For example, assuming TimedParallelMultistarter.setTimeUnit(int) has not been called, then the search will run for approximately: time * TimedParallelMultistarter.TIME_UNIT_MS milliseconds.
      Returns:
      The best end of run solution (and its cost) of this set of parallel runs, which may or may not be the same as the solution contained in this metaheuristic's ProgressTracker, which contains the best of all runs. Returns null if the run did not execute, such as if the ProgressTracker already contains the theoretical best solution.
      Throws:
      IllegalStateException - if the TimedParallelMultistarter.close() method was previously called.
      See Also:
    • split

      Description copied from interface: Splittable
      Generates a functionally identical copy of this object, for use in multithreaded implementations of search algorithms. The state of the object that is returned may or may not be identical to that of the original. Thus, this is a distinct concept from the functionality of the Copyable interface. Classes that implement this interface must ensure that the object returned performs the same functionality, and that it does not share any state data that would be either unsafe or inefficient for concurrent access by multiple threads. The split method is allowed to simply return the this reference, provided that it is both safe and efficient for multiple threads to share a single copy of the Splittable object. The intention is to provide a multithreaded search with the capability to provide spawned threads with their own distinct search operators. Such multithreaded algorithms can call the split method for each thread it spawns to generate a functionally identical copy of the operator, but with independent state.
      Specified by:
      split in interface Metaheuristic<T extends Copyable<T>>
      Specified by:
      split in interface ReoptimizableMetaheuristic<T extends Copyable<T>>
      Specified by:
      split in interface Splittable<T extends Copyable<T>>
      Overrides:
      split in class TimedParallelMultistarter<T extends Copyable<T>>
      Returns:
      A functionally identical copy of the object, or a reference to this if it is both safe and efficient for multiple threads to share a single instance of this Splittable object.