aboutsummaryrefslogtreecommitdiffstats
path: root/src/jcgp/ea/EvolutionaryAlgorithm.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/jcgp/ea/EvolutionaryAlgorithm.java')
-rw-r--r--src/jcgp/ea/EvolutionaryAlgorithm.java12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/jcgp/ea/EvolutionaryAlgorithm.java b/src/jcgp/ea/EvolutionaryAlgorithm.java
deleted file mode 100644
index ba70671..0000000
--- a/src/jcgp/ea/EvolutionaryAlgorithm.java
+++ /dev/null
@@ -1,12 +0,0 @@
-package jcgp.ea;
-
-import jcgp.population.Chromosome;
-import jcgp.population.Population;
-
-public interface EvolutionaryAlgorithm {
-
- public abstract void evolve(Population population, Mutator mutator);
-
- public abstract Chromosome getFittestChromosome();
-
-}