https://github.com/safememoryzone/2048
Replica of the game 2048 with an AI based on the principles of MCTS.
https://github.com/safememoryzone/2048
2048-ai alphazero c-plus-plus monte-carlo-tree-search
Last synced: about 2 months ago
JSON representation
Replica of the game 2048 with an AI based on the principles of MCTS.
- Host: GitHub
- URL: https://github.com/safememoryzone/2048
- Owner: SafeMemoryZone
- License: apache-2.0
- Created: 2024-07-09T12:58:30.000Z (11 months ago)
- Default Branch: master
- Last Pushed: 2024-08-07T11:20:27.000Z (10 months ago)
- Last Synced: 2025-02-03T16:04:30.226Z (4 months ago)
- Topics: 2048-ai, alphazero, c-plus-plus, monte-carlo-tree-search
- Language: C++
- Homepage:
- Size: 273 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 2048 AI Project
This project is under development and not yet finished.
The goal of this project is to develop an AI that is pretty strong at playing the game [2048](https://en.wikipedia.org/wiki/2048_(video_game)). The AI is implemented based on the principles of [Monte Carlo Tree Search (MCTS)](https://en.wikipedia.org/wiki/Monte_Carlo_tree_search).
## Quickstart
1. **Compile the project with CMake:**
```sh
cmake -S . -B build
```2. **Locate the compiled binary:**
- The binary will be located at `build/src/2048-AI`.## License
This project was initially licensed under the MIT License but has since transitioned to the Apache-2.0 License. The applicable license for the project depends on the specific commit, based on the state of the LICENSE file at that time.