aboutsummaryrefslogtreecommitdiffstats
path: root/src/jcgp/population/Output.java
blob: 1640deba5da46cd1fb9c82009acbecc2fff76a11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package jcgp.population;


public class Output implements MutableElement {
	
	private Connection source;

	public int calculate() {
		return source.evaluate();
	}

	@Override
	public void setConnection(Connection newConnection) {
		source = newConnection;
		
	}

}