projects
/
stockfish
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Don't update pvHit after IID
[stockfish]
/
src
/
search.cpp
diff --git
a/src/search.cpp
b/src/search.cpp
index 99985fde53b4f74acd5d0ac562a2f7e2b452b045..cc8abc9ee814e48ccb1abca96d2e205921946ff9 100644
(file)
--- a/
src/search.cpp
+++ b/
src/search.cpp
@@
-872,7
+872,6
@@
namespace {
tte = TT.probe(posKey, ttHit);
ttValue = ttHit ? value_from_tt(tte->value(), ss->ply) : VALUE_NONE;
ttMove = ttHit ? tte->move() : MOVE_NONE;
- pvHit = ttHit && tte->pv_hit();
}
moves_loop: // When in check, search starts from here