From 745637d459696ffd8ca5e3ef40cfa6938f911bdb Mon Sep 17 00:00:00 2001 From: Max Zwiessele Date: Fri, 24 Jan 2014 16:37:47 +0000 Subject: [PATCH] changed priority of observable array to 0 --- GPy/core/parameterization/array_core.py | 1 + 1 file changed, 1 insertion(+) diff --git a/GPy/core/parameterization/array_core.py b/GPy/core/parameterization/array_core.py index d73eed78..4e3c515d 100644 --- a/GPy/core/parameterization/array_core.py +++ b/GPy/core/parameterization/array_core.py @@ -25,6 +25,7 @@ class ObservableArray(ListArray, Observable): will be called every time this array changes. The callable takes exactly one argument, which is this array itself. """ + __array_priority__ = 0 # Never give back Param def __new__(cls, input_array): obj = super(ObservableArray, cls).__new__(cls, input_array).view(cls) obj._observers_ = {}