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])