diff --git a/eo/src/utils/eoStat.h b/eo/src/utils/eoStat.h index 916bcf439..32c3bf9f6 100644 --- a/eo/src/utils/eoStat.h +++ b/eo/src/utils/eoStat.h @@ -448,7 +448,7 @@ public: std::nth_element( pop.begin(), pop.begin()+quartile*3, pop.end() ); typename EOT::Fitness Q3 = pop[quartile*3].fitness(); - value() = Q1 - Q3; + value() = Q3 - Q1; } }