1
 2
 3
 4
 5
 6
 7
 8
 9
10
//! Fast binary matrix operations
//! Interfaces the M4RI library and provides friendly abstractions
extern crate libc;
#[cfg_attr(test, macro_use)]
extern crate vob;

extern crate rand;

pub mod ffi;
pub mod friendly;