Skip to content

Commit d559566

Browse files
committed
wow this is an old error, bench: 7603618
1 parent 74e4033 commit d559566

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

CMakeLists.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,13 @@ set(CMAKE_VERBOSE_MAKEFILE ON)
88
# all of the main typical files, used for all builds
99
set(Common_SRC_Files
1010
src/board.cpp
11+
src/eval.cpp
1112
src/globals.cpp
1213
src/move.cpp
1314
src/movegen.cpp
14-
src/eval.cpp
1515
src/search.cpp
1616
src/tests.cpp
1717
src/tt.cpp
18-
src/tunables.cpp
1918
src/external/fathom/tbprobe.cpp)
2019

2120
# Builds for V1 through V4, each with different featuresets.

src/search.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,9 @@ struct Engine {
7373
TranspositionTable* TT;
7474

7575
std::array<std::array<std::array<std::array<std::array<int16_t, 2>, 64>, 2>, 64>, 2> historyTable;
76-
std::array<std::array<std::array<std::array<std::array<int16_t, 2>, 7>, 64>, 7>, 2> noisyHistoryTable;
77-
std::array<std::array<std::array<std::array<int16_t, 7>, 64>, 7>, 2> qsHistoryTable;
78-
std::array<std::array<std::array<std::array<int16_t, 64>, 7>, 2>, 32768> pawnHistoryTable;
76+
std::array<std::array<std::array<std::array<std::array<int16_t, 2>, 7>, 64>, 6>, 2> noisyHistoryTable;
77+
std::array<std::array<std::array<std::array<int16_t, 7>, 64>, 6>, 2> qsHistoryTable;
78+
std::array<std::array<std::array<std::array<int16_t, 64>, 6>, 2>, 32768> pawnHistoryTable;
7979
Corrhist corrhist;
8080
std::unique_ptr<CHTable> conthistTable;
8181
std::array<std::array<Move, 64>, 64> counterMoves;

0 commit comments

Comments
 (0)