Skip to content

Commit 128a035

Browse files
committed
Fix fmpz_mod_mat rref
1 parent de73121 commit 128a035

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/flint/flintlib/fmpz_mod_mat.pxd

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ cdef extern from *:
6969
#define compat_fmpz_mod_mat_inv(B, A, ctx) fmpz_mod_mat_inv(B, A)
7070
#define compat_fmpz_mod_mat_transpose(B, A, ctx) fmpz_mod_mat_transpose(B, A)
7171
#define compat_fmpz_mod_mat_solve(X, A, B, ctx) fmpz_mod_mat_solve(X, A, B)
72-
#define compat_fmpz_mod_mat_rref(mat, ctx) fmpz_mod_mat_rref(NULL, perm, mat)
72+
#define compat_fmpz_mod_mat_rref(mat, ctx) fmpz_mod_mat_rref(NULL, mat)
7373
#define compat_fmpz_mod_mat_charpoly(p, M, ctx) fmpz_mod_mat_charpoly(p, M, ctx)
7474
#define compat_fmpz_mod_mat_minpoly(p, M, ctx) fmpz_mod_mat_minpoly(p, M, ctx)
7575

0 commit comments

Comments
 (0)