1
0
Fork 0
sudoku solver that was supposed to be an implementation of wave function collapse. but it ended up only being a constraint solver?
Go to file
Johann150 38157d7b5e
make the solver more generic
The solver is now not specific to Sudoku but pretty much any game where
a set of square tiles needs to be filled according to a specific rule.

Since it is not specific to Sudoku any more, it is a bit less performant,
but that is not a big issue in my use case, so is fine.
2023-10-08 21:25:56 +02:00
src make the solver more generic 2023-10-08 21:25:56 +02:00
.gitignore add cargo files 2023-02-09 23:38:09 +01:00
Cargo.toml make the solver more generic 2023-10-08 21:25:56 +02:00
LICENSE Initial commit 2023-02-09 21:58:53 +00:00
README.md Initial commit 2023-02-09 21:58:53 +00:00

sudoku_constraint_solver

sudoku solver that was supposed to be an implementation of wave function collapse. but it ended up only being a constraint solver?