reachability_solver 0.2.0

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

use reachability_solver::{shapes, map};

fn main() {
    let dim = [3, 3];
    let shape = shapes::diag_rect(dim);
    let map = map::map2(dim, &shape);
    println!("{}", map::visualize(&map));
}