Add one more TODO

This commit is contained in:
Joost VandeVondele
2018-12-29 15:34:56 +01:00
committed by Stéphane Nicolet
parent 54a0a228f6
commit 9cd2c817db
+1
View File
@@ -1661,6 +1661,7 @@ string UCI::pv(const Position& pos, Depth depth, Value alpha, Value beta) {
if (!tb && i == pvIdx) if (!tb && i == pvIdx)
ss << (v >= beta ? " lowerbound" : v <= alpha ? " upperbound" : ""); ss << (v >= beta ? " lowerbound" : v <= alpha ? " upperbound" : "");
// TODO fix approximate node calculation.
ss << " nodes " << nodesSearched * Cluster::size() ss << " nodes " << nodesSearched * Cluster::size()
<< " nps " << nodesSearched * Cluster::size() * 1000 / elapsed; << " nps " << nodesSearched * Cluster::size() * 1000 / elapsed;