Version 1.0.4

=============
Improved move ordering
Changed default values
This commit is contained in:
2006-07-18 23:14:35 +00:00
parent f9ff33b2b3
commit f1e8cd0784
3 changed files with 21 additions and 17 deletions

View File

@ -37,7 +37,7 @@ public class SuicideChess {
/**
* Use mobility in evaluation function (slows the program down a lot)
*/
public static final boolean USE_MOBILITY = false;
public static final boolean USE_MOBILITY = true;
/**
* do move ordering in Alpha-Beta pruning ?
@ -99,7 +99,7 @@ public class SuicideChess {
/**
* The name to be displayed
*/
public static final String NAME = "djib's SuShi v1.0.3";
public static final String NAME = "djib's SuShi v1.0.4";
/**
* Displays informations in the console.
@ -498,8 +498,8 @@ public class SuicideChess {
bitboard.display();
displayPlayer(bitboard);
}
computerMove.display();
bitboard.debug();
//computerMove.display();
//bitboard.debug();
}
if (testAndDisplayIfWinningOrDrawPosition(bitboard)) {