diff --git a/src/matrix.rs b/src/matrix.rs index 6dafbad..b5c5548 100644 --- a/src/matrix.rs +++ b/src/matrix.rs @@ -1,4 +1,4 @@ -#![allow(dead_code, type_alias_bounds)] +#![allow(dead_code)] //! Define Matrix calculations. @@ -7,7 +7,7 @@ extern crate num; use vector::scal_vec_prod; -pub type Mat = Vec>; +pub type Mat = Vec>; fn mk_mat(vs: Vec>) -> Option> { let l0 = vs[0].len(); @@ -123,4 +123,4 @@ pub fn mat_prod(m0: &Mat, m1: &Mat) -> Mat { } return rlt; } -} \ No newline at end of file +}