Skip to content

Commit

Permalink
Fixing time management issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelstarshot committed Aug 19, 2018
1 parent ef77d6f commit 2e63006
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/UCIOption.cpp
Expand Up @@ -69,7 +69,7 @@ void init(OptionsMap& o) {
o["Skill Level"] << Option(20, 0, 20);
o["Move Overhead"] << Option(30, 0, 5000);
o["Minimum Thinking Time"] << Option(20, 0, 5000);
o["Slow Mover"] << Option(84, 10, 1000);
o["Slow Mover"] << Option(40, 10, 1000);
o["nodestime"] << Option(0, 0, 10000);
o["UCI_Chess960"] << Option(false);
o["UCI_AnalyseMode"] << Option(false);
Expand Down
2 changes: 1 addition & 1 deletion src/main.cpp
Expand Up @@ -44,7 +44,7 @@ using namespace Utils;

static void license_blurb() {
myprintf_so(
"LeelaFish %s Copyright (C) 2018 Samuel Graván and contributors\n"
"LeelaFish %s Copyright (C) 2018 Samuel Gravan and contributors\n"
"Based on:\n"
"Leela Chess Copyright (C) 2017 benediamond\n"
"Leela Zero Copyright (C) 2017-2018 Gian-Carlo Pascutto and contributors\n"
Expand Down
2 changes: 1 addition & 1 deletion src/misc.cpp
Expand Up @@ -138,7 +138,7 @@ const string engine_info(bool to_uci) {
ss << (Is64Bit ? " 64" : "")
<< (HasPext ? " BMI2" : (HasPopCnt ? " POPCNT" : ""))
<< (to_uci ? "\nid author ": " by ")
<< "Samuel Graván";
<< "Samuel Gravan";

return ss.str();
}
Expand Down

0 comments on commit 2e63006

Please sign in to comment.