aboutsummaryrefslogtreecommitdiffstats
path: root/src/jcgp/chromosome/functions/FunctionSet.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/jcgp/chromosome/functions/FunctionSet.java')
-rw-r--r--src/jcgp/chromosome/functions/FunctionSet.java14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/jcgp/chromosome/functions/FunctionSet.java b/src/jcgp/chromosome/functions/FunctionSet.java
deleted file mode 100644
index e9d197a..0000000
--- a/src/jcgp/chromosome/functions/FunctionSet.java
+++ /dev/null
@@ -1,14 +0,0 @@
-package jcgp.chromosome.functions;
-
-import java.util.ArrayList;
-
-public class FunctionSet {
-
- private ArrayList<Function> functions;
-
- public FunctionSet() {
- functions = new ArrayList<Function>();
- }
-
-
-}