Add dependency: bit-set.
We will be using bit-sets to keep track of which puzzle variables are used in which constraints, and which constraints need to be woken up.
This commit is contained in:
parent
eebe23f2e0
commit
c62c26aafd
@ -5,3 +5,4 @@ authors = ["David Wang <millimillenary@gmail.com>"]
|
|||||||
license = "MIT"
|
license = "MIT"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
|
bit-set = "*"
|
||||||
|
@ -1,2 +1,4 @@
|
|||||||
//! This crate searches for the solutions to logic puzzles.
|
//! This crate searches for the solutions to logic puzzles.
|
||||||
//! The puzzle rules are expressed as constraints.
|
//! The puzzle rules are expressed as constraints.
|
||||||
|
|
||||||
|
extern crate bit_set;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user