exact-cover 0.1.0

(WIP) Asynchronous exact cover solver library using Knuth's dancing links algorithm
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub mod vector;

pub mod dlx;
pub mod callback;

pub mod problem;
pub mod solver;

pub mod problems;

pub use problem::Problem;
pub use solver::{Solver, SolverEvent};