Skip to content

Commit

Permalink
come back to reason
Browse files Browse the repository at this point in the history
  • Loading branch information
cbouilla committed Oct 2, 2023
1 parent 6369e7b commit 4e95397
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/sparse_usolve.c
Original file line number Diff line number Diff line change
Expand Up @@ -57,12 +57,12 @@ int main(int argc, char **argv)
int *xi = spasm_malloc(3*m * sizeof(*xi));
for (int j = 0; j < 3*m; j++)
xi[j] = 0;
spasm_ZZp *x = malloc(n * sizeof(*x));
spasm_ZZp *x = malloc(m * sizeof(*x));
spasm_ZZp *y = malloc(m * sizeof(*y));
for (int j = 0; j < n; j++)
for (int j = 0; j < m; j++) {
x[j] = 0;
for (int j = 0; j < m; j++)
y[j] = 0;
}

int *qinv = malloc(m * sizeof(int));
for (int j = 0; j < n; j++)
Expand Down

0 comments on commit 4e95397

Please sign in to comment.