aboutsummaryrefslogtreecommitdiffstats
path: root/src/jcgp/TruthTable.java
diff options
context:
space:
mode:
authorEduardo Pedroni <ep625@york.ac.uk>2014-03-23 18:05:13 +0000
committerEduardo Pedroni <ep625@york.ac.uk>2014-03-23 18:05:13 +0000
commit0c288cc1952809294c8d70d86b9f41b04878ac2e (patch)
treeef9671b711fe665a3156594663c083595861a4e6 /src/jcgp/TruthTable.java
parentd3527a63e12c0e5288f1e7d2e2dc18e61d16b760 (diff)
Majorly refactored, node grid is fully implemented. About to attempt active path locking.
Diffstat (limited to 'src/jcgp/TruthTable.java')
-rw-r--r--src/jcgp/TruthTable.java21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/jcgp/TruthTable.java b/src/jcgp/TruthTable.java
deleted file mode 100644
index e62f56b..0000000
--- a/src/jcgp/TruthTable.java
+++ /dev/null
@@ -1,21 +0,0 @@
-package jcgp;
-
-import jcgp.modules.fitness.TestCase;
-
-public class TruthTable {
-
- private static TestCase[] testCases;
-
- public static void setTestCases(TestCase ... testCases) {
- TruthTable.testCases = testCases;
- }
-
- public static TestCase getTestCase(int index) {
- return testCases[index];
- }
-
- public static int getTestCaseCount() {
- return testCases.length;
- }
-
-}