mirror of
https://github.com/opelly27/Stockfish.git
synced 2026-05-20 13:17:44 +00:00
Standardize Comments
use double slashes (//) only for comments. closes #4820 No functional change.
This commit is contained in:
committed by
Joost VandeVondele
parent
fe53a18f7a
commit
edb4ab924f
+11
-11
@@ -95,17 +95,17 @@ const std::vector<std::string> Defaults = {
|
||||
|
||||
namespace Stockfish {
|
||||
|
||||
/// setup_bench() builds a list of UCI commands to be run by bench. There
|
||||
/// are five parameters: TT size in MB, number of search threads that
|
||||
/// should be used, the limit value spent for each position, a file name
|
||||
/// where to look for positions in FEN format, and the type of the limit:
|
||||
/// depth, perft, nodes and movetime (in milliseconds). Examples:
|
||||
///
|
||||
/// bench : search default positions up to depth 13
|
||||
/// bench 64 1 15 : search default positions up to depth 15 (TT = 64MB)
|
||||
/// bench 64 1 100000 default nodes : search default positions for 100K nodes each
|
||||
/// bench 64 4 5000 current movetime : search current position with 4 threads for 5 sec
|
||||
/// bench 16 1 5 blah perft : run a perft 5 on positions in file "blah"
|
||||
// setup_bench() builds a list of UCI commands to be run by bench. There
|
||||
// are five parameters: TT size in MB, number of search threads that
|
||||
// should be used, the limit value spent for each position, a file name
|
||||
// where to look for positions in FEN format, and the type of the limit:
|
||||
// depth, perft, nodes and movetime (in milliseconds). Examples:
|
||||
//
|
||||
// bench : search default positions up to depth 13
|
||||
// bench 64 1 15 : search default positions up to depth 15 (TT = 64MB)
|
||||
// bench 64 1 100000 default nodes : search default positions for 100K nodes each
|
||||
// bench 64 4 5000 current movetime : search current position with 4 threads for 5 sec
|
||||
// bench 16 1 5 blah perft : run a perft 5 on positions in file "blah"
|
||||
|
||||
std::vector<std::string> setup_bench(const Position& current, std::istream& is) {
|
||||
|
||||
|
||||
Reference in New Issue
Block a user