Skip to content

Commit 2139b61

Browse files
committed
3.3.0
Bench: 8463261
1 parent e1d82dd commit 2139b61

4 files changed

Lines changed: 9 additions & 5 deletions

File tree

README.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Berserk Chess Engine
22

3+
<img src="resources/berserk.jpg" alt="Berserk" width="400" />
4+
35
A UCI chess engine written in C.
46

57
## Elo History
@@ -10,15 +12,17 @@ A UCI chess engine written in C.
1012
| ----------- | ------- | ------ |
1113
| 1.2.2 | 2160 | 2'+1" |
1214
| 2.0.0 | 2546 | 2'+1" |
13-
| 3.0.0 | | |
15+
| 3.2.0 | 2896 | 2'+1" |
16+
| 3.3.0 | | |
1417

1518
### Lars No SMP
1619

1720
| **Version** | **Elo** | **TC** |
1821
| ----------- | ------- | ------ |
1922
| 2.0.0 | ~2600 | 15' |
2023
| 3.0.0 | 2818 | 15' |
21-
| 3.2.0 | 2899 | 15' |
24+
| 3.2.0 | 2901 | 15' |
25+
| 3.3.0 | | |
2226

2327
## Features
2428

@@ -61,7 +65,7 @@ Evaluation is tapered.
6165
- Phased move generated
6266
- Candidate passed pawns
6367
- More positional analysis
64-
- Singularity extension
68+
- ~~Singularity extension~~
6569
- ~~Texel tuning~~
6670
- Other things...
6771

resources/berserk.jpg

111 KB
Loading

src/makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
CC = gcc
22
SRC = *.c
33
EXE = berserk
4-
VERSION = 3.2.1
4+
VERSION = 3.3.0
55

66
LIBS = -lm
77
WFLAGS = -std=gnu11 -Wall -Wextra -Wshadow

src/uci.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
#include "util.h"
3030

3131
#define NAME "Berserk"
32-
#define VERSION "3.2.1"
32+
#define VERSION "3.3.0"
3333

3434
#define START_FEN "rnbqkbnr/pppppppp/8/8/8/8/PPPPPPPP/RNBQKBNR w KQkq - 0 1"
3535

0 commit comments

Comments
 (0)