Class CompoundTerminationCondition

java.lang.Object
org.moeaframework.core.termination.CompoundTerminationCondition
All Implemented Interfaces:
TerminationCondition

public class CompoundTerminationCondition extends Object implements TerminationCondition
Terminates a run when one or more termination conditions are satisfied.
  • Constructor Details

    • CompoundTerminationCondition

      public CompoundTerminationCondition(TerminationCondition... conditions)
      Constructs a new termination condition based on at least one individual termination condition being satisfied.
      Parameters:
      conditions - the termination conditions
  • Method Details

    • initialize

      public void initialize(Algorithm algorithm)
      Description copied from interface: TerminationCondition
      Invoked when the algorithm is created to collect any initial conditions. Note that the algorithm may not have been initialized at this point.
      Specified by:
      initialize in interface TerminationCondition
      Parameters:
      algorithm - the algorithm
    • shouldTerminate

      public boolean shouldTerminate(Algorithm algorithm)
      Description copied from interface: TerminationCondition
      Invoked after every step to check if the algorithm should terminate.
      Specified by:
      shouldTerminate in interface TerminationCondition
      Parameters:
      algorithm - the algorithm
      Returns:
      true if the algorithm should terminate; false otherwise