aboutsummaryrefslogtreecommitdiffstats
path: root/src/jcgp/population/Input.java
diff options
context:
space:
mode:
authorEduardo Pedroni <ep625@york.ac.uk>2014-04-01 23:00:53 +0100
committerEduardo Pedroni <ep625@york.ac.uk>2014-04-01 23:00:53 +0100
commit02fd2bc7059da416937beb1abe67e5ca60379030 (patch)
tree609341fe10aaa0f2dc45a1e72eba20bd24fb1281 /src/jcgp/population/Input.java
parenta757deacded0d7357a9f68462d3f2051e16004ee (diff)
Settings pane now actually controls the parameters, not much left to do.
Diffstat (limited to 'src/jcgp/population/Input.java')
-rw-r--r--src/jcgp/population/Input.java29
1 files changed, 0 insertions, 29 deletions
diff --git a/src/jcgp/population/Input.java b/src/jcgp/population/Input.java
deleted file mode 100644
index cfcb3ce..0000000
--- a/src/jcgp/population/Input.java
+++ /dev/null
@@ -1,29 +0,0 @@
-package jcgp.population;
-
-public class Input extends Gene implements Connection {
-
- private Object value = 0;
- private int index;
-
- public Input(int index) {
- this.index = index;
- }
-
- public void setValue(Object newValue) {
- value = newValue;
- }
-
- @Override
- public Object getValue() {
- return value;
- }
-
- public int getIndex() {
- return index;
- }
-
- @Override
- public String getDescription() {
- return "i: " + index;
- }
-}