From afa484021ba94d12e98da682a9ff69c3837d5dbb Mon Sep 17 00:00:00 2001 From: Eduardo Pedroni Date: Fri, 14 Feb 2014 18:13:21 +0000 Subject: Generic data type functionality implemented. All tests were refactored to reflect this, and some chromosome tests were rewritten with more rigorous assertions. --- src/jcgp/population/Input.java | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'src/jcgp/population/Input.java') diff --git a/src/jcgp/population/Input.java b/src/jcgp/population/Input.java index ee008ce..2154dd9 100644 --- a/src/jcgp/population/Input.java +++ b/src/jcgp/population/Input.java @@ -2,18 +2,19 @@ package jcgp.population; public class Input implements Connection { - private int value = 0, index; + private Object value = 0; + private int index; public Input(int index) { this.index = index; } - public void setValue(int newValue) { + public void setValue(Object newValue) { value = newValue; } @Override - public int getValue() { + public Object getValue() { return value; } -- cgit v1.2.3