source: java/ecj/cecj/app/othello/OthelloHeuristicPlayer.java @ 193

Last change on this file since 193 was 193, checked in by Maciej Komosinski, 10 years ago

Set svn:eol-style native for all textual files

  • Property svn:eol-style set to native
File size: 689 bytes
Line 
1package cecj.app.othello;
2
3public class OthelloHeuristicPlayer extends OthelloPlayerFitnessCalculator {
4
5        double[] wpc = { 1.00f, -0.25f, 0.10f, 0.05f, 0.05f, 0.10f, -0.25f, 1.00f, -0.25f, -0.25f,
6                        0.01f, 0.01f, 0.01f, 0.01f, -0.25f, -0.25f, 0.10f, 0.01f, 0.05f, 0.02f, 0.02f, 0.05f,
7                        0.01f, 0.10f, 0.05f, 0.01f, 0.02f, 0.01f, 0.01f, 0.02f, 0.01f, 0.05f, 0.05f, 0.01f,
8                        0.02f, 0.01f, 0.01f, 0.02f, 0.01f, 0.05f, 0.10f, 0.01f, 0.05f, 0.02f, 0.02f, 0.05f,
9                        0.01f, 0.10f, -0.25f, -0.25f, 0.01f, 0.01f, 0.01f, 0.01f, -0.25f, -0.25f, 1.00f,
10                        -0.25f, 0.10f, 0.05f, 0.05f, 0.10f, -0.25f, 1.00f };
11
12        @Override
13        protected OthelloPlayer getPlayer() {
14                return new OthelloPlayer(wpc);
15        }
16}
Note: See TracBrowser for help on using the repository browser.