Class AdaptiveMultimethodVariationCollector
java.lang.Object
org.moeaframework.analysis.collector.AdaptiveMultimethodVariationCollector
- All Implemented Interfaces:
Collector
Collects the individual operator probabilities from
AdaptiveMultimethodVariation
.-
Constructor Summary
ConstructorDescriptionConstructs an unattached collector for recording the individual operator probabilities fromAdaptiveMultimethodVariation
.Constructs a collector for recording the individual operator probabilities from the specifiedAdaptiveMultimethodVariation
. -
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.Returns the attach point describing where this collector is attached.static double
getOperatorProbability
(Observation observation, String name) Reads the operator probability from the observation.static double
getOperatorProbability
(Observation observation, Variation operator) Reads the operator probability from the observation.
-
Constructor Details
-
AdaptiveMultimethodVariationCollector
public AdaptiveMultimethodVariationCollector()Constructs an unattached collector for recording the individual operator probabilities fromAdaptiveMultimethodVariation
. -
AdaptiveMultimethodVariationCollector
Constructs a collector for recording the individual operator probabilities from the specifiedAdaptiveMultimethodVariation
.- Parameters:
variation
- theAdaptiveMultimethodVariation
instance this collector records data from
-
-
Method Details
-
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. -
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()
. -
getOperatorProbability
Reads the operator probability from the observation.- Parameters:
observation
- the observationname
- the name of the operator- Returns:
- the operator probability
-
getOperatorProbability
Reads the operator probability from the observation.- Parameters:
observation
- the observationoperator
- the operator- Returns:
- the operator probability
-