From 99cd513264be1ad61848bbefd678be0feaa08061 Mon Sep 17 00:00:00 2001 From: loco-loco Date: Wed, 11 Jan 2017 23:46:46 -0800 Subject: [PATCH] Removing CM parameter from the Stats struct. (#970) After the history simplifications, we are only using Value Stats for CounterMoveHistory table. Therefore the parameter CM is not necessary. No functional change. --- src/movepick.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/movepick.h b/src/movepick.h index ec8b1554..0ef2c89b 100644 --- a/src/movepick.h +++ b/src/movepick.h @@ -60,7 +60,7 @@ private: /// Entries are stored using only the moving piece and destination square, hence /// two moves with different origin but same destination and piece will be /// considered identical. -template +template struct Stats { const T* operator[](Piece pc) const { return table[pc]; } T* operator[](Piece pc) { return table[pc]; } @@ -71,7 +71,7 @@ struct Stats { if (abs(int(v)) >= 324) return; - table[pc][to] -= table[pc][to] * abs(int(v)) / (CM ? 936 : 324); + table[pc][to] -= table[pc][to] * abs(int(v)) / 936; table[pc][to] += int(v) * 32; } @@ -80,7 +80,7 @@ private: }; typedef Stats MoveStats; -typedef Stats CounterMoveStats; +typedef Stats CounterMoveStats; typedef Stats CounterMoveHistoryStats; -- 2.39.2