Skip to content

Commit dac45f7

Browse files
committed
increase atol/rtol to sqrt(eps(Float64))
1 parent e56ba75 commit dac45f7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/TestUtils.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module TestUtils
22

3-
const __ATOL = 1e-9
4-
const __RTOL = 1e-9
3+
const __ATOL = sqrt(eps(Float64))
4+
const __RTOL = sqrt(eps(Float64))
55

66
using Distances
77
using LinearAlgebra

0 commit comments

Comments
 (0)