1
0
Fork 0
mirror of https://github.com/sockspls/badfish synced 2025-05-01 17:19:36 +00:00

Add one more TODO

This commit is contained in:
Joost VandeVondele 2018-12-14 17:33:39 +01:00 committed by Stéphane Nicolet
parent 54a0a228f6
commit 9cd2c817db

View file

@ -1661,6 +1661,7 @@ string UCI::pv(const Position& pos, Depth depth, Value alpha, Value beta) {
if (!tb && i == pvIdx)
ss << (v >= beta ? " lowerbound" : v <= alpha ? " upperbound" : "");
// TODO fix approximate node calculation.
ss << " nodes " << nodesSearched * Cluster::size()
<< " nps " << nodesSearched * Cluster::size() * 1000 / elapsed;