Skip to content

Commit

Permalink
fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
saransh13 committed Jan 7, 2024
1 parent 3f59e9e commit b15c978
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hexrd/matrixutil.py
Original file line number Diff line number Diff line change
Expand Up @@ -752,7 +752,7 @@ def _findduplicatevectors(vec, tol, equivPM):
ctr = 0
eqv_elem = np.zeros((m, ), dtype=np.int64)

for jj in prange(ii, m):
for jj in prange(ii+1, m):
if equivPM:
diff = np.sum(np.abs(vec[:, ii]-vec2[:, jj]))
diff2 = np.sum(np.abs(vec[:, ii]-vec[:, jj]))
Expand Down

0 comments on commit b15c978

Please sign in to comment.