I had forgotten the real_value.h - SecondRealEA did not compile!

This commit is contained in:
evomarc 2002-05-22 02:13:06 +00:00
commit 43f0d7ea79

View file

@ -0,0 +1,20 @@
#include <vector>
//-----------------------------------------------------------------------------
/** Just a simple function that takes an vector<double> and sets the fitnes
to the sphere function. Please use doubles not float!!!
@param _ind A floatingpoint vector
*/
// INIT
double real_value(const std::vector<double>& _ind)
{
double sum = 0;
for (unsigned i = 0; i < _ind.size(); i++)
{
sum += _ind[i] * _ind[i];
}
return sum;
}