Changeset 24122
- Timestamp:
- May 9, 2009, 5:20:54 AM (17 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/math/psMatrix.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/math/psMatrix.c
r24085 r24122 526 526 // search for the next pivot 527 527 for (int row = 0; row < nSquare; row++) { 528 if (! finite(A[row][diag])) goto escape;528 if (!isfinite(A[row][diag])) goto escape; 529 529 530 530 // if we have already operated on this row (pivot[row] is true), skip it … … 599 599 // search for the next pivot 600 600 for (int row = 0; row < nSquare; row++) { 601 if (! finite(A[row][diag])) goto escape;601 if (!isfinite(A[row][diag])) goto escape; 602 602 603 603 // if we have already operated on this row (pivot[row] is true), skip it
Note:
See TracChangeset
for help on using the changeset viewer.
