diff --git a/GPy/kern/kern.py b/GPy/kern/kern.py index 68b26e3c..6a8bc745 100644 --- a/GPy/kern/kern.py +++ b/GPy/kern/kern.py @@ -180,8 +180,10 @@ class kern(Parameterized): :type tensor: bool """ - K1 = self.copy() - K2 = other.copy() + K1 = self + K2 = other + #K1 = self.copy() + #K2 = other.copy() slices = [] for sl1, sl2 in itertools.product(K1.input_slices, K2.input_slices):