Skip to content

Commit

Permalink
reverts tolerance loosening
Browse files Browse the repository at this point in the history
  • Loading branch information
azane committed Aug 26, 2024
1 parent fb98714 commit 87a3a89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/dynamical/dynamical_fixtures.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ def check_states_match(state1: State[torch.Tensor], state2: State[torch.Tensor])

for k in state1.keys():
assert torch.allclose(
state1[k], state2[k], atol=1e-6, rtol=1e-3
state1[k], state2[k], # atol=1e-6, rtol=1e-3
), f"Trajectories differ in state trajectory of variable {k}, but should be identical."

return True
Expand Down

0 comments on commit 87a3a89

Please sign in to comment.