We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e9c32a4 commit 23a9797Copy full SHA for 23a9797
test/test_transform.jl
@@ -26,7 +26,7 @@ tf = FunctionTransform(f)
26
KernelFunctions.transform(tf,X,1)
27
@test all(KernelFunctions.transform(tf,X,1).==f(X))
28
##
29
-tchain = TransformChain([t,tp,tf])
30
-t∘tp∘tf
31
-TransformChain([t,tp])
+tchain = ChainTransform([t,tp,tf])
32
@test all(KernelFunctions.transform(tchain,X,2).==f(P*(s*X)))
+@test all(KernelFunctions.transform(tchain,X,2).==
+ KernelFunctions.transform(tf∘tp∘t,X,2))
0 commit comments