mech_combinatorics/
lib.rs

1#![no_main]
2#![allow(warnings)]
3
4#[cfg(feature = "matrix")]
5extern crate nalgebra as na;
6
7#[cfg(feature = "matrix")]
8use mech_core::matrix::Matrix;
9
10#[cfg(feature = "n_choose_k")]
11pub mod n_choose_k;
12
13#[cfg(feature = "n_choose_k")]
14pub use self::n_choose_k::*;