reachability_solver 0.2.0

A linear reachability solver for directional edges
Documentation
1
2
3
4
5
6
7
8
9
extern crate reachability_solver;

use reachability_solver::{etch, shapes};

fn main() {
    let shape = shapes::diag_rect([3, 3]);
    println!("{:?}", shape);
    println!("{}", etch::cardinality(&shape));
}