projects
/
stockfish
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Make use of asymmetric SEE
[stockfish]
/
src
/
search.cpp
diff --git
a/src/search.cpp
b/src/search.cpp
index
60667c8
..
ab34673
100644
(file)
--- a/
src/search.cpp
+++ b/
src/search.cpp
@@
-1228,7
+1228,7
@@
split_point_start: // At split points actual search starts from here
// Prune moves with negative or equal SEE
if ( futilityBase < beta
&& depth < DEPTH_ZERO
- && pos.see
(mov
e) <= 0)
+ && pos.see
_asymm(move, beta - futilityBas
e) <= 0)
{
bestValue = std::max(bestValue, futilityBase);
continue;