Skip to content

Commit

Permalink
Fix default value of USI options
Browse files Browse the repository at this point in the history
  • Loading branch information
sunfish-shogi committed Jan 31, 2022
1 parent 7fa537d commit 13b4fbe
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/usi/client/UsiClient.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,13 @@ UsiClient::UsiClient() : breakReceiver_(false), isBookLoaded(false) {
});

options_.ponder = true;
options_.hash = 0;
options_.hash = 32;
options_.useBook = true;
options_.snappy = true;
options_.marginMs = 500;
options_.numberOfThreads = 1;
options_.maxDepth = Searcher::DepthInfinity;
options_.maxDepth = 64;
options_.multiPV = 1;
}

void UsiClient::start() {
Expand Down

0 comments on commit 13b4fbe

Please sign in to comment.