summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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)))