Changeset 5070 for trunk/psLib/src
- Timestamp:
- Sep 19, 2005, 12:50:29 PM (21 years ago)
- Location:
- trunk/psLib/src
- Files:
-
- 3 edited
-
math/psSpline.c (modified) (2 diffs)
-
mathtypes/psImage.h (modified) (2 diffs)
-
sys/psTrace.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
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
Note:
See TracChangeset
for help on using the changeset viewer.
