blob: 91f48b55753b7c33d534bd6d46a738fc7a091752 [file] [log] [blame]
//! Macros for the linear algebra modules.
#[macro_use]
mod vector;
#[macro_use]
mod matrix;
#[macro_use]
mod assert_matrix_eq;
#[macro_use]
mod assert_vector_eq;
#[macro_use]
mod assert_scalar_eq;
mod comparison;
pub use self::comparison::{
AbsoluteElementwiseComparator,
ExactElementwiseComparator,
UlpElementwiseComparator,
FloatElementwiseComparator,
// The following are just imported because we want to
// expose trait bounds in the documentation
ElementwiseComparator
};
pub use self::assert_matrix_eq::elementwise_matrix_comparison;
pub use self::assert_vector_eq::elementwise_vector_comparison;
pub use self::assert_scalar_eq::scalar_comparison;