1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![feature(portable_simd)]

//! Implementations of binary (GF(2)) matrices.
//!
//! This is a work in progress.
//!

mod base_matrix;
mod binary_dense_matrix;
#[cfg(feature = "simd")]
mod binary_dense_matrix_simd;
mod binary_dense_vector;

pub use crate::base_matrix::*;
pub use crate::binary_dense_matrix::*;
#[cfg(feature = "simd")]
pub use crate::binary_dense_matrix_simd::*;