Skip to content

Commit 7351130

Browse files
committed
add another comment
1 parent 4327ff2 commit 7351130

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

src/TestUtils.jl

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
11
module TestUtils
22

3-
const __ATOL = sqrt(eps(Float64))
4-
const __RTOL = sqrt(eps(Float64))
5-
63
using Distances
74
using LinearAlgebra
85
using KernelFunctions
96
using Random
107
using Test
118

9+
# default tolerance values for test_interface:
10+
const __ATOL = sqrt(eps(Float64))
11+
const __RTOL = sqrt(eps(Float64))
12+
# ≈ 1.5e-8; chosen for no particular reason other than because it seems to
13+
# satisfy our own test cases within KernelFunctions.jl
14+
1215
"""
1316
test_interface(
1417
k::Kernel,

0 commit comments

Comments
 (0)