summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Luevano <55825613+luevano@users.noreply.github.com>2020-01-26 22:16:59 -0700
committerDavid Luevano <55825613+luevano@users.noreply.github.com>2020-01-26 22:16:59 -0700
commit202d1b595344e46bf29fc12a3cddf5183a1941c3 (patch)
tree8da0cf503b1c6b77e03b95153c7ac8a258f0aaf4
parent7494d56888d3d8eda8f5b2c732c3685ff8006ff9 (diff)
Add comment
-rw-r--r--ml_exp/adj_matrix.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/ml_exp/adj_matrix.py b/ml_exp/adj_matrix.py
index 27ad158dc..67eab79cd 100644
--- a/ml_exp/adj_matrix.py
+++ b/ml_exp/adj_matrix.py
@@ -104,6 +104,7 @@ def adj_matrix(bonds,
"""
Calculates the adjacency matrix given the bond list.
bonds: list of bonds (tuple of indexes).
+ forces: list of forces.
"""
n = len(bonds)
am = array(zeros((n, n)))