You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: readme.md
+3-10Lines changed: 3 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
# Overview
2
-
Bread is a superhuman chess engine written in C++. Currently, it is rated 2900 elo on the computer chess rating lists. Bread uses minimax search with NNUE (efficiently updatable neural network) as an evaluation function. The neural network is homemade and was originally trained using lichess's open database. More recently, the training has been done using games of self play.
2
+
Bread is a superhuman chess engine written in C++. Currently, it is rated 3000 elo on the computer chess rating lists. Bread uses minimax search with NNUE (efficiently updatable neural network) as an evaluation function. The neural network is homemade and trained using games of self play since version 1.3.0. Originally, the network was trained using lichess's open database.
3
3
4
-
Bread engine does not have a graphical interface built in. However it supports the uci protocol, you can therefore run it on any chess graphical interface, such as [cute chess](https://github.com/cutechess/cutechess) or [arena](http://www.playwitharena.de/).
4
+
Bread engine does not have a graphical interface built in. However it supports the uci protocol, you can therefore run it on any chess graphical interface, such as [en croissant](https://encroissant.org/) or [cute chess](https://github.com/cutechess/cutechess).
5
5
6
6
# Installation
7
7
@@ -31,7 +31,7 @@ and the engine will return the best move. You can find more details on the [uci
31
31
32
32
**You need Cmake and a C++ compiler installed.**
33
33
34
-
The build has been tested using compilers MSVC 19.38, Clang 17.0 and GCC 13.1.
34
+
The build has been tested using compilers Clang 20.1.7 and GCC 13.1.0.
35
35
36
36
### Windows
37
37
@@ -48,13 +48,6 @@ This will generate a build folder with the executable.
48
48
49
49
Run the script `compile_script_for_linux.sh`. The executable will be generated in the `build` folder.
50
50
51
-
## Run the engine on a chess graphical interface:
52
-
### Cute chess
53
-
You can download cute chess [here](https://github.com/cutechess/cutechess/releases).
54
-
To add the engine select: tools -> settings -> engines -> + -> command, and choose the engine's executable.
55
-
56
-
To play a game against the engine, select: game -> new and choose the settings you want.
0 commit comments