Skip to content

Commit

Permalink
Comment debug print
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexGisi committed May 18, 2024
1 parent cbce4ca commit 701560d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/uci.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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();
}
Expand Down

0 comments on commit 701560d

Please sign in to comment.