From 0c288cc1952809294c8d70d86b9f41b04878ac2e Mon Sep 17 00:00:00 2001 From: Eduardo Pedroni Date: Sun, 23 Mar 2014 18:05:13 +0000 Subject: Majorly refactored, node grid is fully implemented. About to attempt active path locking. --- src/jcgp/TruthTable.java | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 src/jcgp/TruthTable.java (limited to 'src/jcgp/TruthTable.java') 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; - } - -} -- cgit v1.2.3