diff --git a/README.md b/README.md index b3c2c5d..8393520 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ UCI chess engine. Play against Megalodon on [Lichess][lichess]! -[Version 0.4.2][latest] was recently released! +[Version 0.4.3][latest] was recently released! # Compiling diff --git a/docs/index.md b/docs/index.md index 972d929..9d58153 100644 --- a/docs/index.md +++ b/docs/index.md @@ -6,7 +6,7 @@ UCI chess engine Play against Megalodon on [Lichess][lichess]! -[Version 0.4.2][latest] was recently released! +[Version 0.4.3][latest] was recently released! ## Table of Contents diff --git a/docs/releases.md b/docs/releases.md index 3fdf277..792bb05 100644 --- a/docs/releases.md +++ b/docs/releases.md @@ -2,6 +2,16 @@ This page contains release info. +## [Megalodon 0.4.3][v0.4.3] + +This release contains a transposition table. It has a default size of 256 MB, and stores about 50 million positions. +Consider increasing this size for a deep search. + +It plays almost 300 ELO stronger than the previous release. +This is due to a much deeper search in most positions. + +Bench: 765969 + ## [Megalodon 0.4.2][v0.4.2] This release features improved evaluation functions. @@ -194,6 +204,7 @@ Megalodon uses a minimax search with material and piece maps as evaluation. [Back to documentation home][home] [home]: https://megalodon-chess.github.io/megalodon/ +[v0.4.3]: https://github.com/megalodon-chess/megalodon/releases/tag/v0.4.3 [v0.4.2]: https://github.com/megalodon-chess/megalodon/releases/tag/v0.4.2 [v0.4.1]: https://github.com/megalodon-chess/megalodon/releases/tag/v0.4.1 [v0.4.0]: https://github.com/megalodon-chess/megalodon/releases/tag/v0.4.0 diff --git a/src/main.cpp b/src/main.cpp index 8b4bef6..6d3aacf 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -27,7 +27,7 @@ #include "search.hpp" #include "utils.hpp" -#define VERSION "0.4.2" +#define VERSION "0.4.3" using std::cin; using std::cout;