diff --git a/eo/tutorial/html/FirstRealEA.html b/eo/tutorial/html/FirstRealEA.html
index 03505b29..e4a22e43 100644
--- a/eo/tutorial/html/FirstRealEA.html
+++ b/eo/tutorial/html/FirstRealEA.html
@@ -117,11 +117,13 @@ The actual code is in boldface and the comment in normal face.
const float P_CROSS = 0.8; // Crossover probability
const float P_MUT = 0.5; // mutation probability
const double EPSILON = 0.01; // range for real uniform mutation
+ const double SIGMA = 0.01; // std. dev. of normal mutation
// some parameters for chosing among different operators
const double segmentRate = 0.5; // rate for 1-pt Xover
const double arithmeticRate = 0.5; // rate for 2-pt Xover
const double uniformMutRate = 0.5; // rate for bit-flip mutation
const double detMutRate = 0.5; // rate for one-bit mutation
+ const double normMutRate = 0.5; // rate for normal mutation
@@ -242,7 +244,7 @@ The actual code is in boldface and the comment in normal face.
eoArithmeticCrossover<Indi> xoverA;
// Combine them with relative rates
eoPropCombinedQuadOp<Indi> xover(xoverS, segmentRate);
- xover.add(xoverA, arithmeticRate, true);
+ xover.add(xoverA, arithmeticRate, eo_verbose);
@@ -252,13 +254,16 @@ The actual code is in boldface and the comment in normal face.