Version 0.9.2

=============
External config file.
Move ordering.
This commit is contained in:
2006-07-04 18:24:40 +00:00
parent f67d82d129
commit 7dc781c25e
5 changed files with 119 additions and 13 deletions

View File

@ -34,10 +34,25 @@ public class SuicideChess {
*/
public static final boolean SQUARE_CHECK_INVALID = true;
/**
* do move ordering in Alpha-Beta pruning ?
*/
public static final boolean MOVE_ORDERING = false;
/**
* Intelligent depth -> ie: when only one possible move, don't search. When very few moves, add one to depth.
*/
public static final boolean INTELLIGENT_DEPTH = false;
/**
* Quiescence search -> don't evaluate if captures are possible.
*/
public static final boolean QUIESCENCE_SEARCH = false;
/**
* The name to be displayed
*/
public static final String NAME = "djib's SuShi v0.8.9";
public static final String NAME = "djib's SuShi v0.9.2";
/**
* Displays informations in the console.