summaryrefslogtreecommitdiff
path: root/ml_exp/__init__.py
diff options
context:
space:
mode:
authorDavid Luevano Alvarado <55825613+luevano@users.noreply.github.com>2020-02-21 19:21:18 -0700
committerDavid Luevano Alvarado <55825613+luevano@users.noreply.github.com>2020-02-21 19:21:18 -0700
commita7d605f094e81c5139530560e26eb0ff9be8ec82 (patch)
tree5d6fd6169955baa2f6f18bf942aef6a4a07c8683 /ml_exp/__init__.py
parent05d97a15d822400f7018a4381593c2638c6ad577 (diff)
Add ljm to init
Diffstat (limited to 'ml_exp/__init__.py')
-rw-r--r--ml_exp/__init__.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/ml_exp/__init__.py b/ml_exp/__init__.py
index 8e803b37e..f5ec7068b 100644
--- a/ml_exp/__init__.py
+++ b/ml_exp/__init__.py
@@ -21,9 +21,10 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
"""
from ml_exp.compound import Compound
-from ml_exp.representations import coulomb_matrix
+from ml_exp.representations import coulomb_matrix, lennard_jones_matrix
# If somebody does "from package import *", this is what they will
# be able to access:
__all__ = ['Compound',
- 'coulomb_matrix']
+ 'coulomb_matrix',
+ 'lennard_jones_matrix']