aboutsummaryrefslogtreecommitdiffstats
path: root/src/jcgp/modules/ea/TournamentSelection.java
blob: c2915a549c80e32f252be8740f37f9641f9fc7b6 (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
package jcgp.modules.ea;

import java.util.HashMap;

import jcgp.JCGP.Resources;
import jcgp.modules.ModuleStatus;
import jcgp.modules.mutator.Mutator;
import jcgp.parameters.IntegerParameter;
import jcgp.parameters.Parameter;
import jcgp.population.Chromosome;
import jcgp.population.Population;

public class TournamentSelection implements EvolutionaryAlgorithm {
	
	private Chromosome fittestChromosome;
	
	private IntegerParameter tournament;
	private HashMap<String, Parameter> localParameters;
	
	public TournamentSelection() {		
		tournament = new IntegerParameter(1, "Tournament size");	
		
		localParameters = new HashMap<String, Parameter>();
		localParameters.put("tournament", tournament);
	}

	@Override
	public HashMap<String, Parameter> getLocalParameters() {
		return localParameters;
	}

	@Override
	public void evolve(Population population, Mutator mutator,
			Resources parameters) {
		
		// TODO implement this

	}

	@Override
	public Chromosome getFittestChromosome() {
		return fittestChromosome;
	}
	
	@Override
	public String toString() {
		return "Tournament";
	}

	@Override
	public ModuleStatus getStatus(Resources resources) {
		return null;
	}
}