aboutsummaryrefslogtreecommitdiffstats
path: root/src/jcgp/tests/ChromosomeTests.java
blob: ff1de18edb750ee58ffa5ec4c0955ce64a6818bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
package jcgp.tests;

import static org.junit.Assert.*;

import java.util.Random;

import jcgp.Parameters;
import jcgp.Utilities;
import jcgp.fitness.ParameterMismatchException;
import jcgp.function.Addition;
import jcgp.function.FunctionSet;
import jcgp.function.Subtraction;
import jcgp.population.Chromosome;
import jcgp.population.Connection;
import jcgp.population.Input;
import jcgp.population.MutableElement;
import jcgp.population.Node;
import jcgp.population.Output;

import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Test;

/**
 * 
 * Tests which cover the behaviour specified for a chromosome.
 * 
 *  - The chromosome should be able to return a specified node, input or output.
 *  - It should be able to return a random MutableElement.
 *  - It should be able to return a random allowed connection given a column.
 *  - It should be able to return a random connection.
 *  - It should contain a freely modifiable fitness value.
 *  - For truth table evaluations, it should be able to have its inputs set.
 *  - For truth table evaluations, the output should return a value according to what
 *    it is set to.
 *  - It should feature a clone constructor, which creates a deep copy of a 
 *    specified Chromosome object.
 *  - It should be able to return a list of active nodes.
 *  
 *  TODO: bashing (strange value ranges, etc)
 *  
 *  WARNING: changing parameters may cause the tests to incorrectly fail!
 * 
 * @author Eduardo Pedroni
 *
 */
public class ChromosomeTests {

	private Chromosome chromosome;

	@BeforeClass
	public static void setUpBeforeClass() {
		// initialise function set
		FunctionSet functionSet = new FunctionSet(new Addition(), new Subtraction());

		// initialise utilities
		Utilities.setResources(new Random(1234), functionSet);

		// initialise parameters
		Parameters.setColumns(30);
		Parameters.setRows(20);
		Parameters.setInputs(2);
		Parameters.setOutputs(4);
		Parameters.setLevelsBack(1);
		Parameters.setMutationRate(10);
		Parameters.setTotalGenerations(100);
		Parameters.setTotalRuns(5);
		Parameters.setMaxArity(functionSet.getMaxArity());
	}

	@Before
	public void setUp() throws Exception {
		chromosome = new Chromosome();
	}

	/**
	 * 
	 */
	@Test
	public void cloneTest() {
		int[] testInputs;
		// create a clone, check to see if it really is a clone
		Chromosome clone = new Chromosome(chromosome);

		// set input values
		testInputs = new int[Parameters.getInputs()];
		for (int i = 0; i < Parameters.getInputs(); i++) {
			testInputs[i] = i * 2 - 3;
		}
		chromosome.setInputs(testInputs);
		clone.setInputs(testInputs);

		// compare all elements, one by one
		// check outputs
		for (int o = 0; o < Parameters.getOutputs(); o++) {
			// check that no cross-references exist between chromosomes
			assertTrue("Cloned chromosome contained a reference to a member of the original chromosome.",
					c.getOutput(o) != oc.getOutput(o) && 
					c.getOutput(o).getSource() != oc.getOutput(o).getSource());
			// check that the connections are equivalent
			if (c.getOutput(o).getSource() instanceof Input && oc.getOutput(o).getSource() instanceof Input) {
				assertTrue("Outputs did not connect to equivalent inputs.", 
						((Input) c.getOutput(o).getSource()).getIndex() == ((Input) oc.getOutput(o).getSource()).getIndex());
			} else if (c.getOutput(o).getSource() instanceof Node && oc.getOutput(o).getSource() instanceof Node) {
				assertTrue("Outputs did not connect to equivalent nodes.", 
						((Node) c.getOutput(o).getSource()).getRow() == ((Node) oc.getOutput(o).getSource()).getRow() && 
						((Node) c.getOutput(o).getSource()).getColumn() == ((Node) oc.getOutput(o).getSource()).getColumn());
			} else {
				fail("Output source types did not match.");
			}
		}
		// check nodes, rows first
		for (int row = 0; row < Parameters.getRows(); row++) {
			for (int column = 0; column < Parameters.getColumns(); column++) {
				// look at each connection
				for (int connection = 0; connection < Parameters.getMaxArity(); connection++) {
					if (c.getNode(row, column).getConnection(connection) instanceof Input && 
							oc.getNode(row, column).getConnection(connection) instanceof Input) {

						assertTrue("Nodes did not connect to equivalent inputs.", 
								((Input) c.getNode(row, column).getConnection(connection)).getIndex() ==
								((Input) oc.getNode(row, column).getConnection(connection)).getIndex());

					} else if (c.getNode(row, column).getConnection(connection) instanceof Node && 
							oc.getNode(row, column).getConnection(connection) instanceof Node) {

						assertTrue("Nodes did not connect to equivalent nodes.", 
								((Node) c.getNode(row, column).getConnection(connection)).getRow() ==
								((Node) oc.getNode(row, column).getConnection(connection)).getRow() &&

								((Node) c.getNode(row, column).getConnection(connection)).getColumn() ==
								((Node) oc.getNode(row, column).getConnection(connection)).getColumn());

					} else {
						fail("Connection types did not match.");
					}
				}
			}
		}


		// change clone inputs, outputs should no longer match
		testInputs = new int[Parameters.getInputs()];
		for (int i = 0; i < Parameters.getInputs(); i++) {
			testInputs[i] = i * 2;
		}
		clone.setInputs(testInputs);
		for (int i = 0; i < Parameters.getOutputs(); i++) {
			assertTrue("Incorrect output returned.", chromosome.getOutput(i).calculate() != 
					clone.getOutput(i).calculate());
		}
	}

