mirror of
https://github.com/sockspls/badfish
synced 2025-04-30 08:43:09 +00:00
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 <mcostalba@gmail.com>
This commit is contained in:
parent
e656ddcf18
commit
bb7713c8e9
1 changed files with 1 additions and 1 deletions
|
@ -39,7 +39,7 @@ public:
|
||||||
Value gain(Piece p, Square to) const;
|
Value gain(Piece p, Square to) const;
|
||||||
void update_gain(Piece p, Square to, Value g);
|
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:
|
private:
|
||||||
Value history[16][64]; // [piece][to_square]
|
Value history[16][64]; // [piece][to_square]
|
||||||
|
|
Loading…
Add table
Reference in a new issue