source: java/ecj/games/ec/TDLImprover.java @ 37

Last change on this file since 37 was 28, checked in by mszubert, 16 years ago

cecj - coEvolutionary Computation in Java with additional games package

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id Revision
File size: 266 bytes
Line 
1package games.ec;
2
3import ec.EvolutionState;
4import ec.Individual;
5import ec.Setup;
6
7public interface TDLImprover extends Setup {
8
9        public void prepareForImproving(EvolutionState state, Individual ind);
10
11        public void improve(EvolutionState state, Individual ind);
12}
Note: See TracBrowser for help on using the repository browser.