1 2 3 4 5 6 7
use nalgebra::RealField; pub use nalgebra; pub trait Real: RealField + Copy {} impl<T: RealField + Copy> Real for T {}