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.py9
1 files changed, 3 insertions, 6 deletions
diff --git a/ml_exp/compound.py b/ml_exp/compound.py
index 1598fa482..4dbd8c95c 100644
--- a/ml_exp/compound.py
+++ b/ml_exp/compound.py
@@ -116,18 +116,15 @@ class Compound:
forces,
size=size)
- def gen_bos(self,
- size=23,
- stuff='bonds'):
+ def gen_bob(self,
+ size=23):
"""
Generate the Bag of Stuff for the compound.
size: compound size.
- stuff: elements of the bag, by default the known bag of bonds.
"""
self.bos = bag_of_stuff(self.cm,
self.atoms,
- size=size,
- stuff=stuff)
+ size=size)
def read_xyz(self,
filename):