summaryrefslogtreecommitdiff
path: root/ml_exp/compound.py
diff options
context:
space:
mode:
authorDavid Luevano Alvarado <55825613+luevano@users.noreply.github.com>2020-02-29 06:23:02 -0700
committerDavid Luevano Alvarado <55825613+luevano@users.noreply.github.com>2020-02-29 06:23:02 -0700
commitfe4e5afebaf7320ba5bed7f159c84bc5d1e5faec (patch)
tree0cedb1e66e98fcf75fb3a703dad9c333584f1cc0 /ml_exp/compound.py
parent86faabeac5aed75c1dfc883fe757c21eba94b645 (diff)
Rename bos to bob
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):