|
MOEA Framework 2.5 API Specification |
|||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||
java.lang.Objectorg.moeaframework.core.indicator.NormalizedIndicator
org.moeaframework.core.indicator.RIndicator
public abstract class RIndicator
Abstract class for implementing R indicator functions.
References:
| Nested Class Summary | |
|---|---|
static class |
RIndicator.ChebychevUtility
Chebychev (also referred to as Tchebycheff) utility function. |
static class |
RIndicator.LinearWeightedSumUtility
Utility computed as the sum of the weighted objective values. |
static interface |
RIndicator.UtilityFunction
Interface for defining utility functions. |
| Field Summary | |
|---|---|
protected RIndicator.UtilityFunction |
utilityFunction
The utility function used by the R2 calculation. |
protected double[][] |
weights
The weights, typically uniformly distributed. |
| Fields inherited from class org.moeaframework.core.indicator.NormalizedIndicator |
|---|
problem |
| Constructor Summary | |
|---|---|
RIndicator(Problem problem,
int subdivisions,
NondominatedPopulation referenceSet)
Constructs a new R indicator using the Chebychev utility function. |
|
RIndicator(Problem problem,
int subdivisions,
NondominatedPopulation referenceSet,
RIndicator.UtilityFunction utilityFunction)
Constructs a new R indicator using the specified utility function. |
|
| Method Summary | |
|---|---|
double |
expectedUtility(NondominatedPopulation population)
Computes the expected utility for the given population. |
static int |
getDefaultSubdivisions(Problem problem)
Returns the default number of subdivisions for a given problem. |
| Methods inherited from class org.moeaframework.core.indicator.NormalizedIndicator |
|---|
getNormalizedReferenceSet, normalize |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Methods inherited from interface org.moeaframework.core.Indicator |
|---|
evaluate |
| Field Detail |
|---|
protected RIndicator.UtilityFunction utilityFunction
protected double[][] weights
| Constructor Detail |
|---|
public RIndicator(Problem problem,
int subdivisions,
NondominatedPopulation referenceSet)
problem - the problemsubdivisions - the number of subdivisions along each objectivereferenceSet - the reference set
public RIndicator(Problem problem,
int subdivisions,
NondominatedPopulation referenceSet,
RIndicator.UtilityFunction utilityFunction)
problem - the problemsubdivisions - the number of subdivisions along each objectivereferenceSet - the reference setutilityFunction - the utility function| Method Detail |
|---|
public double expectedUtility(NondominatedPopulation population)
population - the population
public static int getDefaultSubdivisions(Problem problem)
problem - the problem
|
MOEA Framework 2.5 API Specification |
|||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||