https://github.com/sumerc/peg-solitaire-solver
A Peg Solitaire Solver in Rust
https://github.com/sumerc/peg-solitaire-solver
Last synced: 10 months ago
JSON representation
A Peg Solitaire Solver in Rust
- Host: GitHub
- URL: https://github.com/sumerc/peg-solitaire-solver
- Owner: sumerc
- License: mit
- Created: 2020-03-17T13:08:14.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-07-20T21:21:03.000Z (over 5 years ago)
- Last Synced: 2025-02-01T07:16:27.729Z (11 months ago)
- Language: Rust
- Size: 6.84 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# peg-solitaire-solver
A Peg Solitaire Solver in Rust
This is just intended for learning Rust. Representation of the Board with bitfields and movement logic is completed.
Remaining part is to either do a parallel BFS/DFS with using concurrency routines.