aboutsummaryrefslogtreecommitdiffstats
path: root/README
diff options
context:
space:
mode:
authorEduardo Pedroni <ep625@york.ac.uk>2014-02-04 16:20:33 +0000
committerEduardo Pedroni <ep625@york.ac.uk>2014-02-04 16:20:33 +0000
commit1fd678821cf133c7c431daea687f3467bb0be2dd (patch)
treec23e7fe6a4076c6748d03b2cee9d41ff6e9734b2 /README
parentd9671c354080de20bba4f70438af9242c8ecd675 (diff)
Added fitness evaluation mechanism, though it might not be a very good design. Tests will be done to verify that.
Diffstat (limited to 'README')
-rw-r--r--README13
1 files changed, 13 insertions, 0 deletions
diff --git a/README b/README
index 0b886c9..3241aae 100644
--- a/README
+++ b/README
@@ -66,3 +66,16 @@ sets the chromosome inputs and compares outputs for all TestCase objects given,
accordingly.
+4/2
+
+TestCase has been implemented with a fair degree of defensiveness. A TruthTable class contains the test cases and provides
+a way to evaluate fitness.
+
+TruthTable is a system-wide resource, which may or may not be used by FitnessFunction to assign fitness values to the
+population; that is up to the user.
+
+A standard fitness function which uses TruthTable is defined in TruthTableEvaluator.
+
+StandardMutator has been implemented, though it looks like it may need refactoring in the future.
+
+