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:
parent
b85bcc039c
commit
d6fdd4f6d9
1 changed files with 2 additions and 1 deletions
|
@ -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);
|
||||
|
||||
|
||||
////
|
||||
|
|
Loading…
Add table
Reference in a new issue