https://github.com/celiannourry/tents-and-trees-solver
Solver for Tents and Trees puzzle using logic and backtracking.
https://github.com/celiannourry/tents-and-trees-solver
board-game c solver
Last synced: 27 days ago
JSON representation
Solver for Tents and Trees puzzle using logic and backtracking.
- Host: GitHub
- URL: https://github.com/celiannourry/tents-and-trees-solver
- Owner: CelianNourry
- Created: 2025-03-25T10:31:23.000Z (about 1 month ago)
- Default Branch: main
- Last Pushed: 2025-03-26T19:21:04.000Z (about 1 month ago)
- Last Synced: 2025-03-26T20:27:07.756Z (about 1 month ago)
- Topics: board-game, c, solver
- Language: C
- Homepage:
- Size: 178 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Tent and Trees Solver
## Author
Nourry Celian## Description
Tent and Trees puzzle solver using logic and backtracking. Boards to solve are encoded in .pln files. To change the board you want to use, you must specify it in the source code. There is no interface on the current version, only a representatio of the board on the terminal.## Modes
1. Play (Play a normal game of Tent and Trees.
2. Solve using logic (Solve without backtrack)
3. Solve using backtrack (Solve using logic and backtrack
- Fast mode (Instantly solves)
- Slow mode (1 second delay between each action of the program)## Execution
- make run## Cleaning
- make clean