Interface Archive<S>

All Superinterfaces:
Serializable
All Known Subinterfaces:
BoundedArchive<S>
All Known Implementing Classes:
AbstractBoundedArchive, ArchiveWithReferencePoint, BestSolutionsArchive, CrowdingDistanceArchive, CrowdingDistanceArchiveWithReferencePoint, GenericBoundedArchive, HypervolumeArchive, HypervolumeArchiveWithReferencePoint, KNNDistanceArchive, NonDominatedSolutionListArchive, SpatialSpreadDeviationArchive

public interface Archive<S> extends Serializable
Interface representing an archive of solutions
Author:
Antonio J. Nebro <antonio@lcc.uma.es>
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    add(S solution)
     
    get(int index)
     
    int
     
     
  • Method Details

    • add

      boolean add(S solution)
    • get

      S get(int index)
    • solutions

      List<S> solutions()
    • size

      int size()