Skip to content

Commit 389f738

Browse files
authored
Merge pull request #265 from danielsclint/ft_int_overflow
Integer Overflow without Warning
2 parents 367d414 + c39a6d5 commit 389f738

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

activitysim/abm/tables/skims.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ def block_name(block):
149149
def buffers_for_skims(skim_info, shared=False):
150150

151151
skim_dtype = skim_info['dtype']
152-
omx_shape = skim_info['omx_shape']
152+
omx_shape = [np.float64(x) for x in skim_info['omx_shape']]
153153
blocks = skim_info['blocks']
154154

155155
skim_buffers = {}

0 commit comments

Comments
 (0)