From cf4469053ef8a68f5653cd3f95b7421db5bcf524 Mon Sep 17 00:00:00 2001 From: Neil Lawrence Date: Thu, 16 Oct 2014 15:41:54 +0100 Subject: [PATCH] Remove symbolic import. --- GPy/kern/__init__.py | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/GPy/kern/__init__.py b/GPy/kern/__init__.py index 39529843..c400277c 100644 --- a/GPy/kern/__init__.py +++ b/GPy/kern/__init__.py @@ -17,17 +17,3 @@ from _src.poly import Poly from _src.trunclinear import TruncLinear,TruncLinear_inf from _src.splitKern import SplitKern,DiffGenomeKern -# TODO: put this in an init file somewhere -#I'm commenting this out because the files were not added. JH. Remember to add the files before commiting -try: - import sympy as sym - sympy_available=True -except ImportError: - sympy_available=False - -if sympy_available: - from _src.symbolic import Symbolic - from _src.eq import Eq - from _src.heat_eqinit import Heat_eqinit - #from _src.ode1_eq_lfm import Ode1_eq_lfm -