Class PopulationSizeCollector
java.lang.Object
org.moeaframework.analysis.collector.PopulationSizeCollector
- All Implemented Interfaces:
Collector
Collects the population size and archive size, if available, from an
EvolutionaryAlgorithm
.-
Constructor Summary
ConstructorDescriptionConstructs an unattached collector for recording the population size and archive size, if available, from anEvolutionaryAlgorithm
.PopulationSizeCollector
(EvolutionaryAlgorithm algorithm) Constructs a collector for recording the population size and archive size, if available, from the specifiedEvolutionaryAlgorithm
. -
Method Summary
Modifier and TypeMethodDescriptionReturns a new instance of this collector which has been attached to the specified object as identified by the attach point returned throughCollector.getAttachPoint()
.void
collect
(Observation observation) Collects the requested information from the object, storing the data to the specified observation.static int
getArchiveSize
(Observation observation) Reads the archive size from the observation.Returns the attach point describing where this collector is attached.static int
getPopulationSize
(Observation observation) Reads the population size from the observation.
-
Constructor Details
-
PopulationSizeCollector
public PopulationSizeCollector()Constructs an unattached collector for recording the population size and archive size, if available, from anEvolutionaryAlgorithm
. -
PopulationSizeCollector
Constructs a collector for recording the population size and archive size, if available, from the specifiedEvolutionaryAlgorithm
.- Parameters:
algorithm
- the algorithm this collector records data from
-
-
Method Details
-
getAttachPoint
Description copied from interface:Collector
Returns the attach point describing where this collector is attached. The matched object should be unique.- Specified by:
getAttachPoint
in interfaceCollector
- Returns:
- the attach point describing where this collector is attached
-
attach
Description copied from interface:Collector
Returns a new instance of this collector which has been attached to the specified object as identified by the attach point returned throughCollector.getAttachPoint()
. -
collect
Description copied from interface:Collector
Collects the requested information from the object, storing the data to the specified observation. This method must only be invoked after this collector has been attached to an appropriate object. -
getPopulationSize
Reads the population size from the observation.- Parameters:
observation
- the observation- Returns:
- the population size
-
getArchiveSize
Reads the archive size from the observation.- Parameters:
observation
- the observation- Returns:
- the archive size
-