Skip to content

Commit

Permalink
Merge pull request #72 from cpmech/fix-tol-after-mkl-update
Browse files Browse the repository at this point in the history
Increase test tol
  • Loading branch information
cpmech authored Jan 4, 2024
2 parents 6f5e4d6 + d417d21 commit c3e7d1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion russell_lab/src/matrix/mat_pseudo_inverse.rs
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ mod tests {
mat_pseudo_inverse(&mut ai, &mut a).unwrap();
let a_copy = Matrix::from(&data);
let a_ai_a = get_a_times_ai_times_a(&a_copy, &ai);
mat_approx_eq(&a_ai_a, &a_copy, 1e-8);
mat_approx_eq(&a_ai_a, &a_copy, 1e-7);
}

#[test]
Expand Down

0 comments on commit c3e7d1a

Please sign in to comment.