graph-types 0.0.4

Shared types for graph theory.
Documentation
1
2
3
4
5
6
7
8
9
10
11
- Calculate the number of isomers of alkanes

```rust
#[test]
fn count() {
    let cache = SymmetricGroupCache::default();
    for c in 1..=10 {
        println!("{:>2}: {}", c, cache.a000602(c));
    }
}
```