//! Interface to the [Linear Algebra PACKage][1].
//!
//! [1]: http://en.wikipedia.org/wiki/LAPACK
extern crate lapack_sys;
extern crate libc;
extern crate num_complex as num;
/// A complex number with 32-bit parts.
pub type c32 = Complex;
/// A complex number with 64-bit parts.
pub type c64 = Complex;