Clean up some warnings
This commit is contained in:
parent
16d78f4680
commit
01f155b00a
|
@ -82,7 +82,6 @@ an optimized set of tools for computer graphics and physics. Those features incl
|
||||||
#![deny(unused_qualifications)]
|
#![deny(unused_qualifications)]
|
||||||
#![deny(unused_results)]
|
#![deny(unused_results)]
|
||||||
#![deny(missing_docs)]
|
#![deny(missing_docs)]
|
||||||
#![warn(incoherent_fundamental_impls)]
|
|
||||||
#![doc(
|
#![doc(
|
||||||
html_favicon_url = "https://nalgebra.org/img/favicon.ico",
|
html_favicon_url = "https://nalgebra.org/img/favicon.ico",
|
||||||
html_root_url = "https://nalgebra.org/rustdoc"
|
html_root_url = "https://nalgebra.org/rustdoc"
|
||||||
|
|
|
@ -130,7 +130,7 @@ fn matrix5_try_inverse_scaled_identity() {
|
||||||
0.0, 1.0e+20, 0.0, 0.0, 0.0,
|
0.0, 1.0e+20, 0.0, 0.0, 0.0,
|
||||||
0.0, 0.0, 1.0e+20, 0.0, 0.0,
|
0.0, 0.0, 1.0e+20, 0.0, 0.0,
|
||||||
0.0, 0.0, 0.0, 1.0e+20, 0.0,
|
0.0, 0.0, 0.0, 1.0e+20, 0.0,
|
||||||
0.0, 0.0, 0.0, 0.0, 1.0e+20);;
|
0.0, 0.0, 0.0, 0.0, 1.0e+20);
|
||||||
let a_inv = a.try_inverse().expect("Matrix should be invertible");
|
let a_inv = a.try_inverse().expect("Matrix should be invertible");
|
||||||
|
|
||||||
assert_relative_eq!(a_inv, expected_inverse);
|
assert_relative_eq!(a_inv, expected_inverse);
|
||||||
|
|
Loading…
Reference in New Issue