summaryrefslogtreecommitdiff
path: root/ml_exp/compound.py
diff options
context:
space:
mode:
Diffstat (limited to 'ml_exp/compound.py')
-rw-r--r--ml_exp/compound.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/ml_exp/compound.py b/ml_exp/compound.py
index 23c66ec27..ec5085797 100644
--- a/ml_exp/compound.py
+++ b/ml_exp/compound.py
@@ -23,7 +23,7 @@ SOFTWARE.
import numpy as np
from ml_exp.data import NUCLEAR_CHARGE
from ml_exp.representations import coulomb_matrix, lennard_jones_matrix,\
- get_helping_data, adjacency_matrix, bag_of_stuff
+ get_helping_data, adjacency_matrix, bag_of_bonds
class Compound:
@@ -139,7 +139,7 @@ class Compound:
Generate the Bag of Stuff for the compound.
size: compound size.
"""
- self.bob = bag_of_stuff(self.cm,
+ self.bob = bag_of_bonds(self.cm,
self.atoms,
size=size)