13 years, 6 months ago
Highlights
13 years, 6 months ago
13 years, 6 months ago
Hi all, I'm writing a board game and using Negamax for the AI. I'm applying an undo function instead of copying the board state, in order to speed up the search. T…
13 years, 6 months ago
Hi all, I'm doing a simple TicTacToe so that I can implement a Negamax algorithm which I can later use for other abstract games. However I'm encountering problems whereby…
13 years, 6 months ago
13 years, 6 months ago
Latest Activity
See all in DiscussionsThat's similar to what I'm doing: private void placePiece(int cell) { this.board.getCells()[cell] = playerType; this.board.getActivePieces()[playerType]++; } private void undoPlacePiece(int …
13 years, 6 months ago
It looks like the search is partially working but this is due to the fact that I'm still not ready …
13 years, 6 months ago
Ok. So I replace bestScore with alpha. This should make the search correct now?
13 years, 6 months ago