1 parent 64d328f commit ef84472Copy full SHA for ef84472
1 file changed
src/main/java/net/kite/internal/board/Board.java
@@ -208,11 +208,14 @@ public final class Board {
208
private final boolean[][] winCells = new boolean[WIDTH][HEIGHT];
209
210
public Board() {
211
+ System.out.println("board");
212
this.scoreCache = new BoardScoreCache();
213
+ System.out.println("board2");
214
this.importantScoreCache = new ImportantBoardScoreCache();
215
216
this.moves = new int[MOVES_LENGTH];
217
this.moveScores = new int[MOVES_LENGTH];
218
+ System.out.println("done");
219
}
220
221
@SuppressWarnings("DataFlowIssue")
0 commit comments