Skip to content

Commit

Permalink
Merge pull request #71 from zhli271828/patch-2
Browse files Browse the repository at this point in the history
bugfix for IntegerMatrix.to_matrix for A[i][j]
  • Loading branch information
malb committed May 24, 2017
2 parents 02f26d5 + cb52613 commit 4e960cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fpylll/fplll/integer_matrix.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,7 @@ cdef class IntegerMatrix:
except TypeError:
for i in range(m):
for j in range(n):
A[i][j] = A[i][j]
A[i][j] = self[i, j]
return A

def __dealloc__(self):
Expand Down

0 comments on commit 4e960cb

Please sign in to comment.