1 unstable release
0.0.0 | Apr 11, 2023 |
---|
#20 in #10
61 downloads per month
Used in 11 crates
(via shape-core)
5KB
76 lines
- Calculate the number of isomers of alkanes
#[test]
fn count() {
let cache = SymmetricGroupCache::default();
for c in 1..=10 {
println!("{:>2}: {}", c, cache.a000602(c));
}
}