From d6cce45ad058b2fe50fe7e435f6390b6d30cb2d6 Mon Sep 17 00:00:00 2001 From: evomarc Date: Mon, 9 Jun 2003 06:06:13 +0000 Subject: [PATCH] Change in terminology: EDA (Estimation of Distribution Algorithms) replaces DEA (Distribution Evolution Algorithms), as it seems more widely used today. --- eo/src/{ => obsolete}/eoDEA.h | 0 eo/src/{ => obsolete}/eoSimpleDEA.h | 0 eo/test/t-eoPBIL.cpp | 8 ++++---- 3 files changed, 4 insertions(+), 4 deletions(-) rename eo/src/{ => obsolete}/eoDEA.h (100%) rename eo/src/{ => obsolete}/eoSimpleDEA.h (100%) diff --git a/eo/src/eoDEA.h b/eo/src/obsolete/eoDEA.h similarity index 100% rename from eo/src/eoDEA.h rename to eo/src/obsolete/eoDEA.h diff --git a/eo/src/eoSimpleDEA.h b/eo/src/obsolete/eoSimpleDEA.h similarity index 100% rename from eo/src/eoSimpleDEA.h rename to eo/src/obsolete/eoSimpleDEA.h diff --git a/eo/test/t-eoPBIL.cpp b/eo/test/t-eoPBIL.cpp index 1c28c459..2d4f4914 100644 --- a/eo/test/t-eoPBIL.cpp +++ b/eo/test/t-eoPBIL.cpp @@ -32,7 +32,7 @@ #include #include #include -#include +#include using namespace std; @@ -106,10 +106,10 @@ int main(int argc, char* argv[]) } #endif - // the algorithm: DEA + // the algorithm: EDA // don't know where else to put the population size! unsigned popSize = parser.createParam(unsigned(100), "popSize", "Population Size", 'P', "Algorithm").value(); - eoSimpleDEA dea(update, eval, popSize, checkpoint); + eoSimpleEDA eda(update, eval, popSize, checkpoint); ///// End of construction of the algorith ///////////////////////////////////////// @@ -119,7 +119,7 @@ int main(int argc, char* argv[]) //// GO /////// - dea(distrib); // run the dea + eda(distrib); // run the eda std::cout << "Final Distribution\n"; distrib.printOn(std::cout);