Skip to content

Commit

Permalink
Weiss 1.4 (#474)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
TerjeKir committed Jul 2, 2021
1 parent afd588c commit d1ea873
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/evaluate.c
Original file line number Diff line number Diff line change
Expand Up @@ -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]);
}
Expand Down
2 changes: 1 addition & 1 deletion src/uci.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit d1ea873

Please sign in to comment.