binar 0.1.1

High-performance binary arithmetic.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod aligned_bitmatrix;
mod bitmatrix;
mod column;
mod m4ri;
pub mod tiny_matrix;
pub mod transpose_kernel;

pub use aligned_bitmatrix::{
    AlignedBitMatrix, EchelonForm as AlignedEchelonForm, MutableRow, Row, complete_to_full_rank_row_basis,
    directly_summed, kernel_basis_matrix, row_stacked,
};
pub use bitmatrix::{
    BitMatrix, EchelonForm, Row as MatrixRow,
    complete_to_full_rank_row_basis as bitmatrix_complete_to_full_rank_row_basis, row_stacked as bitmatrix_row_stacked,
};
pub use column::Column;