backtrack-rs
lets you define and solve backtracking problems
succinctly.
Problems are defined by their scope and checks against possible solutions. The Scope determines length and allowed values for possible solution. The Check or CheckInc trait determines whether a particular combination of values is satisfactory.
It is required that partial solutions, i.e. shorter solutions than in scope must satisfy if a complete solutions should as well. Solvers borrow the problem for the duration of their search for candidate solutions.
We define the problem of counting down with a limited set of numbers and solve iteratively. ```rust use backtrackrs::problem::{Check, Scope}; use backtrackrs::solvers::IterSolveNaive; // helper trait to filter solutions of interest use backtrack_rs::solve::IterSolveExt;
/// Obtain permutations of some 3 descending numbers struct CountDown {}
impl Scope for CountDown {
fn size(&self) -> usize { 3 }
fn domain(&self) -> Vec
impl Check for CountDown{ fn extendssat(&self, solution: &[usize], xl: usize) -> bool { solution.last().mapor(true, |last| *last > xl) } }
let solver = IterSolveNaive::new(&CountDown{}); let mut sats = solver.sat_iter();
asserteq!(sats.next(), Some(vec![2, 1, 0])); asserteq!(sats.next(), Some(vec![3, 1, 0])); asserteq!(sats.next(), Some(vec![3, 2, 0])); asserteq!(sats.next(), Some(vec![3, 2, 1])); assert_eq!(sats.next(), None); ```
If your checks can be formulated with a reduced solution, implement CheckInc instead.
The same result as above can be formulated by "computing" the last item at each step. This approach makes more sense if actual work on more than one prior value needs to be peformed for any given sat check.
```rust use backtrack_rs::problem::{CheckInc, Scope}; // ... impl CheckInc for CountDown{ type Accumulator = usize;
fn fold_acc(&self, accu: Option<Self::Accumulator>, x: &usize) -> Self::Accumulator {
// only last value is of interest for checking
*x
}
fn accu_sat(&self, accu: Option<&Self::Accumulator>, x: &usize, index: usize) -> bool {
accu.map_or(true, |last| last > x)
}
}
// since CheckInc
impls Check
, the same solver as in example above can be used
// todo: specialize solver to actually realize performance advantage
// ...
```
Checkout the examples
folder for example problems.
```bash
cargo run --example n_queens 4 | grep Sat
```
```bash
cargo run --example total_sum | grep Sat ```
backtrack-rs
uses criterion for benches.
bash
cargo benches
CheckInc
solverdomain
values