We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 97f35e1 + ebd77ec commit ecf2a0cCopy full SHA for ecf2a0c
tests/test_funs.py
@@ -44,7 +44,7 @@ def test_solutions_with_orthogonal_map(self):
44
def test_updated_cov_has_R_equal_zero_for_full_rank_A(self):
45
up_cov = mdf.updated_cov(self.A, self.id, self.id)
46
absolute_error = np.linalg.norm(up_cov - np.linalg.inv(self.A.T @ self.A))
47
- assert absolute_error / len(up_cov) < 1e-12
+ assert absolute_error / len(up_cov) < 1e-8
48
49
50
class TestWME(unittest.TestCase):
0 commit comments