Initial commit: puzzle solver.

This commit is contained in:
David Wang 2017-02-18 08:21:54 +11:00
commit 11f6cd7395
3 changed files with 10 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
target
Cargo.lock

6
Cargo.toml Normal file
View File

@ -0,0 +1,6 @@
[package]
name = "puzzle-solver"
version = "0.1.0"
authors = ["David Wang <millimillenary@gmail.com>"]
[dependencies]

2
src/lib.rs Normal file
View File

@ -0,0 +1,2 @@
//! This crate searches for the solutions to logic puzzles.
//! The puzzle rules are expressed as constraints.