Skip to content

Commit 60e66d5

Browse files
committed
bumped ClassicAra version to 0.9.8
enabled SUPPORT960 for ClassicAra by default
1 parent fabfaf3 commit 60e66d5

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

engine/CMakeLists.txt

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ option(BACKEND_TENSORRT "Build with TensorRT support" ON)
88
option(BACKEND_MXNET "Build with MXNet backend (Blas/IntelMKL/CUDA/TensorRT) support" OFF)
99
option(BACKEND_TORCH "Build with Torch backend (CPU/GPU) support" OFF)
1010
option(BACKEND_OPENVINO "Build with OpenVino backend (CPU/GPU) support" OFF)
11-
option(USE_960 "Build with 960 variant support" OFF)
1211
option(BUILD_TESTS "Build and run tests" OFF)
1312
option(USE_DYNAMIC_NN_ARCH "Build with dynamic neural network architektur support" ON)
1413
# enable a single mode for different model input / outputs
@@ -38,6 +37,7 @@ if (MODE_CHESS)
3837
# add_definitions(-DVERSION=2)
3938
# add_definitions(-DSUB_VERSION=8)
4039
add_definitions(-DVERSION=3)
40+
add_definitions(-DSUPPORT960)
4141
endif()
4242

4343
if (MODE_LICHESS)
@@ -427,10 +427,6 @@ if (BACKEND_TENSORRT)
427427
add_definitions(-DTENSORRT)
428428
endif()
429429

430-
if (USE_960)
431-
add_definitions(-DSUPPORT960)
432-
endif()
433-
434430
add_executable(${PROJECT_NAME} ${source_files})
435431

436432
if (BACKEND_TENSORRT)

engine/src/constants.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ const string engineName = "OpenSpielAra";
5959
const string engineName = "ClassicAra";
6060
#endif
6161

62-
const string engineVersion = "0.9.7.post0";
62+
const string engineVersion = "0.9.8";
6363
#ifdef MODE_CRAZYHOUSE
6464
const string engineAuthors = "Johannes Czech, Moritz Willig, Alena Beyer and CrazyAra developers (see AUTHORS file)";
6565
#elif defined MODE_LICHESS

0 commit comments

Comments
 (0)