Uses of Class
adams.opt.genetic.stopping.AbstractStoppingCriterion
-
Packages that use AbstractStoppingCriterion Package Description adams.opt.genetic adams.opt.genetic.stopping -
-
Uses of AbstractStoppingCriterion in adams.opt.genetic
Fields in adams.opt.genetic declared as AbstractStoppingCriterion Modifier and Type Field Description protected AbstractStoppingCriterion
AbstractGeneticAlgorithm. m_StoppingCriterion
the stopping criterion.Methods in adams.opt.genetic that return AbstractStoppingCriterion Modifier and Type Method Description AbstractStoppingCriterion
AbstractGeneticAlgorithm. getStoppingCriterion()
Returns the stopping criterion in use.Methods in adams.opt.genetic with parameters of type AbstractStoppingCriterion Modifier and Type Method Description void
AbstractGeneticAlgorithm. setStoppingCriterion(AbstractStoppingCriterion value)
Sets the stopping criterion to use. -
Uses of AbstractStoppingCriterion in adams.opt.genetic.stopping
Subclasses of AbstractStoppingCriterion in adams.opt.genetic.stopping Modifier and Type Class Description class
MaxIterations
Stops after the maximum number of iterations have been reached.class
MaxIterationsWithoutImprovement
Stops after the maximum number of seconds since last improvement has been reached.class
MaxTrainTime
Stops after the maximum number of seconds have been reached.class
MaxTrainTimeWithoutImprovement
Stops after the maximum number of seconds since last improvement has been reached.class
MultiStoppingCriterion
Applies its sub-criteria, one after the other.Fields in adams.opt.genetic.stopping declared as AbstractStoppingCriterion Modifier and Type Field Description protected AbstractStoppingCriterion[]
MultiStoppingCriterion. m_Criteria
the criteria to use.Methods in adams.opt.genetic.stopping that return AbstractStoppingCriterion Modifier and Type Method Description AbstractStoppingCriterion[]
MultiStoppingCriterion. getCriteria()
Returns the criteria in use.Methods in adams.opt.genetic.stopping with parameters of type AbstractStoppingCriterion Modifier and Type Method Description void
MultiStoppingCriterion. setCriteria(AbstractStoppingCriterion[] value)
Sets the criteria to use.
-