Skip to content

Commit 0d5fd20

Browse files
committed
Bump 2.0.1 -> 2.1.0
1 parent 59ad7e9 commit 0d5fd20

File tree

6 files changed

+7656
-139
lines changed

6 files changed

+7656
-139
lines changed

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

+35-37
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,6 @@ and so it seemed only fitting for my somewhat limited program to be named this.
4848

4949
## Road map
5050

51-
I mostly enjoy improving the search algorithm more so than the evaluation function.
52-
Because of this, the evaluation function is currently _very_ simple. In fact, it is exactly the
53-
[Simplified Evaluation function](https://www.chessprogramming.org/Simplified_Evaluation_Function)
54-
from the Chess Programming Wiki. Just a material count and piece square tables. Nothing more. For now at least.
55-
5651
The current plan for the project is to improve the strength. The following is a
5752
non-exhaustive list of possibilities for future additions, including all features that have
5853
been added so far. The list is inspired in large part by [this writeup](http://www.frayn.net/beowulf/theory.html).
@@ -71,7 +66,7 @@ been added so far. The list is inspired in large part by [this writeup](http://w
7166
- [X] Delta pruning in quiescence search.
7267
+ [X] Prune when _no_ move can improve enough
7368
+ [X] Prune captures that are insufficient to improve
74-
- [ ] Tapered evaluation
69+
- [X] Tapered evaluation
7570
- [ ] Aspiration window search
7671
- [ ] Late move reductions
7772
- [ ] Static exchange evaluation for move ordering
@@ -89,39 +84,42 @@ adjustable `SkillLevel` is included for reference. This gives an impression of
8984
the relative improvements of the engine over time, but cannot be compared
9085
directly to any other rating systems (e.g. FIDE).
9186

87+
9288
| # | PLAYER | RATING | POINTS | PLAYED | (%)|
9389
|:---:|---|:---:|:---:|:---:|:---:|
94-
| 1 | Stockfish 14.1 (S6) | 2210.1 | 124.5 | 190 | 65.5%|
95-
| 2 | Stockfish 14.1 (S5) | 2171.5 | 131.5 | 221 | 59.5%|
96-
| 3 | Goldfish v2.0.0 | 2104.2 | 1086.0 | 1819 | 59.7%|
97-
| 4 | Goldfish v2.0.0-rc7 | 2030.4 | 687.0 | 1332 | 51.6%|
98-
| 5 | Goldfish v1.13.0 | 1983.0 | 1348.0 | 2622 | 51.4%|
99-
| 6 | Stockfish 14.1 (S4) | 1973.5 | 63.5 | 214 | 29.7%|
100-
| 7 | Goldfish v1.12.1 | 1932.0 | 748.0 | 1613 | 46.4%|
101-
| 8 | Goldfish v1.12.0 | 1906.3 | 833.5 | 1528 | 54.5%|
102-
| 9 | Goldfish v1.11.1 | 1893.0 | 1095.0 | 2015 | 54.3%|
103-
| 10 | Goldfish v1.9.0 | 1878.3 | 1826.5 | 3538 | 51.6%|
104-
| 11 | Goldfish v1.11.0 | 1878.0 | 549.5 | 1100 | 50.0%|
105-
| 12 | Goldfish v2.0.0-rc6 | 1861.2 | 136.0 | 338 | 40.2%|
106-
| 13 | Goldfish v2.0.0-rc3 | 1853.6 | 177.5 | 417 | 42.6%|
107-
| 14 | Goldfish v2.0.0-rc5 | 1848.7 | 120.5 | 316 | 38.1%|
108-
| 15 | Goldfish v2.0.0-rc1 | 1835.2 | 217.5 | 436 | 49.9%|
109-
| 16 | Goldfish v2.0.0-rc2 | 1833.9 | 141.0 | 354 | 39.8%|
110-
| 17 | Goldfish v1.7.0 | 1813.7 | 1086.5 | 2053 | 52.9%|
111-
| 18 | Goldfish v1.8.2 | 1808.8 | 392.0 | 783 | 50.1%|
112-
| 19 | Goldfish v1.7.1 | 1806.6 | 244.0 | 477 | 51.2%|
113-
| 20 | Goldfish v1.8.0 | 1799.2 | 324.0 | 650 | 49.8%|
114-
| 21 | Goldfish v2.0.0-rc4 | 1798.8 | 19.5 | 57 | 34.2%|
115-
| 22 | Goldfish v1.8.1 | 1796.2 | 485.5 | 1000 | 48.5%|
116-
| 23 | Goldfish v1.6.0 | 1783.7 | 625.0 | 1151 | 54.3%|
117-
| 24 | Goldfish v1.7.2 | 1780.8 | 69.5 | 150 | 46.3%|
118-
| 25 | Goldfish v1.5.1 | 1726.0 | 645.5 | 1435 | 45.0%|
119-
| 26 | Goldfish v1.5 | 1723.7 | 554.5 | 1145 | 48.4%|
120-
| 27 | Goldfish v1.4 | 1720.9 | 646.5 | 1325 | 48.8%|
121-
| 28 | Goldfish v1.3 | 1706.2 | 314.0 | 680 | 46.2%|
122-
| 29 | Goldfish v1.2 | 1675.7 | 237.5 | 585 | 40.6%|
123-
| 30 | Goldfish v1.1 | 1634.5 | 210.0 | 597 | 35.2%|
124-
| 31 | Goldfish v1.0 | 1629.2 | 129.5 | 397 | 32.6%|
90+
| 1 | Stockfish 14.1 (S7) | 2378.2 | 46.0 | 78 | 59.0% |
91+
| 2 | Goldfish v2.1.0 | 2314.1 | 196.5 | 374 | 52.5% |
92+
| 3 | Stockfish 14.1 (S6) | 2215.4 | 139.5 | 228 | 61.2% |
93+
| 4 | Stockfish 14.1 (S5) | 2172.3 | 139.5 | 247 | 56.5% |
94+
| 5 | Goldfish v2.0.0 | 2104.2 | 1114.0 | 1945 | 57.3% |
95+
| 6 | Goldfish v2.0.0-rc7 | 2030.4 | 687.0 | 1332 | 51.6% |
96+
| 7 | Goldfish v1.13.0 | 1983.0 | 1348.0 | 2622 | 51.4% |
97+
| 8 | Stockfish 14.1 (S4) | 1974.2 | 63.5 | 214 | 29.7% |
98+
| 9 | Goldfish v1.12.1 | 1932.0 | 748.0 | 1613 | 46.4% |
99+
| 10 | Goldfish v1.12.0 | 1906.3 | 833.5 | 1528 | 54.5% |
100+
| 11 | Goldfish v1.11.1 | 1893.0 | 1095.0 | 2015 | 54.3% |
101+
| 12 | Goldfish v1.9.0 | 1878.3 | 1826.5 | 3538 | 51.6% |
102+
| 13 | Goldfish v1.11.0 | 1878.0 | 549.5 | 1100 | 50.0% |
103+
| 14 | Goldfish v2.0.0-rc6 | 1861.2 | 136.0 | 338 | 40.2% |
104+
| 15 | Goldfish v2.0.0-rc3 | 1853.6 | 177.5 | 417 | 42.6% |
105+
| 16 | Goldfish v2.0.0-rc5 | 1848.7 | 120.5 | 316 | 38.1% |
106+
| 17 | Goldfish v2.0.0-rc1 | 1835.2 | 217.5 | 436 | 49.9% |
107+
| 18 | Goldfish v2.0.0-rc2 | 1833.9 | 141.0 | 354 | 39.8% |
108+
| 19 | Goldfish v1.7.0 | 1813.7 | 1086.5 | 2053 | 52.9% |
109+
| 20 | Goldfish v1.8.2 | 1808.8 | 392.0 | 783 | 50.1% |
110+
| 21 | Goldfish v1.7.1 | 1806.6 | 244.0 | 477 | 51.2% |
111+
| 22 | Goldfish v1.8.0 | 1799.2 | 324.0 | 650 | 49.8% |
112+
| 23 | Goldfish v2.0.0-rc4 | 1798.8 | 19.5 | 57 | 34.2% |
113+
| 24 | Goldfish v1.8.1 | 1796.2 | 485.5 | 1000 | 48.5% |
114+
| 25 | Goldfish v1.6.0 | 1783.7 | 625.0 | 1151 | 54.3% |
115+
| 26 | Goldfish v1.7.2 | 1780.8 | 69.5 | 150 | 46.3% |
116+
| 27 | Goldfish v1.5.1 | 1726.0 | 645.5 | 1435 | 45.0% |
117+
| 28 | Goldfish v1.5 | 1723.7 | 554.5 | 1145 | 48.4% |
118+
| 29 | Goldfish v1.4 | 1720.9 | 646.5 | 1325 | 48.8% |
119+
| 30 | Goldfish v1.3 | 1706.2 | 314.0 | 680 | 46.2% |
120+
| 31 | Goldfish v1.2 | 1675.7 | 237.5 | 585 | 40.6% |
121+
| 32 | Goldfish v1.1 | 1634.5 | 210.0 | 597 | 35.2% |
122+
| 33 | Goldfish v1.0 | 1629.2 | 129.5 | 397 | 32.6% |
125123

126124

127125
Detailed head-to-head statistics can be found [here](stats/head-to-head-history.txt).

engine/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "engine"
3-
version = "2.0.1"
3+
version = "2.1.0"
44
edition = "2021"
55
description = """\
66
Goldfish - A UCI chess engine.

stats/duel.sh

+6-4
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,13 @@
22

33
cutechess-cli \
44
-engine \
5-
conf='Goldfish v2.0.0-rc8' \
5+
conf='Goldfish v2.1.0' \
66
-engine \
7-
conf='Goldfish v2.0.0-rc7' \
7+
conf='Goldfish v2.0.0' \
88
-engine \
9-
conf='Goldfish v1.13.0' \
9+
conf='Stockfish 14.1 (S7)' \
10+
-engine \
11+
conf='Stockfish 14.1 (S8)' \
1012
-each \
1113
tc=40/60 \
1214
proto=uci \
@@ -17,6 +19,6 @@ cutechess-cli \
1719
-games 2 \
1820
-rounds 500 \
1921
-pgnout /home/bendik/goldfish/stats/match-history.pgn min "fi" \
20-
-concurrency 10 \
22+
-concurrency 4 \
2123
-ratinginterval 5 \
2224
-tournament gauntlet \

0 commit comments

Comments
 (0)