	/**
	 * 
	 */
	@Test
	public void fitnessTest() {
		// set a fitness value, check if returned value is the same
		chromosome.setFitness(10);
		assertTrue("Incorrect fitness returned.", chromosome.getFitness() == 10);
	}

	/**
	 * 
	 */
	@Test
	public void randomConnectionTest() {
		// get random connections with column 0, check that they are all inputs
		for (int i = 0; i < 10000; i++) {
			boolean connectionReturn = chromosome.getRandomConnection(0) instanceof Input;
			assertTrue("Connection is not an input.", connectionReturn);
		}

		// get random connections with column 1
		// they should all be nodes, and their columns should be within range
		int connectionNodes = 0, connectionOutOfRange = 0, connectionInputs = 0, connectionPicks = 100000;
		int chosenColumn = 1;
		for (int i = 0; i < connectionPicks; i++) {
			Connection c = chromosome.getRandomConnection(chosenColumn);
			if (c instanceof Node) {
				connectionNodes++;
				if (((Node) c).getColumn() >= chosenColumn) {
					connectionOutOfRange++;
				}
				assertTrue("Connection is not allowed : " + ((Node) c).getColumn(), ((Node) c).getColumn() < chosenColumn && ((Node) c).getColumn() < chosenColumn);
			} else if (c instanceof Input) {
				connectionInputs++;
			} else {
				fail("Return is neither Node nor Input.");

			}	
		}
		System.out.println("Out of " + connectionPicks + " connections picked from " + ((chosenColumn >= Parameters.getLevelsBack()) ? Parameters.getLevelsBack() : chosenColumn) * Parameters.getRows() +
				" allowed nodes and " + Parameters.getInputs() + " inputs, " + connectionNodes + " were nodes and " + connectionInputs + " were inputs.");

		System.out.println("Node/input ratio: " + ((double) ((chosenColumn >= Parameters.getLevelsBack()) ? Parameters.getLevelsBack() : chosenColumn) * Parameters.getRows()) / (double) Parameters.getInputs() +
				", picked ratio: " + (double) connectionNodes / (double) connectionInputs);

		System.out.println(connectionOutOfRange + " nodes that disrespected levels back were picked.");
	}

	/**
	 * 
	 */
	@Test
	public void randomMutableTest() {
		// get mutable elements, check Node to Output ratio
		int mutablePicks = 100000;
		int mutableNodes = 0, mutableOutputs = 0;
		for (int i = 0; i < mutablePicks; i++) {
			MutableElement m = chromosome.getRandomMutableElement();

			if (m instanceof Node) {
				mutableNodes++;
			} else if (m instanceof Output) {
				mutableOutputs++;
			} else {
				fail("Return is neither Node nor Output.");
			}
		}
		System.out.println("Out of " + mutablePicks + " mutable elements picked from " + Parameters.getNodeCount() +
				" nodes and " + Parameters.getOutputs() + " outputs, " + mutableNodes + " were nodes and " +
				mutableOutputs + " were outputs.");
		System.out.println("Node/output ratio: " + (double) Parameters.getNodeCount() / (double) Parameters.getOutputs() +
				", picked ratio: " + (double) mutableNodes / (double) mutableOutputs + "\n");
	}

	/**
	 * 
	 */
	@Test
	public void getOutputsTest() {
		// connect outputs to inputs, check that calculated outputs return input values
		for (int i = 0; i < Parameters.getOutputs(); i++) {
			chromosome.getOutput(i).setConnection(chromosome.getInput(i % Parameters.getInputs()));
			assertTrue("Incorrect output returned.", chromosome.getOutput(i).calculate() == 
					chromosome.getInput(i % Parameters.getInputs()).getValue());
		}
	}

	/**
	 * @throws ParameterMismatchException
	 */
	@Test
	public void setInputTest() throws ParameterMismatchException {
		// set input values, check that acquired values are correct
		int[] testInputs = new int[Parameters.getInputs()];
		for (int i = 0; i < Parameters.getInputs(); i++) {
			testInputs[i] = i * 2 - 3;
		}
		chromosome.setInputs(testInputs);
		for (int i = 0; i < Parameters.getInputs(); i++) {
			assertTrue("Incorrect input returned.", chromosome.getInput(i).getValue() == i * 2 - 3);
		}
	}

	/**
	 * 
	 */
	@Test
	public void getNodeTest() {
		// get all nodes one by one, check that they are all correct
		for (int r = 0; r < Parameters.getRows(); r++) {
			for (int c = 0; c < Parameters.getColumns(); c++) {
				assertTrue("Incorrect node returned.", chromosome.getNode(r, c).getColumn() == c &&
						chromosome.getNode(r, c).getRow() == r);
			}
		}
	}

	/**
	 * 
	 */
	@Test
	public void activeNodeTest() {
		// active node detection happens recursively, the user only calls a single method
		// set connections to a known configuration
		for (int i = 0; i < Parameters.getOutputs(); i++) {
			chromosome.getOutput(i).setConnection(chromosome.getNode(0, 0));
		}

		chromosome.getNode(0, 0).setConnection(chromosome.getInput(0));

		assertTrue("Active connection not in list.", chromosome.getActiveNodes().contains(chromosome.getInput(0)));
		assertTrue("Active connection not in list.", chromosome.getActiveNodes().contains(chromosome.getNode(0, 0)));

		// change outputs, print list
		chromosome.getOutput(0).setConnection(chromosome.getNode(0, Parameters.getColumns() - 1));

		System.out.println("Active connections: " + chromosome.getActiveNodes().toString() + "\n");
	}
}