From 701560d1e91dbed77dfa5d354b1deed0467e2128 Mon Sep 17 00:00:00 2001 From: Alex Gisi Date: Sat, 18 May 2024 13:48:22 -0500 Subject: [PATCH] Comment debug print --- src/uci.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/uci.cpp b/src/uci.cpp index c5a8f4a..817fd6b 100644 --- a/src/uci.cpp +++ b/src/uci.cpp @@ -109,9 +109,11 @@ void uci_parse_go(Board &board, std::istringstream is, SearchInfo &info) { if (depth == -1) info.depth = MAX_DEPTH; + /* printf("time:%d start:%llu stop:%llu depth:%d timeset:%d", time,info.start_time,info.stop_time,info.depth,info.time_set); std::cout << std::endl; + */ std::thread (search, std::ref(board), std::ref(info)).detach(); }