Skip to content

Commit 8906d52

Browse files
committed
Reduce test accuracy
1 parent 326b3d9 commit 8906d52

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/GPR/runtests.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,11 +89,11 @@ thrsh = gprw.thrsh
8989

9090
ytrue = xmesh.^2
9191
ypred = GPR.predict(gprw, xmesh)
92-
@test isapprox(ytrue, ypred, atol=1e-5, norm=inf_norm)
92+
@test isapprox(ytrue, ypred, atol=1e-4, norm=inf_norm)
9393

9494
mesh_, mean_, std_ = GPR.mmstd(gprw, mesh_n=101)
9595
@test isapprox(mesh_, xmesh, atol=1e-8, norm=inf_norm)
96-
@test isapprox(ytrue, mean_, atol=1e-5, norm=inf_norm)
96+
@test isapprox(ypred, mean_, atol=1e-8, norm=inf_norm)
9797

9898
mean, std = GPR.predict(gprw, xmesh, return_std = true)
9999
@test isapprox(mean, mean_, atol=1e-8, norm=inf_norm)

0 commit comments

Comments
 (0)