Package org.moeaframework.analysis.io
Class ResultEntry
java.lang.Object
org.moeaframework.analysis.io.ResultEntry
An entry in a result file. This captures the non-dominated population along with properties associated with the
entry. The properties could include, for example, the number of function evaluations or performance metrics.
- See Also:
-
Constructor Summary
ConstructorDescriptionResultEntry
(NondominatedPopulation population) Constructs a result file entry with the specified non-dominated population.ResultEntry
(NondominatedPopulation population, TypedProperties properties) Constructs a result file entry with the specified non-dominated population and auxiliary properties. -
Method Summary
Modifier and TypeMethodDescriptionReturns the non-dominated population stored in this entry.Returns the auxiliary properties stored in this entry.
-
Constructor Details
-
ResultEntry
Constructs a result file entry with the specified non-dominated population.- Parameters:
population
- the non-dominated population stored in this entry
-
ResultEntry
Constructs a result file entry with the specified non-dominated population and auxiliary properties.- Parameters:
population
- the non-dominated population stored in this entryproperties
- the auxiliary properties stored in this entry
-
-
Method Details
-
getPopulation
Returns the non-dominated population stored in this entry.- Returns:
- the non-dominated population stored in this entry
-
getProperties
Returns the auxiliary properties stored in this entry.- Returns:
- the auxiliary properties stored in this entry
-