Changeset 5070
- Timestamp:
- Sep 19, 2005, 12:50:29 PM (21 years ago)
- Location:
- trunk/psLib
- Files:
-
- 5 edited
-
configure.ac (modified) (1 diff)
-
src/math/psSpline.c (modified) (2 diffs)
-
src/mathtypes/psImage.h (modified) (2 diffs)
-
src/sys/psTrace.h (modified) (2 diffs)
-
test/math/tst_psFunc07.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/configure.ac
r5025 r5070 25 25 SRCDIRS="sys astro db fft fits imageops math mathtypes types xml" 26 26 SRCINC=`echo "${SRCDIRS=}" | ${SED} "s|\(\\w\+\)|-I\${SRCPATH=}/\1|g"` 27 dnl needed for psErrorText.h which is BUILT_SOURCES but also distributed 28 SRCINC="-I\${top_srcdir}/src ${SRCINC=}" 27 29 28 30 SRCSUBLIBS=`echo "${SRCDIRS=}" | ${SED} "s|\(\\w\+\)|\1/libpslib\1.la|g"` -
trunk/psLib/src/math/psSpline.c
r5066 r5070 7 7 * splines. 8 8 * 9 * @version $Revision: 1.12 4$ $Name: not supported by cvs2svn $10 * @date $Date: 2005-09-19 19:53:13$9 * @version $Revision: 1.125 $ $Name: not supported by cvs2svn $ 10 * @date $Date: 2005-09-19 22:50:28 $ 11 11 * 12 12 * … … 264 264 derivs2[n-1] = (u[n-1] - (qn * u[n-2])) / ((qn * derivs2[n-2]) + 1.0); 265 265 266 for (k=(n-2);k>=0;k--) { 266 //XXX: Changed from k=n-2;k>=0; because k is now unsigned// 267 for (k=(n-1);k>0;k--) { 267 268 derivs2[k] = derivs2[k] * derivs2[k+1] + u[k]; 268 269 -
trunk/psLib/src/mathtypes/psImage.h
r5064 r5070 11 11 * @author Ross Harman, MHPCC 12 12 * 13 * @version $Revision: 1. 69$ $Name: not supported by cvs2svn $14 * @date $Date: 2005-09-1 6 23:56:51$13 * @version $Revision: 1.70 $ $Name: not supported by cvs2svn $ 14 * @date $Date: 2005-09-19 22:50:29 $ 15 15 * 16 16 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 55 55 const int numCols; ///< Number of columns in image 56 56 const int numRows; ///< Number of rows in image. 57 const int col0;///< Column position relative to parent.58 const int row0;///< Row position relative to parent.57 int col0; ///< Column position relative to parent. 58 int row0; ///< Row position relative to parent. 59 59 60 60 union { -
trunk/psLib/src/sys/psTrace.h
r5057 r5070 9 9 * @author GLG, MHPCC 10 10 * 11 * @version $Revision: 1.4 0$ $Name: not supported by cvs2svn $12 * @date $Date: 2005-09-1 5 21:22:22$11 * @version $Revision: 1.41 $ $Name: not supported by cvs2svn $ 12 * @date $Date: 2005-09-19 22:50:29 $ 13 13 * 14 14 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 46 46 # define psTracePrintLevels() /* do nothing */ 47 47 # define psTraceSetDestination(fp) /* do nothing */ 48 # define psTrace SetDestination() /* do nothing */48 # define psTraceGetDestination() /* do nothing */ 49 49 # define PS_TRACE_ON 0 50 50 -
trunk/psLib/test/math/tst_psFunc07.c
r4973 r5070 40 40 psS32 memLeaks=0; 41 41 psS32 currentId = psMemGetId(); 42 psS32i;42 unsigned int i; 43 43 psSpline1D *tmpSpline = NULL; 44 44 psVector *x = NULL;
Note:
See TracChangeset
for help on using the changeset viewer.
