Skip to content

fitzcarrald/Bienchen

Repository files navigation

Bienchen UCI chess engine

(c) 2022 Manuel Schenske

a project for self education in modern C++

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program.  If not, see <https://www.gnu.org/licenses/>.

https://www.gnu.org/licenses/

• tested with gcc 11.2, gcc 12 and clang 14
• tested with Arena on Linux and Windows
• tested with PyChess on Linux

• UCI Protokol
• Magic Bitboard Generator
• History & Killer Heuristic
• AlphaBetaPV Search
• fixed size Hashtable (256 MB @all)
• Opening Book - none
• EGTB - none
• Ponder - no

2do...

• Parameter tuning
• improve evaluation
• some code alignment
• Configuration @all
• EGTB ?

my sources...

• chessprogramming.org
• chessprogramming.net
• stockfishchess.org
• lczero.org
• playwitharena.de
• cppreference.com
• stackoverflow.com
• and a lot more...

Thank You!