removed (my own) comment

This commit is contained in:
fangs124 2024-04-24 16:58:51 +07:00
parent 9ea5e0e376
commit 12a20465a5
1 changed files with 1 additions and 1 deletions

View File

@ -924,7 +924,7 @@ mod transposition_tests {
prop_assert!(relative_eq!(m.transpose() * v, m.tr_mul(&v), epsilon = 1.0e-7))
}
#[test] //this one gives an error
#[test]
fn mul_tr_is_transpose_rhs_then_mul(m in matrix(PROPTEST_F64, Const::<6>, Const::<4>), v in vector4()) {
prop_assert!(relative_eq!(m * v, m.mul_tr(&v.transpose()), epsilon = 1.0e-7))
}