From 8d3fa46089b78724f7aecc46f1a04ed74317ffcf Mon Sep 17 00:00:00 2001 From: James Hensman Date: Thu, 10 Jan 2013 16:24:58 +0000 Subject: [PATCH] Fixed a NF induced bug in the guts of GPy --- GPy/core/parameterised.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GPy/core/parameterised.py b/GPy/core/parameterised.py index 3894ea6a..da0b6056 100644 --- a/GPy/core/parameterised.py +++ b/GPy/core/parameterised.py @@ -215,7 +215,7 @@ class parameterised(object): else: self.constrained_fixed_values.append(self.get_param()[self.constrained_fixed_indices[-1]]) - self.constrained_fixed_values.append(value) + #self.constrained_fixed_values.append(value) self.expand_param(self.extract_param()) def extract_param(self):