mirror of
https://github.com/opelly27/Stockfish.git
synced 2026-05-20 03:57:45 +00:00
Merge branch 'master' into clusterMergeMaster3
This commit is contained in:
+3
-3
@@ -239,9 +239,9 @@ void signals_poll() {
|
||||
}
|
||||
|
||||
void save(Thread* thread, TTEntry* tte,
|
||||
Key k, Value v, Bound b, Depth d, Move m, Value ev) {
|
||||
Key k, Value v, bool PvHit, Bound b, Depth d, Move m, Value ev) {
|
||||
|
||||
tte->save(k, v, b, d, m, ev);
|
||||
tte->save(k, v, PvHit, b, d, m, ev);
|
||||
|
||||
if (d > 3 * ONE_PLY)
|
||||
{
|
||||
@@ -291,7 +291,7 @@ void save(Thread* thread, TTEntry* tte,
|
||||
bool found;
|
||||
TTEntry* replace_tte;
|
||||
replace_tte = TT.probe(e.first, found);
|
||||
replace_tte->save(e.first, e.second.value(), e.second.bound(), e.second.depth(),
|
||||
replace_tte->save(e.first, e.second.value(), e.second.pv_hit(), e.second.bound(), e.second.depth(),
|
||||
e.second.move(), e.second.eval());
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user