Skip to content

Commit

Permalink
Sets rtol to default 1e-5
Browse files Browse the repository at this point in the history
  • Loading branch information
holm10 committed Dec 7, 2023
1 parent 8bbc0c9 commit 69b41a7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def perturb_solution(self, file, perturbation=1e-2):
for var in ['nis', 'ups', 'tes', 'tis', 'ngs', 'tgs', 'phis']:
bbb[var][...] *= uniform(low=1-perturbation, high=1+perturbation, size = bbb[var].shape)

def test_reference(self, epsilon=1e-6):
def test_reference(self, epsilon=1e-5):
from h5py import File
from uedge import bbb, com
# Supress output
Expand Down

0 comments on commit 69b41a7

Please sign in to comment.