Version 0.9.2
============= External config file. Move ordering.
This commit is contained in:
@ -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.
|
||||
|
Reference in New Issue
Block a user