From c1d998e27252a18a3e464518e957f842670fa017 Mon Sep 17 00:00:00 2001 From: Ricardo Date: Fri, 3 Oct 2014 12:02:58 +0100 Subject: [PATCH] Another bug fixed --- GPy/core/parameterization/priors.py | 1 - 1 file changed, 1 deletion(-) diff --git a/GPy/core/parameterization/priors.py b/GPy/core/parameterization/priors.py index f3e0c9d7..453bdfb0 100644 --- a/GPy/core/parameterization/priors.py +++ b/GPy/core/parameterization/priors.py @@ -320,7 +320,6 @@ class HalfT(Prior): return "hT(" + str(np.round(self.A)) + ', ' + str(np.round(self.nu)) + ')' def lnpdf(self,theta): - stop return (theta>0) * ( self.constant -.5*(self.nu+1) * np.log( 1.+ (1./self.nu) * (theta/self.A)**2 ) ) #theta = theta if isinstance(theta,np.ndarray) else np.array([theta])