X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fbenchmark.cpp;h=605c95ad6ba23a042169b5fe8e214bb9c7910d06;hp=64de5d6dfdb4c979f7a2326819ef2bb440346808;hb=9369f4963d9376820cb5ca4bad66b86e67b0a010;hpb=5943600a890cef1e83235d08b248e686c95c77d1 diff --git a/src/benchmark.cpp b/src/benchmark.cpp index 64de5d6d..605c95ad 100644 --- a/src/benchmark.cpp +++ b/src/benchmark.cpp @@ -1,7 +1,7 @@ /* Stockfish, a UCI chess playing engine derived from Glaurung 2.1 Copyright (C) 2004-2008 Tord Romstad (Glaurung author) - Copyright (C) 2008-2014 Marco Costalba, Joona Kiiski, Tord Romstad + Copyright (C) 2008-2015 Marco Costalba, Joona Kiiski, Tord Romstad Stockfish is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -88,7 +88,7 @@ const char* Defaults[] = { /// be used, the limit value spent for each position (optional, default is /// depth 13), an optional file name where to look for positions in FEN /// format (defaults are the positions defined above) and the type of the -/// limit value: depth (default), time in secs or number of nodes. +/// limit value: depth (default), time in millisecs or number of nodes. void benchmark(const Position& current, istream& is) { @@ -108,7 +108,7 @@ void benchmark(const Position& current, istream& is) { TT.clear(); if (limitType == "time") - limits.movetime = 1000 * atoi(limit.c_str()); // movetime is in ms + limits.movetime = atoi(limit.c_str()); // movetime is in ms else if (limitType == "nodes") limits.nodes = atoi(limit.c_str());