From: Marco Costalba Date: Thu, 28 Apr 2011 07:00:10 +0000 (+0100) Subject: Limit history range to +-2000 X-Git-Url: https://git.sesse.net/?p=stockfish;a=commitdiff_plain;h=bb7713c8e92c9373f0294a4317101cccda0e17e5;ds=sidebyside Limit history range to +-2000 Extensive test series on tweaking history limit and bonus formula. At the end this was the best. After 11959 games: Mod vs Orig 2087 - 1934 - 7938 ELO +4 (+- 3.7) LOS 92% Signed-off-by: Marco Costalba --- diff --git a/src/history.h b/src/history.h index 0f3fbc10..4d84be70 100644 --- a/src/history.h +++ b/src/history.h @@ -39,7 +39,7 @@ public: Value gain(Piece p, Square to) const; void update_gain(Piece p, Square to, Value g); - static const Value MaxValue = Value(1 << 29); // To avoid an overflow + static const Value MaxValue = Value(2000); private: Value history[16][64]; // [piece][to_square]