Skip to content

Commit 664db14

Browse files
committed
Switch to KernelFunctions 0.10 (#36)
1 parent 6fec13c commit 664db14

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

Project.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "CalibrationTests"
22
uuid = "2818745e-0823-50c7-bc2d-405ac343d48b"
33
authors = ["David Widmann <[email protected]>"]
4-
version = "0.5.3"
4+
version = "0.5.4"
55

66
[deps]
77
CalibrationErrors = "33913031-fe46-5864-950f-100836f47845"
@@ -19,7 +19,7 @@ StructArrays = "09ab397b-f2b6-538f-b94a-2f83cf4a842a"
1919
CalibrationErrors = "0.5.15"
2020
ConsistencyResampling = "0.3"
2121
HypothesisTests = "0.8, 0.9, 0.10"
22-
KernelFunctions = "0.8.20, 0.9"
22+
KernelFunctions = "0.10"
2323
Reexport = "1"
2424
StatsFuns = "0.8, 0.9"
2525
StructArrays = "0.5"

src/skce/distribution_free.jl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ uniformbound(kce::SKCE) = 2 * uniformbound(kce.kernel)
5353
# uniform bounds of the norm of base kernels
5454
uniformbound(kernel::ExponentialKernel) = 1
5555
uniformbound(kernel::SqExponentialKernel) = 1
56-
uniformbound(kernel::TVExponentialKernel) = 1
5756
uniformbound(kernel::WhiteKernel) = 1
5857

5958
# uniform bound of the norm of a scaled kernel

test/skce/distribution_free.jl

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,11 @@
33
# default bounds for base kernels
44
CalibrationTests.uniformbound(ExponentialKernel()) == 1
55
CalibrationTests.uniformbound(SqExponentialKernel()) == 1
6-
CalibrationTests.uniformbound(TVExponentialKernel()) == 1
76
CalibrationTests.uniformbound(WhiteKernel()) == 1
87

98
# default bounds for kernels with input transformations
109
CalibrationTests.uniformbound(SqExponentialKernel() ScaleTransform(rand())) == 1
11-
CalibrationTests.uniformbound(TVExponentialKernel() ScaleTransform(rand(10))) == 1
10+
CalibrationTests.uniformbound(ExponentialKernel() ScaleTransform(rand(10))) == 1
1211

1312
# default bounds for scaled kernels
1413
CalibrationTests.uniformbound(42 * ExponentialKernel()) == 42

0 commit comments

Comments
 (0)