1
0
Fork 0
mirror of https://github.com/sockspls/badfish synced 2025-04-29 16:23:09 +00:00

Set HistoryMax infinitely high

Respin this old idea. Earlier we tried only
with < 1000 games and result was inconclusive.

After 5845 games
Mod vs Orig: 935 - 936 - 3974 ELO (+-3.6)

Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
Joona Kiiski 2011-01-09 18:38:55 +02:00 committed by Marco Costalba
parent b85bcc039c
commit d6fdd4f6d9

View file

@ -70,8 +70,9 @@ private:
/// the effect that parts of the search tree which have been searched
/// recently have a bigger importance for move ordering than the moves which
/// have been searched a long time ago.
/// Current policy is to set this as high as possible, but avoid overflow.
const int HistoryMax = 50000 * ONE_PLY;
const int HistoryMax = (1 << 28);
////