nalgebra/nalgebra-lapack/tests/lib.rs
Paul Jakob Schroeder 97aebf8089 Add extern crate declarations for lapack{-src}
Without these declarations, `nalgebra-lapack` does not have runtime
linkage requirements for these libraries, meaning that binaries and
libraries using `nalgebra-lapack` have to link `lapack`/`lapack-src`
explicitly which shouldn't be necessary.
2021-11-16 12:49:19 -05:00

12 lines
270 B
Rust

#[macro_use]
extern crate approx;
#[cfg(not(feature = "proptest-support"))]
compile_error!("Tests must be run with `proptest-support`");
extern crate nalgebra as na;
extern crate nalgebra_lapack as nl;
mod linalg;
#[path = "../../tests/proptest/mod.rs"]
mod proptest;