https://github.com/trflynn89/chessmate
https://github.com/trflynn89/chessmate
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/trflynn89/chessmate
- Owner: trflynn89
- License: mit
- Created: 2015-04-17T15:08:09.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2021-10-08T17:02:41.000Z (over 3 years ago)
- Last Synced: 2025-01-24T06:46:12.303Z (5 months ago)
- Language: C++
- Size: 2.93 MB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# ChessMate
ChessMate is a chess engine written in C++ with a game-playing GUI written in Java. Pretty
incomplete at this point as I only get to work on it sporadically.## ChessMateEngine
The engine uses a bitboard representation of the chess board and uses an iterative min-max algorithm
with alpha/beta pruning to decide what move to make. Behind the scenes, an asynchronous socket
system and a messaging system is used to communicate to clients.## ChessMateGUI
