aboutsummaryrefslogtreecommitdiffstats
path: root/src/jcgp/population/Connection.java
blob: 12e92d6af5a40eaf09d155237b832194c9598f8b (plain)
1
2
3
4
5
6
7
8
9
10
11
package jcgp.population;

import java.util.ArrayList;

public interface Connection {

	public int getValue();

	public void getActive(ArrayList<Connection> activeNodes);

}