Skip to content

Commit

Permalink
- Adjust lowest depth constants to the natural place : official-stock…
Browse files Browse the repository at this point in the history
  • Loading branch information
yaneurao committed Jun 4, 2024
1 parent 04eb4e3 commit 8f6c7ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/types.h
Original file line number Diff line number Diff line change
Expand Up @@ -399,10 +399,10 @@ enum : int {
// only for the TT entry occupancy check (see tt.cpp), and should thus be lower than _UNSEARCHED.

// DEPTH_NONEは探索せずに値を求めたという意味に使う。
DEPTH_UNSEARCHED = -6,
DEPTH_UNSEARCHED = -2,

// TTの下駄履き用(TTEntryが使われているかどうかのチェックにのみ用いる)
DEPTH_ENTRY_OFFSET = -7
DEPTH_ENTRY_OFFSET = -3
};

// --------------------
Expand Down

0 comments on commit 8f6c7ab

Please sign in to comment.