Index: /trunk/psLib/src/math/psPolynomial.c
===================================================================
--- /trunk/psLib/src/math/psPolynomial.c	(revision 6347)
+++ /trunk/psLib/src/math/psPolynomial.c	(revision 6348)
@@ -7,6 +7,6 @@
 *  polynomials.  It also contains a Gaussian functions.
 *
-*  @version $Revision: 1.141 $ $Name: not supported by cvs2svn $
-*  @date $Date: 2006-02-02 21:09:07 $
+*  @version $Revision: 1.142 $ $Name: not supported by cvs2svn $
+*  @date $Date: 2006-02-07 23:36:15 $
 *
 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -623,6 +623,4 @@
     newPoly->type = type;
     newPoly->nX = nOrder;
-    newPoly->p_min = NAN;
-    newPoly->p_max = NAN;
     newPoly->coeff = psAlloc((nOrder + 1) * sizeof(psF64));
     newPoly->coeffErr = psAlloc((nOrder + 1) * sizeof(psF64));
Index: /trunk/psLib/src/math/psPolynomial.h
===================================================================
--- /trunk/psLib/src/math/psPolynomial.h	(revision 6347)
+++ /trunk/psLib/src/math/psPolynomial.h	(revision 6348)
@@ -11,6 +11,6 @@
  *  @author GLG, MHPCC
  *
- *  @version $Revision: 1.61 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2006-01-26 21:10:22 $
+ *  @version $Revision: 1.62 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2006-02-07 23:36:15 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -73,7 +73,5 @@
 {
     psPolynomialType type;              ///< Polynomial type
-    unsigned int nX;             ///< Polynomial order
-    psF64 p_min;
-    psF64 p_max;
+    unsigned int nX;                    ///< Polynomial order
     psF64 *coeff;                       ///< Coefficients
     psF64 *coeffErr;                    ///< Error in coefficients
Index: /trunk/psLib/src/math/psStats.h
===================================================================
--- /trunk/psLib/src/math/psStats.h	(revision 6347)
+++ /trunk/psLib/src/math/psStats.h	(revision 6348)
@@ -14,6 +14,6 @@
  *  @author GLG, MHPCC
  *
- *  @version $Revision: 1.50 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2006-02-02 21:09:08 $
+ *  @version $Revision: 1.51 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2006-02-07 23:39:24 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -51,5 +51,5 @@
     PS_STAT_MIN             = 0x001000, ///< Minumum
     PS_STAT_USE_RANGE       = 0x002000, ///< Range
-    PS_STAT_USE_BINSIZE     = 0x004000, ///< Binsize
+    PS_STAT_USE_BINSIZE     = 0x004000  ///< Binsize
 } psStatsOptions;
 
@@ -62,6 +62,6 @@
     double sampleMedian;               ///< formal median of sample
     double sampleStdev;                ///< standard deviation of sample
+    double sampleUQ;                   ///< upper quartile of sample
     double sampleLQ;                   ///< lower quartile of sample
-    double sampleUQ;                   ///< upper quartile of sample
     double robustMedian;               ///< robust median of array
     double robustStdev;                ///< robust standard deviation of array
Index: /trunk/psLib/src/sys/psType.h
===================================================================
--- /trunk/psLib/src/sys/psType.h	(revision 6347)
+++ /trunk/psLib/src/sys/psType.h	(revision 6348)
@@ -10,6 +10,6 @@
 *  @author Ross Harman, MHPCC
 *
-*  @version $Revision: 1.44 $ $Name: not supported by cvs2svn $
-*  @date $Date: 2006-01-30 20:28:33 $
+*  @version $Revision: 1.45 $ $Name: not supported by cvs2svn $
+*  @date $Date: 2006-02-07 23:36:15 $
 *
 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -79,17 +79,17 @@
  */
 typedef enum {
-    PS_TYPE_S8   = 0x0101,             ///< Character.
-    PS_TYPE_S16  = 0x0102,             ///< Short integer.
-    PS_TYPE_S32  = 0x0104,             ///< Integer.
-    PS_TYPE_S64  = 0x0108,             ///< Long integer.
-    PS_TYPE_U8   = 0x0301,             ///< Unsigned character.
-    PS_TYPE_U16  = 0x0302,             ///< Unsigned psS16 integer.
-    PS_TYPE_U32  = 0x0304,             ///< Unsigned integer.
-    PS_TYPE_U64  = 0x0308,             ///< Unsigned psS64 integer.
-    PS_TYPE_F32  = 0x0404,             ///< Single-precision Floating point.
-    PS_TYPE_F64  = 0x0408,             ///< Double-precision floating point.
-    PS_TYPE_C32  = 0x0808,             ///< Complex numbers consisting of single-precision floating point.
-    PS_TYPE_C64  = 0x0810,             ///< Complex numbers consisting of double-precision floating point.
-    PS_TYPE_BOOL = 0x1301              ///< Boolean.
+    PS_TYPE_S8,                         ///< Character.
+    PS_TYPE_S16,                        ///< Short integer.
+    PS_TYPE_S32,                        ///< Integer.
+    PS_TYPE_S64,                        ///< Long integer.
+    PS_TYPE_U8,                         ///< Unsigned character.
+    PS_TYPE_U16,                        ///< Unsigned psS16 integer.
+    PS_TYPE_U32,                        ///< Unsigned integer.
+    PS_TYPE_U64,                        ///< Unsigned psS64 integer.
+    PS_TYPE_F32,                        ///< Single-precision Floating point.
+    PS_TYPE_F64,                        ///< Double-precision floating point.
+    PS_TYPE_C32,                        ///< Complex numbers consisting of single-precision floating point.
+    PS_TYPE_C64,                        ///< Complex numbers consisting of double-precision floating point.
+    PS_TYPE_BOOL                        ///< Boolean.
 } psElemType;
 
Index: /trunk/psLib/src/types/psList.h
===================================================================
--- /trunk/psLib/src/types/psList.h	(revision 6347)
+++ /trunk/psLib/src/types/psList.h	(revision 6348)
@@ -7,6 +7,6 @@
  *  @ingroup LinkedList
  *
- *  @version $Revision: 1.32 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-09-29 01:15:38 $
+ *  @version $Revision: 1.33 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2006-02-07 23:36:15 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -59,5 +59,4 @@
     ///< used internally to improve performance when using indexed access, all
     ///< others are user-level iterators created by psListIteratorAlloc.
-
     pthread_mutex_t p_lock;            ///< mutex to lock a node during changes
     void *lock;                        ///< Optional lock for thread safety
