1
2
3
4
5
6
7
8
#![cfg_attr(not(test), no_std)]

#[cfg(test)]
pub mod runtime;

mod comptime;
pub use comptime::{CMatrix, CVector, Operation};
pub use const_soft_float;