-
-
Notifications
You must be signed in to change notification settings - Fork 104
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule Stockfish
updated
37 files
+1 −1 | .github/workflows/sanitizers.yml | |
+6 −6 | .github/workflows/tests.yml | |
+1 −0 | .github/workflows/upload_binaries.yml | |
+5 −0 | .gitignore | |
+1 −0 | AUTHORS | |
+1 −1 | README.md | |
+15 −0 | scripts/get_native_properties.sh | |
+75 −0 | scripts/net.sh | |
+39 −55 | src/Makefile | |
+349 −0 | src/benchmark.cpp | |
+10 −0 | src/benchmark.h | |
+2 −2 | src/bitboard.cpp | |
+29 −12 | src/engine.cpp | |
+7 −2 | src/engine.h | |
+3 −6 | src/evaluate.cpp | |
+31 −0 | src/memory.cpp | |
+2 −0 | src/memory.h | |
+8 −5 | src/misc.cpp | |
+5 −3 | src/misc.h | |
+12 −5 | src/movepick.cpp | |
+51 −5 | src/movepick.h | |
+30 −21 | src/nnue/network.cpp | |
+3 −1 | src/nnue/network.h | |
+137 −193 | src/nnue/nnue_feature_transformer.h | |
+6 −5 | src/numa.h | |
+63 −5 | src/position.cpp | |
+13 −0 | src/position.h | |
+90 −75 | src/search.cpp | |
+9 −2 | src/search.h | |
+11 −4 | src/tt.cpp | |
+1 −1 | src/tt.h | |
+172 −2 | src/uci.cpp | |
+4 −1 | src/uci.h | |
+520 −0 | tests/instrumented.py | |
+0 −301 | tests/instrumented.sh | |
+1 −1 | tests/perft.sh | |
+378 −0 | tests/testing.py |