mirror of
https://github.com/HChaZZY/Stockfish.git
synced 2025-12-21 17:46:26 +08:00
Introduce DEPTH_NONE and use it
Also better fix previous patch. Suggestions by Joona and Ralph. No functional change. Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
@@ -27,8 +27,8 @@
|
||||
|
||||
enum Depth {
|
||||
DEPTH_ZERO = 0,
|
||||
DEPTH_MAX = 200, // 100 * OnePly;
|
||||
DEPTH_ENSURE_SIGNED = -1
|
||||
DEPTH_MAX = 200, // 100 * OnePly;
|
||||
DEPTH_NONE = -254 // -127 * OnePly
|
||||
};
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user