ext/nmatrix/math/getf2.h in nmatrix-0.1.0.rc3 vs ext/nmatrix/math/getf2.h in nmatrix-0.1.0.rc4

- old
+ new

@@ -44,11 +44,11 @@ for (size_t j = 0; j < std::min(m,n); ++j) { // changed /* Find pivot and test for singularity. */ - int jp = j - 1 + idamax<DType>(m-j+1, &a[j + j * lda], 1); + int jp = j - 1 + imax<DType>(m-j+1, &a[j + j * lda], 1); ipiv[j] = jp; if (a[jp + j*lda] != 0) { @@ -81,6 +81,6 @@ } /* dgetf2_ */ }} // end of namespace nm::math -#endif // GETF2 \ No newline at end of file +#endif // GETF2