nalgebra/tests/lib.rs

28 lines
610 B
Rust
Raw Normal View History

2021-03-02 19:37:00 +08:00
#[cfg(any(
not(feature = "debug"),
not(feature = "compare"),
not(feature = "rand")
))]
compile_error!(
2021-03-02 19:37:00 +08:00
"Please enable the `debug`, `compare`, and `rand` features in order to compile and run the tests.
Example: `cargo test --features debug,compare,rand`"
);
#[cfg(feature = "abomonation-serialize")]
2017-08-16 01:36:38 +08:00
extern crate abomonation;
2018-02-02 19:26:35 +08:00
#[macro_use]
extern crate approx;
extern crate nalgebra as na;
2018-02-02 19:26:35 +08:00
extern crate num_traits as num;
2021-03-02 19:37:00 +08:00
extern crate rand_package as rand;
mod core;
2018-02-03 17:44:32 +08:00
mod geometry;
2018-10-21 04:26:44 +08:00
mod linalg;
#[cfg(feature = "proptest-support")]
mod proptest;
//#[cfg(feature = "sparse")]
//mod sparse;