aboutsummaryrefslogtreecommitdiffstats
path: root/src/jcgp/population/Node.java
blob: 40ffa5203ca5eaa7d828e6d126e286faeeea68b2 (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
package jcgp.population;

import jcgp.Parameters;
import jcgp.Utilities;
import jcgp.function.Function;


public class Node implements MutableElement, Connection {
	
	private Function function;
	private Connection[] connections;
	private int column, row;
	private Chromosome chromosome;

	public Node(Chromosome chromosome, int row, int column) {
		this.chromosome = chromosome;
		this.column = column;
		this.row = row;
	}
	
	@Override
	public int getValue() {
		return function.run(connections);
	}
	
	public void setFunction(Function newFunction) {
		function = newFunction;
		chromosome.recomputeActiveNodes();
	}
	
	@Override
	public void setConnection(Connection newConnection) {
		connections[Utilities.getRandomInt(connections.length)] = newConnection;
		chromosome.recomputeActiveNodes();
	}
	
	public void initialise(Function newFunction, Connection ... newConnections) throws InsufficientConnectionsException {
		
		function = newFunction;
		
		if (newConnections.length >= Parameters.getMaxArity()) {
			connections = newConnections;
		} else {
			throw new InsufficientConnectionsException();
		}
	}

	public int getColumn() {
		
		return column;
	}

	public int getRow() {
		return row;
	}

	public Function getFunction() {
		return function;
	}

	public Connection getConnections(int index) {
		return connections[index];
	}
}