Skip to content

Commit

Permalink
restore use of lu_recursive:
Browse files Browse the repository at this point in the history
  • Loading branch information
fredrik-johansson committed Jan 16, 2025
1 parent c9f7002 commit f207c1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/nmod_mat/lu.c
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ nmod_mat_lu(slong * P, nmod_mat_t A, int rank_check)
else
cutoff = 60;

if (n >= cutoff && 0)
if (n >= cutoff)
return nmod_mat_lu_recursive(P, A, rank_check);
}

Expand Down

0 comments on commit f207c1f

Please sign in to comment.