Skip to content

Commit

Permalink
Type corrections
Browse files Browse the repository at this point in the history
Signed-off by: David Rowenhorst <[email protected]>
  • Loading branch information
drowenhorst-nrl committed Jun 28, 2024
1 parent ec3921f commit 065ce7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyebsdindex/tripletvote.py
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,7 @@ def build_trip_lib(self):
#print(indx0FID)
#This completely over previsions the arrays, this is essentially
#N Choose K with N = number of angles and K = 3
nlib = int(npoles*np.prod(np.arange(3, dtype=np.int64)+(nangs-2+1))//np.int64(math.factorial(3)))
nlib = npoles*np.prod(np.arange(3, dtype=np.int64)+(nangs-2+1))//np.int64(math.factorial(3))
nlib = nlib.astype(int)

libANG = np.zeros((nlib, 3))
Expand Down

0 comments on commit 065ce7e

Please sign in to comment.