diff --git a/eo/tutorial/html/eoLesson2.html b/eo/tutorial/html/eoLesson2.html index 5e7b50e9..346ebb3a 100644 --- a/eo/tutorial/html/eoLesson2.html +++ b/eo/tutorial/html/eoLesson2.html @@ -67,13 +67,7 @@ argument is a vector<bool> or a Note: Also, +


Note: Also, a non-templatized fitness can be compiled separately (not done here) into an object file once and for all (
remember @@ -88,14 +82,8 @@ have to declare 3 template arguments: the type of EO object it will be applied to, the return type and the type of argument the function actually requires. -
  -

  -
  -
  -
  -
  -

Note: In the -previous files (Bit - Real) +


Note: In +the previous files (Bit - Real) , the last 2 types were deduced from the first (2nd argument = fitness type of EO object, third = first).
  @@ -111,19 +99,13 @@ rather than maximize a fitness function (see Exercise of the population is now
encapsulatedinto a separate initializer (based on a boolean generator or a double-number -generator -see random_generators.h) +generator -see random_generators.h) that is then used in the constructor of the population to build the individuals. You can also use different initializers and call them in turn through the call to pop.append() function (see Exercise 2). -
  -

  -
  -
  -
  -
  -

Note: Don't +


Note: Don't forget to evaluate the population: the eoPop has no idea of the eval function, so it has to be done from outside!!!