mirror of
https://github.com/opelly27/Stockfish.git
synced 2026-05-20 14:27:45 +00:00
Remove TranspositionTable::overwrites variable
Doesn't provide useful information and can cause slowdown with many Threads. No functional change Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
committed by
Marco Costalba
parent
2adbb80b8b
commit
00e86078a5
+2
-3
@@ -738,8 +738,7 @@ namespace {
|
||||
// Print final search statistics
|
||||
cout << "info nodes " << TM.nodes_searched()
|
||||
<< " nps " << nps()
|
||||
<< " time " << current_search_time()
|
||||
<< " hashfull " << TT.full() << endl;
|
||||
<< " time " << current_search_time() << endl;
|
||||
|
||||
// Print the best move and the ponder move to the standard output
|
||||
if (pv[0] == MOVE_NONE)
|
||||
@@ -2154,7 +2153,7 @@ namespace {
|
||||
dbg_print_hit_rate();
|
||||
|
||||
cout << "info nodes " << TM.nodes_searched() << " nps " << nps()
|
||||
<< " time " << t << " hashfull " << TT.full() << endl;
|
||||
<< " time " << t << endl;
|
||||
}
|
||||
|
||||
// Should we stop the search?
|
||||
|
||||
Reference in New Issue
Block a user