diff --git a/src/search.cpp b/src/search.cpp index 0956180b..553ef4e5 100644 --- a/src/search.cpp +++ b/src/search.cpp @@ -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;