mirror of
https://github.com/HChaZZY/Stockfish.git
synced 2025-12-20 09:06:45 +08:00
Slow down reductions
After testing on Joona QUAD the whole LMR series: Orig - Mod: 335 - 405 (+33 elo) Functionality Signature: 12581900 Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
committed by
Marco Costalba
parent
49b1c5dccd
commit
e2e360fcbc
@@ -969,7 +969,7 @@ namespace {
|
||||
&& !captureOrPromotion
|
||||
&& !move_is_castle(move))
|
||||
{
|
||||
double red = ln(RootMoveNumber - MultiPV + 1) * ln(depth / 2) / 3.0;
|
||||
double red = 0.5 + ln(RootMoveNumber - MultiPV + 1) * ln(depth / 2) / 6.0;
|
||||
if (red >= 1.0)
|
||||
{
|
||||
ss[0].reduction = Depth(int(floor(red * int(OnePly))));
|
||||
@@ -1226,7 +1226,7 @@ namespace {
|
||||
&& !move_is_castle(move)
|
||||
&& !move_is_killer(move, ss[ply]))
|
||||
{
|
||||
double red = ln(moveCount) * ln(depth / 2) / 3.0;
|
||||
double red = 0.5 + ln(moveCount) * ln(depth / 2) / 6.0;
|
||||
if (red >= 1.0)
|
||||
{
|
||||
ss[ply].reduction = Depth(int(floor(red * int(OnePly))));
|
||||
@@ -1557,7 +1557,7 @@ namespace {
|
||||
&& !move_is_killer(move, ss[ply])
|
||||
/* && move != ttMove*/)
|
||||
{
|
||||
double red = ln(moveCount) * ln(depth / 2) / 1.5;
|
||||
double red = 0.5 + ln(moveCount) * ln(depth / 2) / 3.0;
|
||||
if (red >= 1.0)
|
||||
{
|
||||
ss[ply].reduction = Depth(int(floor(red * int(OnePly))));
|
||||
@@ -1902,7 +1902,7 @@ namespace {
|
||||
&& !move_is_castle(move)
|
||||
&& !move_is_killer(move, ss[sp->ply]))
|
||||
{
|
||||
double red = ln(moveCount) * ln(sp->depth / 2) / 1.5;
|
||||
double red = 0.5 + ln(moveCount) * ln(sp->depth / 2) / 3.0;
|
||||
if (red >= 1.0)
|
||||
{
|
||||
ss[sp->ply].reduction = Depth(int(floor(red * int(OnePly))));
|
||||
@@ -2013,7 +2013,7 @@ namespace {
|
||||
&& !move_is_castle(move)
|
||||
&& !move_is_killer(move, ss[sp->ply]))
|
||||
{
|
||||
double red = ln(moveCount) * ln(sp->depth / 2) / 3.0;
|
||||
double red = 0.5 + ln(moveCount) * ln(sp->depth / 2) / 6.0;
|
||||
if (red >= 1.0)
|
||||
{
|
||||
ss[sp->ply].reduction = Depth(int(floor(red * int(OnePly))));
|
||||
|
||||
Reference in New Issue
Block a user