Skip to content

Commit

Permalink
Fix Base.eps()
Browse files Browse the repository at this point in the history
  • Loading branch information
TeroFrondelius committed Oct 11, 2019
1 parent 0950f23 commit 57ffa34
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions test/test_mfront_juafem_3dbeam.jl
Original file line number Diff line number Diff line change
Expand Up @@ -259,9 +259,7 @@ u_ref = readdlm("test_mfront_juafem/juafem_3d_beam_comparison_results.txt")
# check results

for i in 1:length(u_ref)
umaxval = u_max[i]
urefval = u_ref[i]
@test isapprox(umaxval, urefval; atol=sqrt(eps()))
@test isapprox(u_max[i], u_ref[i]; atol=sqrt(Base.eps()))
end

# ## Finally let's plot a figure
Expand Down

0 comments on commit 57ffa34

Please sign in to comment.