From d1ea87308fd2dcdde5a83db97e2e06c90b5dca7b Mon Sep 17 00:00:00 2001 From: TerjeKir <42723273+TerjeKir@users.noreply.github.com> Date: Fri, 2 Jul 2021 23:56:48 +0200 Subject: [PATCH] Weiss 1.4 (#474) Since version 1.3 released 5 months ago Weiss has gained about 160 self-play elo: STC +5315 -910 =3775 Elo difference: 164.29 +- 5.56 LTC +4949 -698 =4353 Elo difference: 157.70 +- 5.18 --- src/evaluate.c | 2 +- src/uci.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/evaluate.c b/src/evaluate.c index 6e68a01a..2614f0ab 100644 --- a/src/evaluate.c +++ b/src/evaluate.c @@ -138,7 +138,7 @@ INLINE int EvalPawns(const Position *pos, const Color color) { // Phalanx Bitboard phalanx = pawns & ShiftBB(pawns, WEST); while (phalanx) { - Square rank = RelativeRank(color, RankOf(PopLsb(&phalanx))); + int rank = RelativeRank(color, RankOf(PopLsb(&phalanx))); eval += PawnPhalanx[rank]; TraceIncr(PawnPhalanx[rank]); } diff --git a/src/uci.h b/src/uci.h index d5377928..1c3e7694 100644 --- a/src/uci.h +++ b/src/uci.h @@ -24,7 +24,7 @@ #include "threads.h" -#define NAME "Weiss 1.3-dev" +#define NAME "Weiss 1.4" #define START_FEN "rnbqkbnr/pppppppp/8/8/8/8/PPPPPPPP/RNBQKBNR w KQkq - 0 1" #define INPUT_SIZE 4096