projects
/
stockfish
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d3c3c4f
)
Make use of asymmetric SEE
author
Joona Kiiski
<joona.kiiski@gmail.com>
Sat, 30 Mar 2013 20:01:49 +0000
(20:01 +0000)
committer
Joona Kiiski
<joona.kiiski@gmail.com>
Fri, 5 Apr 2013 18:05:32 +0000
(19:05 +0100)
src/search.cpp
patch
|
blob
|
history
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;