mirror of
https://github.com/sockspls/badfish
synced 2025-04-29 16:23:09 +00:00
Increase PV LMR to SF 1.8 levels
Non-PV LMR is left unchanged. After 8819 games Mod- Orig: 1442 - 1343 - 6034 ELO +3 (+- 2.9) LOS 86% Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
parent
0da461f23b
commit
421f7b74c6
1 changed files with 1 additions and 1 deletions
|
@ -347,7 +347,7 @@ void init_search() {
|
|||
// Init reductions array
|
||||
for (hd = 1; hd < 64; hd++) for (mc = 1; mc < 64; mc++)
|
||||
{
|
||||
double pvRed = 0.33 + log(double(hd)) * log(double(mc)) / 4.5;
|
||||
double pvRed = log(double(hd)) * log(double(mc)) / 3.0;
|
||||
double nonPVRed = 0.33 + log(double(hd)) * log(double(mc)) / 2.25;
|
||||
ReductionMatrix[PV][hd][mc] = (int8_t) ( pvRed >= 1.0 ? floor( pvRed * int(ONE_PLY)) : 0);
|
||||
ReductionMatrix[NonPV][hd][mc] = (int8_t) (nonPVRed >= 1.0 ? floor(nonPVRed * int(ONE_PLY)) : 0);
|
||||
|
|
Loading…
Add table
Reference in a new issue