Changeset 3873
- Timestamp:
- May 9, 2005, 3:57:47 PM (21 years ago)
- Location:
- trunk/psLib/src
- Files:
-
- 3 edited
-
dataManip/psMinimize.c (modified) (2 diffs)
-
image/psImageExtraction.c (modified) (2 diffs)
-
math/psMinimize.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/dataManip/psMinimize.c
r3856 r3873 9 9 * @author GLG, MHPCC 10 10 * 11 * @version $Revision: 1.11 4$ $Name: not supported by cvs2svn $12 * @date $Date: 2005-05- 05 22:32:34$11 * @version $Revision: 1.115 $ $Name: not supported by cvs2svn $ 12 * @date $Date: 2005-05-10 01:57:47 $ 13 13 * 14 14 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 811 811 big = 0.0; 812 812 for (j = 0; j < Nx; j++) { 813 if (! finite(matrix[i][j])) {813 if (!isfinite(matrix[i][j])) { 814 814 // XXX EAM: this should use the psError stack 815 815 fprintf (stderr, "GAUSSJ: NaN\n"); -
trunk/psLib/src/image/psImageExtraction.c
r3684 r3873 9 9 * @author Robert DeSonia, MHPCC 10 10 * 11 * @version $Revision: 1.3 5$ $Name: not supported by cvs2svn $12 * @date $Date: 2005-0 4-08 17:58:57 $11 * @version $Revision: 1.36 $ $Name: not supported by cvs2svn $ 12 * @date $Date: 2005-05-10 01:57:47 $ 13 13 * 14 14 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 24 24 #include "psImageErrors.h" 25 25 26 psImage* imageSubset(psImage* out,27 psImage* image,28 psS32 col0,29 psS32 row0,30 psS32 col1,31 psS32 row1)26 static psImage* imageSubset(psImage* out, 27 psImage* image, 28 psS32 col0, 29 psS32 row0, 30 psS32 col1, 31 psS32 row1) 32 32 { 33 33 psU32 elementSize; // size of image element in bytes -
trunk/psLib/src/math/psMinimize.c
r3856 r3873 9 9 * @author GLG, MHPCC 10 10 * 11 * @version $Revision: 1.11 4$ $Name: not supported by cvs2svn $12 * @date $Date: 2005-05- 05 22:32:34$11 * @version $Revision: 1.115 $ $Name: not supported by cvs2svn $ 12 * @date $Date: 2005-05-10 01:57:47 $ 13 13 * 14 14 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 811 811 big = 0.0; 812 812 for (j = 0; j < Nx; j++) { 813 if (! finite(matrix[i][j])) {813 if (!isfinite(matrix[i][j])) { 814 814 // XXX EAM: this should use the psError stack 815 815 fprintf (stderr, "GAUSSJ: NaN\n");
Note:
See TracChangeset
for help on using the changeset viewer.
