|
|
|
|
|
by amluto
2364 days ago
|
|
Why a SAT solver? Constraint propagation with backtracking and arc consistency checks is very fast for minesweeper (source: this was an old Stanford CS homework problem), and it’s fairly straightforward to re-solve with added constraints to ask questions like “could there be a mine here”. In general, the Kaboom game logic seems to be nearly identical to writing an optimal minesweeper solver. |
|