|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object net.sourceforge.cilib.moo.archive.Archive
public abstract class Archive
A representation of an archive of non-dominated solutions used by Multi-objective optimisation algorithms for solution storage during a search.
Constructor Summary | |
---|---|
Archive()
|
Method Summary | |
---|---|
abstract Collection<OptimisationSolution> |
dominates(OptimisationSolution candidateSolution)
Checks the entire archive and accumulates the solutions that dominates candidateSolution . |
static Archive |
get()
Static entrypoint to get to the Archive. |
abstract Collection<OptimisationSolution> |
isDominatedBy(OptimisationSolution candidateSolution)
Checks the archive and accumulates all solutions that is dominated by candidateSolution . |
static void |
set(Archive archive)
Set the archive to be used by a multi-objective optimisation algorithm. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Methods inherited from interface java.util.List |
---|
add, add, addAll, addAll, clear, contains, containsAll, equals, get, hashCode, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, retainAll, set, size, subList, toArray, toArray |
Constructor Detail |
---|
public Archive()
Method Detail |
---|
public static Archive get()
GuideSelectionStrategy
, or the ArchivingIterationStep
at the end of a multi-objective algorithm.
public static void set(Archive archive)
archive
- A concrete archive implementation to be used as the active archive.public abstract Collection<OptimisationSolution> dominates(OptimisationSolution candidateSolution)
candidateSolution
.
candidateSolution
- The solution to compare against all of the solutions in the archive.
candidateSolution
.public abstract Collection<OptimisationSolution> isDominatedBy(OptimisationSolution candidateSolution)
candidateSolution
.
candidateSolution
- The solution to compare against all of the solutions in the archive.
candidateSolution
.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |