Version 5.0

===========
Alpha-beta pruning is the only main change.
This commit is contained in:
2006-06-25 13:26:08 +00:00
parent 1a54cfd06f
commit feea4b103b
3 changed files with 125 additions and 13 deletions

View File

@ -264,12 +264,12 @@ public class Board {
if(currentPlayer==Piece.WHITE) {
currentPlayer=Piece.BLACK;
if (SuicideChess.ASCII_GAME)
System.out.println("Black: ");
//if (SuicideChess.ASCII_GAME)
// System.out.println("Black: ");
} else {
currentPlayer=Piece.WHITE;
if (SuicideChess.ASCII_GAME)
System.out.println("White: ");
//if (SuicideChess.ASCII_GAME)
// System.out.println("White: ");
}
evaluateNewBoardValue(move);