{"id":21762264,"url":"https://github.com/corejust/chessgm","last_synced_at":"2026-01-08T19:32:33.002Z","repository":{"id":212098040,"uuid":"730707106","full_name":"CoreJust/ChessGM","owner":"CoreJust","description":"A chess engine in C++ with Xboard/UCI support.","archived":false,"fork":false,"pushed_at":"2024-09-30T17:53:44.000Z","size":996,"stargazers_count":1,"open_issues_count":1,"forks_count":1,"subscribers_count":3,"default_branch":"main","last_synced_at":"2024-11-26T12:12:11.651Z","etag":null,"topics":["ai","chess","chess-ai","chess-engine","chessgm","cpp20","gpl3","makefile","uci","uci-chess-engine","visual-studio","xboard"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/CoreJust.png","metadata":{"files":{"readme":"readme.md","changelog":"changelog.txt","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-12-12T13:57:07.000Z","updated_at":"2024-10-17T23:10:30.000Z","dependencies_parsed_at":"2023-12-29T14:26:14.567Z","dependency_job_id":"0ab6b71d-5e67-4188-bbf8-09d9a0733ede","html_url":"https://github.com/CoreJust/ChessGM","commit_stats":null,"previous_names":["corejust/chessmaster2023","corejust/chessgm"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CoreJust%2FChessGM","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CoreJust%2FChessGM/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CoreJust%2FChessGM/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CoreJust%2FChessGM/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/CoreJust","download_url":"https://codeload.github.com/CoreJust/ChessGM/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":235652787,"owners_count":19024261,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ai","chess","chess-ai","chess-engine","chessgm","cpp20","gpl3","makefile","uci","uci-chess-engine","visual-studio","xboard"],"created_at":"2024-11-26T12:11:36.434Z","updated_at":"2025-10-07T19:30:44.953Z","avatar_url":"https://github.com/CoreJust.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Overview\nChessGM is a chess engine written in C++. It supports both Winboard and UCI and has its own console interface. \n\nThe engine is based on my old project (that I have never published), some of the auxiliary functions (mostly move generation, the magic bitboards) are based on [Stockfish](https://github.com/official-stockfish/Stockfish/tree/master).\n\nThe engine is developed as a hobby.\n\n## Features\n* Search:\n1) NegaMax with Alpha-Beta\n2) MVV/LVA move ordering\n3) History heuristic\n4) Killer moves\n5) 2-tier transposition table\n6) Principal Variation Search\n7) Futility Pruning\n8) Razoring\n9) Null Move Pruning with verification\n10) Late Move Reduction\n11) Shallow Depth SEE Pruning\n12) History Leaf Pruning\n13) Mate Distance Pruning\n14) Aspiration Window\n15) Internal Iterative Deepening\n\n* Quiescence search:\n1) Captures, promotions, checks and check evasions\n2) SEE pruning\n3) Delta pruning\n\n* Static evaluation:\n1) Material (Separate pieces, Bishop Pair)\n2) Piece-Square Tables\n3) Tempo\n4) Pawns (backward, isolated, double, defended pawns, pawn islands)\n5) Passed pawns (their rank, tarrasch rule, minor blocking a passed)\n6) Pawn hash table\n7) Separate evaluation functions for some endgames (KXK, KPsKPs, KBNK, drawish endgames)\n\n## Engine power\nChessGM was tested in a tournament against several other engines from CCRL\nwith time control 0:01+1.\n\nEstimated elo: 2434 (computed with Bayeselo).\n\n## Contents\n* ChessGM/ - the source files\n* ChessGM.sln - Visual Studio Solution\n* ChessGM.exe - executable for Windows\n* Makefile - can be used to build the engine with GCC\n* changelog.txt - the history of versions\n* LICENSE - the license (GNU GPL)\n\n\n# Building\nThere is a windows binary provided. The project is made in Visual Studio and fully supports MSVC, for MSVC there is a VS solution file. Also, GNU GCC is supported.\nTo build with GCC, a Makefile is provided.\n\n# Roadmap\nThe features that are supposed to be implemented by the future versions (most of which were implemented in the old ChessGM of mine):\n\n* 0.7) Pieces update (mobility, space, connectivity, center control, trapped pieces...)\n* 0.7.1) Knights and bishops (outposts, bad bishop, fianchetto, color weakness\n* 0.7.2) Rooks and queens (rook on (semi)open file, rook behind a passed, rook on seventh rank,\n\t   paired rooks, queens penalty for early development, tropism?)\n* 0.8) Extensions (single move extension, check extension, capture/recapture extension,\n\t   passed pawn extension, PV extension, singular extension...)\n* 0.9) King update (mate at a glance, pins/x-rays, castlings (rights), pawn shield, pawn storm, tropism,\n\t virtual mobility, scaling with material, king zone attack, square control in king zone, king pawn tropism)\n* 0.10) General endgame evaluation and search improvement, parallel search\n* 1.0) Final improvements before the first release: some small additions, optimization, bugs fixing...)\n* 1.1) Evaluation weights search via learning\n* 1.2) ???\n\n\n# License\nChessGM is distributed under [GNU General Public License](https://www.gnu.org/licenses/).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcorejust%2Fchessgm","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcorejust%2Fchessgm","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcorejust%2Fchessgm/lists"}