aboutsummaryrefslogtreecommitdiffstats
path: root/README
diff options
context:
space:
mode:
Diffstat (limited to 'README')
-rw-r--r--README5
1 files changed, 5 insertions, 0 deletions
diff --git a/README b/README
index 1095912..5152bc8 100644
--- a/README
+++ b/README
@@ -139,5 +139,10 @@ Tests have been refactored to deal with the new data system. The system uses Obj
any class to be used (and also primitive types).
+15/2
+The Population class will be refactored to contain two collections of chromosomes, one for parents and one for offpsring. This allows
+for (1+λ) and (1,λ) EAs, for example. It no longer makes sense for Population to implement Iterable, so the tests will be changed to reflect
+the specification change. Population can still return an addressed chromosome in general, which it does by returning parents followed by offspring.
+The chromosome copyConnections method has been made public to facilitate the EA implementation.