Class ResultEntry

java.lang.Object
org.moeaframework.analysis.io.ResultEntry

public class ResultEntry extends Object
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 Details

    • ResultEntry

      public ResultEntry(NondominatedPopulation population)
      Constructs a result file entry with the specified non-dominated population.
      Parameters:
      population - the non-dominated population stored in this entry
    • ResultEntry

      public ResultEntry(NondominatedPopulation population, TypedProperties properties)
      Constructs a result file entry with the specified non-dominated population and auxiliary properties.
      Parameters:
      population - the non-dominated population stored in this entry
      properties - the auxiliary properties stored in this entry
  • Method Details

    • getPopulation

      public NondominatedPopulation getPopulation()
      Returns the non-dominated population stored in this entry.
      Returns:
      the non-dominated population stored in this entry
    • getProperties

      public TypedProperties getProperties()
      Returns the auxiliary properties stored in this entry.
      Returns:
      the auxiliary properties stored in this entry