source: java/ecj/app/othello/OthelloRandomPlayer2.java @ 42

Last change on this file since 42 was 42, checked in by mszubert, 14 years ago

refactored cecj; framsticks package added

File size: 394 bytes
Line 
1package cecj.app.othello;
2
3import ec.util.Parameter;
4
5import ec.EvolutionState;
6
7public class OthelloRandomPlayer2 extends OthelloPlayerFitnessCalculator {
8
9        @Override
10        public void setup(EvolutionState state, Parameter base) {
11                super.setup(state, base);
12                evaluatorRandomness = 1;
13        }
14       
15        @Override
16        protected OthelloPlayer getPlayer() {
17                return new OthelloPlayer(new double[WPC_LENGTH]);
18        }
19}
Note: See TracBrowser for help on using the repository browser.