Class ResultEntry
java.lang.Object
org.moeaframework.analysis.series.ResultEntry
- All Implemented Interfaces:
Serializable
Stores a population, typically the non-dominated result from an algorithm, along with any associated properties.
- See Also:
-
Field Summary
-
Constructor Summary
ConstructorDescriptionResultEntry
(Population population) Constructs a result with the specified population.ResultEntry
(Population population, TypedProperties properties) Constructs a result with the specified population and properties. -
Method Summary
Modifier and TypeMethodDescriptionReturns the population associated with this result.Returns the properties associated with this result.
-
Field Details
-
NFE
Property used to store the number of function evaluations (NFE).- See Also:
-
ElapsedTime
Property used to store the elapsed wall-clock time.- See Also:
-
-
Constructor Details
-
ResultEntry
Constructs a result with the specified population.- Parameters:
population
- the population
-
ResultEntry
Constructs a result with the specified population and properties.- Parameters:
population
- the populationproperties
- the properties
-
-
Method Details
-
getPopulation
Returns the population associated with this result.- Returns:
- the population
-
getProperties
Returns the properties associated with this result.- Returns:
- the properties
-