You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Changed all the easy assert!(diff < eps) to assert_scalar_eq! as I
could find
There are still a few instances of a regular diff < eps that can be
found in the src/matrix/decomposition/eigen.rs, but they are inside
iterators that make it harder to easily change.
* Spruced up some of the tests and removed compiler warnings about
unused elements
* Fixed (#175) and cleaned up a few tests
* Changed all the easy assert!(diff < eps) to assert_scalar_eq! as I
could find
There are still a few instances of a regular diff < eps that can be
found in the src/matrix/decomposition/eigen.rs, but they are inside
iterators that make it harder to easily change.
* Spruced up some of the tests and removed compiler warnings about
unused elements
* Simplified qr test in tests/mat/mod.rs
* Changed an assert! to an assert_vector_eq!
We have just merged #163 which gives us flexible scalar comparisons. Currently many of our tests have checks like this:
Instead we can use the new macro:
This is cleaner and more flexible. To resolve this issue we should convert all existing comparison checks to use the
assert_*_eq!
macros.The text was updated successfully, but these errors were encountered: