Skip to content

Commit

Permalink
Merge pull request #155 from lrineau/main
Browse files Browse the repository at this point in the history
fix a compilation error in src/lib/third_party/numerics/SUPERLU/
  • Loading branch information
BrunoLevy authored Jun 18, 2024
2 parents 037bf2a + 3430a55 commit f4dbb6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/third_party/numerics/SUPERLU/slacon2.c
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ slacon2_(int *n, float *v, float *x, int *isgn, float *est, int *kase, int isave
#ifdef _CRAY
isave[1] = ISAMAX(n, &x[0], &c__1); /* j */
#else
isave[1] = idamax_(n, &x[0], &c__1); /* j */
isave[1] = isamax_(n, &x[0], &c__1); /* j */
#endif
--isave[1]; /* --j; */
isave[2] = 2; /* iter = 2; */
Expand Down

0 comments on commit f4dbb6d

Please sign in to comment.