Skip to content
This repository was archived by the owner on Sep 4, 2021. It is now read-only.

Commit b8c5d5a

Browse files
committed
Merge branch 'master' of github.com:ViralBShah/Circuitscape
2 parents 16998f4 + 752ee72 commit b8c5d5a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

circuitscape/compute_base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ def __init__(self, filename):
221221
mode, point_ids, mat = CSIO.read_included_pairs(filename)
222222
self.is_include = (mode == "include")
223223
self.point_ids = point_ids
224-
self.mat = mat.tolil()
224+
self.mat = mat.tolil() #FIXME- causing crashes when point IDs are large (8 digits)
225225
self.max_id = int(np.max(point_ids)) + 1
226226

227227
def is_included_pair(self, point_id1, point_id2):

0 commit comments

Comments
 (0)