diff options
author | Eduardo Pedroni <ep625@york.ac.uk> | 2014-01-31 13:06:54 +0000 |
---|---|---|
committer | Eduardo Pedroni <ep625@york.ac.uk> | 2014-01-31 13:06:54 +0000 |
commit | a02f1fff03ab58416da812597e67a0c7e21fdbd5 (patch) | |
tree | 0192f0db1d1bc8d6d29433f4e84d4c94a89ed2ac /README | |
parent | 8f7874fa75c532bab994af8e6553d37afe42ec4c (diff) |
Created most of the classes that will be necessary, content is blank for now.
Diffstat (limited to 'README')
-rw-r--r-- | README | 29 |
1 files changed, 29 insertions, 0 deletions
@@ -16,4 +16,33 @@ ChromosomeElement tests: - Input returns the value it is set to - Outputs returns a single value from its source Node + + +30/1 + +Added class representations of functions and mutators, as well as the program itself (CGP). +Modified the way the chromosome stores its data to allow for more flexible mutations. + +31/1 + +Parity will be considered constant, at 2, for now. + +Added static nested classes for system-wide resources such as a random number generator, the function set +and the parameter set. These can be accessed from anywhere within the program, but not modified by any class +but CGP. + +Modularized design: + +Modules for fitness function, mutation operator, evolutionary algorithm and population. + +FF, EA and mutation modules act as callbacks; the user may specify how the module does its job, +but must comply with the interface. + +Population is slightly more complex: the user may define a custom chromosome and use it to generate a population, +so long as it extends Chromosome. In conjunction with modularized FF, EA and mutation, this makes for a very +flexible and versatile system. The Population class itself is immutable, since the system relies heavily on it. +Finally, it is Iterable to for access to the chromosomes within. + + +
\ No newline at end of file |