aboutsummaryrefslogtreecommitdiffstats
path: root/src/jcgp/chromosome/element/MutableElement.java
blob: ed7e23cc3a0f845e0a10378d16120e7229b4e5c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package jcgp.chromosome.element;

import jcgp.chromosome.Chromosome;
import jcgp.chromosome.functions.FunctionSet;

public interface MutableElement {
	
	public void initialise(Chromosome chromosome, FunctionSet functions);
	
	public void mutate(Chromosome chromosome, FunctionSet functions);

}