Skip to content

Commit

Permalink
Update log product working array data type
Browse files Browse the repository at this point in the history
  • Loading branch information
tharen committed Sep 19, 2023
1 parent 69da828 commit 24d0c69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pynvel/_pynvel.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,7 @@ cdef class Cython_VolumeCalculator:
self.log_len_wk = np.zeros((_MAX_LOGS, ), dtype=np.float32, order='F')
self.bole_ht_wk = np.zeros((_MAX_LOGS+1, ), dtype=np.float32, order='F')

self.log_prod_wk = np.zeros((_MAX_LOGS, ), dtype=np.int32)
self.log_prod_wk = np.zeros((_MAX_LOGS, ), dtype=int)

self.log_prod_cuft[:] = [0.0,]*_NUM_PROD
self.log_prod_bdft[:] = [0.0,]*_NUM_PROD
Expand Down

0 comments on commit 24d0c69

Please sign in to comment.