From 93b12e024540f62114cf9015a03a2129d036b482 Mon Sep 17 00:00:00 2001 From: QueensGambit Date: Wed, 5 May 2021 23:54:29 +0200 Subject: [PATCH] update engine version to 0.9.2 removed unused variable "updateIntervalMS" --- engine/src/constants.h | 2 +- engine/src/uci/timeoutreadythread.h | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/engine/src/constants.h b/engine/src/constants.h index 6937884b..258499a5 100644 --- a/engine/src/constants.h +++ b/engine/src/constants.h @@ -53,7 +53,7 @@ const string engineName = "MultiAra"; const string engineName = "ClassicAra"; #endif -const string engineVersion = "0.9.1-Dev"; +const string engineVersion = "0.9.2"; const string engineAuthors = "Johannes Czech, Moritz Willig, Alena Beyer et al."; #define LOSS_VALUE -1 diff --git a/engine/src/uci/timeoutreadythread.h b/engine/src/uci/timeoutreadythread.h index 111e5413..af099aa6 100644 --- a/engine/src/uci/timeoutreadythread.h +++ b/engine/src/uci/timeoutreadythread.h @@ -39,10 +39,8 @@ using namespace std; */ class TimeOutReadyThread : public KillableThread { - private: size_t timeOutMS; - size_t updateIntervalMS = 250; bool isRunning; public: TimeOutReadyThread(size_t timeOutMS) : timeOutMS(timeOutMS) {}