#include <MultiObjectiveFunctions.h>

Public Member Functions | |
| ZDT1 (unsigned d) | |
| Constructor. | |
| ~ZDT1 () | |
| Destructor. | |
| unsigned int | objectives () const |
| return the number of objectives to optimize | |
| void | result (double *const &point, std::vector< double > &value) |
| bool | ProposeStartingPoint (double *&point) const |
| bool | utopianFitness (std::vector< double > &value) const |
| If possible, this method returns (a bound on) the best possible fitness. | |
| bool | nadirFitness (std::vector< double > &value) const |
| If possible, this method returns (a bound on) the worst possible fitness. | |
where
Definition at line 160 of file MultiObjectiveFunctions.h.
| ZDT1::ZDT1 | ( | unsigned | d | ) |
Constructor.
Definition at line 163 of file MultiObjectiveFunctions.cpp.
References ObjectiveFunction::m_name.
| ZDT1::~ZDT1 | ( | ) |
Destructor.
Definition at line 168 of file MultiObjectiveFunctions.cpp.
References ObjectiveFunctionT< T * >::constrainthandler.
| bool ZDT1::nadirFitness | ( | std::vector< double > & | value | ) | const [virtual] |
If possible, this method returns (a bound on) the worst possible fitness.
For single objective optimization this information is rarely of any use, while for multi objective optimization a so-called nadir point is important for the computation of standard quality indicators like the hypervolume.
| fitness | component wise worst fitness |
Reimplemented from ObjectiveFunctionVS< double >.
Definition at line 215 of file MultiObjectiveFunctions.cpp.
| unsigned int ZDT1::objectives | ( | ) | const [virtual] |
return the number of objectives to optimize
Implements ObjectiveFunction.
Definition at line 175 of file MultiObjectiveFunctions.cpp.
| bool ZDT1::ProposeStartingPoint | ( | double *& | point | ) | const |
Definition at line 201 of file MultiObjectiveFunctions.cpp.
References ObjectiveFunctionVS< double >::m_dimension.
| void ZDT1::result | ( | double *const & | point, | |
| std::vector< double > & | value | |||
| ) |
Definition at line 180 of file MultiObjectiveFunctions.cpp.
References ObjectiveFunctionVS< double >::m_dimension, and ObjectiveFunction::m_timesCalled.
| bool ZDT1::utopianFitness | ( | std::vector< double > & | value | ) | const [virtual] |
If possible, this method returns (a bound on) the best possible fitness.
For the single objective case the function should return the fitness in the global optimum. For the multi objective case this function should return a utopian point.
| fitness | component wise utopian fitness |
Reimplemented from ObjectiveFunctionVS< double >.
Definition at line 210 of file MultiObjectiveFunctions.cpp.