X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fbenchmark.cpp;h=5800a37bb10484526c0aeb923d24c20bd2b0a0d8;hp=b0b9e16b7881da1783326d72825a376998e99020;hb=90ec4a403ae326b85dfa68afd5fd7ed47d5bc651;hpb=8b00e50cb74392c24938c0019ac528a9feabd614 diff --git a/src/benchmark.cpp b/src/benchmark.cpp index b0b9e16b..5800a37b 100644 --- a/src/benchmark.cpp +++ b/src/benchmark.cpp @@ -132,10 +132,10 @@ void benchmark(const Position& current, istream& is) { } } - int e = time.elapsed(); + int e = time.elapsed() + 1; // Assure positive to avoid a 'divide by zero' cerr << "\n===========================" << "\nTotal time (ms) : " << e << "\nNodes searched : " << nodes - << "\nNodes/second : " << int(nodes / (e / 1000.0)) << endl; + << "\nNodes/second : " << 1000 * nodes / e << endl; }