summaryrefslogtreecommitdiff
path: root/ml_exp/__init__.py
diff options
context:
space:
mode:
authorDavid Luevano Alvarado <55825613+luevano@users.noreply.github.com>2020-02-23 21:07:54 -0700
committerDavid Luevano Alvarado <55825613+luevano@users.noreply.github.com>2020-02-23 21:07:54 -0700
commit54e69de6126afb321c0ea575ede595347ffc121c (patch)
treed692421977e1ef21929ff3068b485da33ac5b387 /ml_exp/__init__.py
parentdb47ff8606b14e4cdddc0e317972c3515b9c788b (diff)
Add fnm and am to init
Diffstat (limited to 'ml_exp/__init__.py')
-rw-r--r--ml_exp/__init__.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/ml_exp/__init__.py b/ml_exp/__init__.py
index f5ec7068b..d81f0999a 100644
--- a/ml_exp/__init__.py
+++ b/ml_exp/__init__.py
@@ -21,10 +21,13 @@ 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, lennard_jones_matrix
+from ml_exp.representations import coulomb_matrix, lennard_jones_matrix,\
+ first_neighbor_matrix, adjacency_matrix
# If somebody does "from package import *", this is what they will
# be able to access:
__all__ = ['Compound',
'coulomb_matrix',
- 'lennard_jones_matrix']
+ 'lennard_jones_matrix',
+ 'first_neighbor_matrix',
+ 'adjacency_matrix']