#include <moeoContributionMetric.h>
Inheritance diagram for moeoContributionMetric< EOT >:

Public Types | |
| typedef EOT::Fitness | EOFitness |
| The fitness type of a solution. | |
Public Member Functions | |
| double | operator() (const std::vector< EOFitness > &_set1, const std::vector< EOFitness > &_set2) |
| Returns the contribution of the Pareto set '_set1' relatively to the Pareto set '_set2'. | |
Private Member Functions | |
| unsigned | card_C (const std::vector< EOFitness > &_set1, const std::vector< EOFitness > &_set2) |
| Returns the number of solutions both in '_set1' and '_set2'. | |
| unsigned | card_W (const std::vector< EOFitness > &_set1, const std::vector< EOFitness > &_set2) |
| Returns the number of solutions in '_set1' dominating at least one solution of '_set2'. | |
| unsigned | card_N (const std::vector< EOFitness > &_set1, const std::vector< EOFitness > &_set2) |
| Returns the number of solutions in '_set1' having no relation of dominance with those from '_set2'. | |
(Meunier, Talbi, Reininger: 'A multiobjective genetic algorithm for radio network optimization', in Proc. of the 2000 Congress on Evolutionary Computation, IEEE Press, pp. 317-324)
Definition at line 23 of file moeoContributionMetric.h.
| double moeoContributionMetric< EOT >::operator() | ( | const std::vector< EOFitness > & | _set1, | |
| const std::vector< EOFitness > & | _set2 | |||
| ) | [inline] |
Returns the contribution of the Pareto set '_set1' relatively to the Pareto set '_set2'.
| _set1 | the first Pareto set | |
| _set2 | the second Pareto set |
Definition at line 38 of file moeoContributionMetric.h.
References moeoContributionMetric< EOT >::card_C(), moeoContributionMetric< EOT >::card_N(), and moeoContributionMetric< EOT >::card_W().
| unsigned moeoContributionMetric< EOT >::card_C | ( | const std::vector< EOFitness > & | _set1, | |
| const std::vector< EOFitness > & | _set2 | |||
| ) | [inline, private] |
Returns the number of solutions both in '_set1' and '_set2'.
| _set1 | the first Pareto set | |
| _set2 | the second Pareto set |
Definition at line 57 of file moeoContributionMetric.h.
Referenced by moeoContributionMetric< EOT >::operator()().
| unsigned moeoContributionMetric< EOT >::card_W | ( | const std::vector< EOFitness > & | _set1, | |
| const std::vector< EOFitness > & | _set2 | |||
| ) | [inline, private] |
Returns the number of solutions in '_set1' dominating at least one solution of '_set2'.
| _set1 | the first Pareto set | |
| _set2 | the second Pareto set |
Definition at line 76 of file moeoContributionMetric.h.
Referenced by moeoContributionMetric< EOT >::operator()().
| unsigned moeoContributionMetric< EOT >::card_N | ( | const std::vector< EOFitness > & | _set1, | |
| const std::vector< EOFitness > & | _set2 | |||
| ) | [inline, private] |
Returns the number of solutions in '_set1' having no relation of dominance with those from '_set2'.
| _set1 | the first Pareto set | |
| _set2 | the second Pareto set |
Definition at line 95 of file moeoContributionMetric.h.
Referenced by moeoContributionMetric< EOT >::operator()().
1.5.1