diff options
author | David Luevano Alvarado <55825613+luevano@users.noreply.github.com> | 2020-03-11 17:25:37 -0700 |
---|---|---|
committer | David Luevano Alvarado <55825613+luevano@users.noreply.github.com> | 2020-03-11 17:25:37 -0700 |
commit | 29f3037b5332fcd725b06d6a5bdae6ec256a855a (patch) | |
tree | 19f58d0425edfe47f8b31d27d5ae408bf0f8cd2e | |
parent | 0c658badab2998b4bc4b4ab02bddd1791bb417b7 (diff) |
Fix bug on epsilon index
-rw-r--r-- | ml_exp/compound.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ml_exp/compound.py b/ml_exp/compound.py index 4c5b21584..16b878f7b 100644 --- a/ml_exp/compound.py +++ b/ml_exp/compound.py @@ -154,7 +154,7 @@ class Compound: size: compound size. """ self.ei = epsilon_index(self.am, - bonds_i, + self.bonds_i, size=size) def gen_bob(self, |