Skip to content

Commit

Permalink
th = 120
Browse files Browse the repository at this point in the history
  • Loading branch information
MJZ1977 committed Aug 9, 2019
1 parent 28151a0 commit b6855b9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/search.cpp
Expand Up @@ -1091,12 +1091,12 @@ namespace {
r -= ONE_PLY;

// Decrease reduction if opponent move seems good
if (!lastCapture && ss->staticEval < -(ss-1)->staticEval - 160)
if (!lastCapture && ss->staticEval < -(ss-1)->staticEval - 120)
{
r -= ONE_PLY;
/*pos.undo_move(move);
sync_cout << "Position : " << pos.fen()
<< " - last move : " << UCI::move((ss-1)->currentMove, pos.is_chess960())
<< " - last move : " << UCI::move((ss-1)->currentMove, pos.is_chess960())
<< " ss " << ss->staticEval << " ss-1 " << (ss-1)->staticEval << sync_endl;
pos.do_move(move, st, givesCheck);*/
}
Expand Down

0 comments on commit b6855b9

Please sign in to comment.