1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
//! Fast binary matrix operations
//! Interfaces the M4RI library and provides friendly abstractions
extern crate bit_vec;
extern crate libc;

mod binary_matrix;
mod binary_vector;
pub mod ffi;

/// Friendly interfaces on the M4RI constructs
pub mod friendly {
    pub use super::binary_matrix::*;
    pub use super::binary_vector::*;
}