2020-11-12 18:50:32 +08:00
|
|
|
#[cfg(any(not(feature = "debug"), not(feature = "compare")))]
|
|
|
|
compile_error!(
|
2020-11-16 21:13:17 +08:00
|
|
|
"Please enable the `debug` and `compare` features in order to compile and run the tests.
|
|
|
|
Example: `cargo test --features debug --features compare`"
|
2020-11-12 18:50:32 +08:00
|
|
|
);
|
|
|
|
|
2017-09-18 20:31:17 +08:00
|
|
|
#[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;
|
2017-07-25 23:19:18 +08:00
|
|
|
#[cfg(feature = "mint")]
|
|
|
|
extern crate mint;
|
2017-08-03 01:37:44 +08:00
|
|
|
extern crate nalgebra as na;
|
2018-02-02 19:26:35 +08:00
|
|
|
extern crate num_traits as num;
|
2017-08-03 01:37:44 +08:00
|
|
|
|
|
|
|
mod core;
|
2018-02-03 17:44:32 +08:00
|
|
|
mod geometry;
|
2018-10-21 04:26:44 +08:00
|
|
|
mod linalg;
|
2020-11-10 21:46:33 +08:00
|
|
|
|
2021-01-26 15:47:47 +08:00
|
|
|
#[cfg(feature = "proptest-support")]
|
2020-11-10 21:46:33 +08:00
|
|
|
mod proptest;
|
|
|
|
|
2019-03-03 02:33:49 +08:00
|
|
|
//#[cfg(feature = "sparse")]
|
|
|
|
//mod sparse;
|