forked from official-stockfish/Stockfish
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Try new strategy to limit double extensions
bench 6217697
- Loading branch information
1 parent
723f48d
commit afe45fb
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
afe45fb
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just a side note that - 51 - 50*std::min(1,ss->doubleExtensions) should be the same as -51 - 50 * bool(ss->doubleExtensions)
afe45fb
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You are right, this is actually doing the opposite of what i intended it to do KEKL
afe45fb
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
congrats!
afe45fb
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@TopoIogist
Hi, I was wondering what happens with this patch for the endgame position
which lead to official-stockfish#3544
This is a position where each black move is singular, so the search explodes
quite easily (this is related to issue official-stockfish#3532 )
afe45fb
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@snicolet I let this position run with both this patch and the master for about a minute
With this patch I reach:
info depth 18 seldepth 29 multipv 1 score cp 189 upperbound nodes 32257735 nps 4036758 hashfull 185 tbhits 0 time 7991 pv c3d2 b7a8
with the master:
info depth 18 seldepth 32 multipv 1 score cp 211 upperbound nodes 58152365 nps 4659644 hashfull 141 tbhits 0 time 12480 pv c3b3 b7a8
So it does not seem to be much worse... Of course there may be other bad positions. Not that the <=5 was just guesstimated, if this is a concern
maybe it could be retested with a tighter limit.
afe45fb
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Congrats!