Skip to content

Commit

Permalink
Formatting.
Browse files Browse the repository at this point in the history
  • Loading branch information
phuang1024 committed Mar 31, 2021
1 parent 02f2109 commit d273498
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions src/options.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,14 @@ Options::Options() {
UseHashTable = false;

ABPassStart = 5;
ABPassMargin = 500;
MoveTimeMult = 100;
ABPassMargin = 500;
MoveTimeMult = 100;

EvalMaterial = 100;
EvalPawnStruct = 100;
EvalSpace = 100;
EvalKnights = 100;
EvalKings = 100;
EvalKnights = 100;
EvalKings = 100;

PrintCurrMove = true;
PrintPv = true;
Expand Down
2 changes: 1 addition & 1 deletion src/search.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ namespace Search {
const SearchInfo result = dfs(options, new_pos, depth-1, alpha, beta, false, endtime);
nodes += result.nodes;

if (root && options.PrintCurrMove && (depth >= 6)) {
if (root && options.PrintCurrMove && (depth >= 5)) {
cout << "info depth " << depth << " currmove " << Bitboard::move_str(moves[i])
<< " currmovenumber " << i+1 << endl;
}
Expand Down

0 comments on commit d273498

Please sign in to comment.