1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//! Macros for the linear algebra modules.

#[macro_use]
mod vector;

#[macro_use]
mod matrix;

#[macro_use]
mod matrix_eq;

pub use self::matrix_eq::{
    elementwise_matrix_comparison,
    elementwise_vector_comparison,
    AbsoluteElementwiseComparator,
    ExactElementwiseComparator,
    UlpElementwiseComparator,
    FloatElementwiseComparator,

    // The following are just imported because we want to
    // expose trait bounds in the documentation
    ElementwiseComparator
};