package jcgp.function; import jcgp.population.Connection; public abstract class Function { public abstract int run(Connection ... connections); }