From de1ae17ea86a8d971ee17910c97f65ba5fc57eeb Mon Sep 17 00:00:00 2001 From: evomarc Date: Thu, 6 Dec 2001 06:38:17 +0000 Subject: [PATCH] CHanged a few erroneaous comments --- eo/src/eoPopulator.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/eo/src/eoPopulator.h b/eo/src/eoPopulator.h index c2eed79e..7ca1895d 100644 --- a/eo/src/eoPopulator.h +++ b/eo/src/eoPopulator.h @@ -116,7 +116,7 @@ public : bool exhausted(void) { return current == dest.end(); } /** the pure virtual selection method - will be instanciated in - * eoSeqPopulator and eoPropPopulator + * eoSeqPopulator and eoSelectivePopulator */ virtual const EOT& select() = 0; @@ -154,6 +154,7 @@ public : eoSeqPopulator(const eoPop& _pop, eoPop& _dest) : eoPopulator(_pop, _dest), current(0) {} + /** the select method simply returns next individual in the src pop */ const EOT& select(void) { if (current >= src.size()) @@ -183,6 +184,7 @@ public : sel.setup(_pop); } + /** the select method actually selects one guy from the src pop */ const EOT& select() { return sel(src);