aboutsummaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authorAdam <adammegarules1@gmail.com>2026-08-15 21:08:30 +0200
committerAdam <adammegarules1@gmail.com>2026-08-15 21:08:30 +0200
commit9702738db498cba05e7605afe1f48672f530e1a9 (patch)
treed9750295996e6ee336e59efdf8ef71804f45e210 /src/main.cpp
parent242b2022ae234e252fe410b276e6d7c971147980 (diff)
removing maximum depth now insted we are gonna just have constant thinging time of 7 seconds for now if no time controls are speficied
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp9
1 files changed, 2 insertions, 7 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 09cb4d1..ade22c9 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -18,19 +18,14 @@ static void perft(int argc, char *argv[]) {
exit(1);
}
- int depth = -1;
+ uint32_t depth = 0;
try {
- depth = std::stoi(argv[2]);
+ depth = static_cast<uint32_t>(std::stoi(argv[2]));
} catch (const std::exception &) {
std::cout << "info string usage: ./mono perft <non-negative depth>\n";
exit(1);
}
- if (depth < 0) {
- std::cout << "info string usage: ./mono perft <non-negative depth>\n";
- exit(1);
- }
-
std::string fen = argv[3];
auto start = std::chrono::steady_clock::now();