Skip to content

Commit

Permalink
nlCRSMatrixPatternCompile():
Browse files Browse the repository at this point in the history
  NLuint k -> NLuint_big k
(for the 1G OT test, it was looping forever)
  • Loading branch information
BrunoLevy committed Dec 7, 2024
1 parent 5465c2f commit 9b3d317
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/geogram/NL/nl_matrix.c
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ void nlCRSMatrixPatternCompile(NLCRSMatrix* M) {
NLuint nslices = nlGetNumThreads();
NLuint i;
NLuint_big nnz;
NLuint k;
NLuint_big k;
/* Test that matrix is in 'pattern' state */
nl_assert(M->colind == NULL);
nl_assert(M->val == NULL);
Expand Down

0 comments on commit 9b3d317

Please sign in to comment.