mech-combinatorics 0.3.4

Combinatorics library for the Mech language
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![no_main]
#![allow(warnings)]

#[cfg(feature = "matrix")]
extern crate nalgebra as na;

#[cfg(feature = "matrix")]
use mech_core::matrix::Matrix;

#[cfg(feature = "n_choose_k")]
pub mod n_choose_k;

#[cfg(feature = "n_choose_k")]
pub use self::n_choose_k::*;