|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjmetal.core.SolutionSet
jmetal.util.archive.Archive
jmetal.qualityIndicator.fastHypervolume.FastHypervolumeArchive
public class FastHypervolumeArchive
This class implements a bounded archive based on the hypervolume quality indicator
Field Summary | |
---|---|
Solution |
referencePoint_
|
Fields inherited from class jmetal.core.SolutionSet |
---|
solutionsList_ |
Constructor Summary | |
---|---|
FastHypervolumeArchive(int maxSize,
int numberOfObjectives)
Constructor. |
Method Summary | |
---|---|
boolean |
add(Solution solution)
Adds a Solution to the archive. |
void |
computeHVContribution()
This method forces to compute the contribution of each solution (required for PAEShv) |
Methods inherited from class jmetal.core.SolutionSet |
---|
add, best, clear, get, getCapacity, getMaxSize, indexWorst, iterator, printFeasibleFUN, printFeasibleVAR, printObjectives, printObjectivesToFile, printVariablesToFile, remove, replace, setCapacity, size, sort, union, worst, writeObjectivesToMatrix |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public Solution referencePoint_
Constructor Detail |
---|
public FastHypervolumeArchive(int maxSize, int numberOfObjectives)
maxSize
- The maximum size of the archive.numberOfObjectives
- The number of objectives.Method Detail |
---|
public boolean add(Solution solution)
Solution
to the archive. If the Solution
is dominated by any member of the archive, then it is discarded. If the
Solution
dominates some members of the archive, these are
removed. If the archive is full and the Solution
has to be
inserted, the solution contributing the least to the HV of the solution set
is discarded.
add
in class SolutionSet
solution
- The Solution
Solution
has been inserted, false
otherwise.public void computeHVContribution()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |