summaryrefslogtreecommitdiff
path: root/ml_exp/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'ml_exp/__init__.py')
-rw-r--r--ml_exp/__init__.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/ml_exp/__init__.py b/ml_exp/__init__.py
index dcb10a1df..e9dd83eae 100644
--- a/ml_exp/__init__.py
+++ b/ml_exp/__init__.py
@@ -23,6 +23,7 @@ SOFTWARE.
from ml_exp.compound import Compound
from ml_exp.representations import coulomb_matrix, lennard_jones_matrix,\
first_neighbor_matrix, adjacency_matrix, check_bond, bag_of_stuff
+from ml_exp.math import cholesky_solve
# If somebody does "from package import *", this is what they will
# be able to access:
@@ -32,4 +33,5 @@ __all__ = ['Compound',
'first_neighbor_matrix',
'adjacency_matrix',
'check_bond',
- 'bag_of_stuff']
+ 'bag_of_stuff',
+ 'cholesky_solve']