forked from GediminasMasaitis/texel-tuner
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add custom schema 10 - individual buckets for first rank, and the res…
…t in half-files (lynx-chess/Lynx#893)
- Loading branch information
1 parent
c4d8844
commit 22c9be7
Showing
3 changed files
with
2,921 additions
and
1,915 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,14 @@ | ||
#pragma once | ||
|
||
constexpr static int PSQTBucketCount = 16; | ||
constexpr static int PSQTBucketCount = 24; | ||
|
||
constexpr static std::array<int, 64> PSQTBucketLayout = { | ||
16, 17, 18, 19, 20, 21, 22, 23, | ||
16, 17, 18, 19, 20, 21, 22, 23, | ||
16, 17, 18, 19, 20, 21, 22, 23, | ||
16, 17, 18, 19, 20, 21, 22, 23, | ||
8, 9, 10, 11, 12, 13, 14, 15, | ||
8, 9, 10, 11, 12, 13, 14, 15, | ||
8, 9, 10, 11, 12, 13, 14, 15, | ||
0, 1, 2, 3, 4, 5, 6, 7, // | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.