Skip to content

Commit bf40b1b

Browse files
committed
kick to 9.2
Various cleanups and speed improvements - Fixed a crucial bug which resulted in invalid TT entries, especially at short TC (~20 Elo) - Improved accumulator updates (~8 Elo) - Improved accumulator memcpy handling (~7 Elo) - Improved accumulator king history usage (~5 Elo) bench: 3661572
1 parent b47b3f4 commit bf40b1b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ file(GLOB_RECURSE SRCS src_files/*.c src_files/*.cpp src_files/*.h)
77

88
add_executable(Koivisto ${SRCS})
99
add_definitions(-DEVALFILE=\"../networks/default.net\")
10-
add_definitions(-DMINOR_VERSION=1)
10+
add_definitions(-DMINOR_VERSION=2)
1111
add_definitions(-DMAJOR_VERSION=9)
1212

1313
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -march=native")

src_files/makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ _SRCS := $(_CSRCS) $(_CXXSRCS)
1414

1515
# engine name and version
1616
NAME = Koivisto
17-
MINOR = 1
17+
MINOR = 2
1818
MAJOR = 9
1919
MAKROS = -DMINOR_VERSION=$(MINOR) -DMAJOR_VERSION=$(MAJOR)
2020

0 commit comments

Comments
 (0)