11 lines
339 B
Rust
11 lines
339 B
Rust
|
use nalgebra::{dmatrix, dvector, matrix, vector};
|
||
|
|
||
|
#[test]
|
||
|
fn sanity_test() {
|
||
|
// The macros are already tested in `nalgebra-macros`. Here we just test that they compile fine.
|
||
|
|
||
|
let _ = matrix![1, 2, 3; 4, 5, 6];
|
||
|
let _ = dmatrix![1, 2, 3; 4, 5, 6];
|
||
|
let _ = vector![1, 2, 3, 4, 5, 6];
|
||
|
let _ = dvector![1, 2, 3, 4, 5, 6];
|
||
|
}
|