fix: code and documentation cleanup

This commit is contained in:
Volodymyr Orlov
2020-09-23 16:41:39 -07:00
parent 750015b861
commit a19398fd70
7 changed files with 24 additions and 24 deletions
-1
View File
@@ -287,7 +287,6 @@ mod tests {
let expected =
DenseMatrix::from_2d_array(&[&[-6.0, 3.6, 1.4], &[5.0, -3.0, -1.0], &[-1.0, 0.8, 0.2]]);
let a_inv = a.lu().and_then(|lu| lu.inverse()).unwrap();
println!("{}", a_inv);
assert!(a_inv.approximate_eq(&expected, 1e-4));
}
}