Index: trunk/psLib/src/math/psPolynomial.h
===================================================================
--- trunk/psLib/src/math/psPolynomial.h	(revision 4422)
+++ trunk/psLib/src/math/psPolynomial.h	(revision 4426)
@@ -12,6 +12,6 @@
  *  @author GLG, MHPCC
  *
- *  @version $Revision: 1.50 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-06-29 00:43:46 $
+ *  @version $Revision: 1.51 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-06-29 03:23:19 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -126,5 +126,5 @@
  */
 psPolynomial1D* psPolynomial1DAlloc(
-    int n,                   ///< Number of terms
+    unsigned int n,                   ///< Number of terms
     psPolynomialType type              ///< Polynomial Type
 );
@@ -135,6 +135,6 @@
  */
 psPolynomial2D* psPolynomial2DAlloc(
-    int nX,                   ///< Number of terms in x
-    int nY,                   ///< Number of terms in y
+    unsigned int nX,                   ///< Number of terms in x
+    unsigned int nY,                   ///< Number of terms in y
     psPolynomialType type              ///< Polynomial Type
 );
@@ -145,7 +145,7 @@
  */
 psPolynomial3D* psPolynomial3DAlloc(
-    int nX,                   ///< Number of terms in x
-    int nY,                   ///< Number of terms in y
-    int nZ,                   ///< Number of terms in z
+    unsigned int nX,                   ///< Number of terms in x
+    unsigned int nY,                   ///< Number of terms in y
+    unsigned int nZ,                   ///< Number of terms in z
     psPolynomialType type              ///< Polynomial Type
 );
@@ -156,8 +156,8 @@
  */
 psPolynomial4D* psPolynomial4DAlloc(
-    int nX,                   ///< Number of terms in x
-    int nY,                   ///< Number of terms in y
-    int nZ,                   ///< Number of terms in z
-    int nT,                   ///< Number of terms in t
+    unsigned int nX,                   ///< Number of terms in x
+    unsigned int nY,                   ///< Number of terms in y
+    unsigned int nZ,                   ///< Number of terms in z
+    unsigned int nT,                   ///< Number of terms in t
     psPolynomialType type              ///< Polynomial Type
 );
@@ -306,5 +306,5 @@
  */
 psDPolynomial1D* psDPolynomial1DAlloc(
-    int n,                           ///< Number of terms
+    unsigned int n,                           ///< Number of terms
     psPolynomialType type              ///< Polynomial Type
 );
@@ -315,6 +315,6 @@
  */
 psDPolynomial2D* psDPolynomial2DAlloc(
-    int nX,                          ///< Number of terms in x
-    int nY,                          ///< Number of terms in y
+    unsigned int nX,                          ///< Number of terms in x
+    unsigned int nY,                          ///< Number of terms in y
     psPolynomialType type              ///< Polynomial Type
 );
@@ -325,7 +325,7 @@
  */
 psDPolynomial3D* psDPolynomial3DAlloc(
-    int nX,                          ///< Number of terms in x
-    int nY,                          ///< Number of terms in y
-    int nZ,                          ///< Number of terms in z
+    unsigned int nX,                          ///< Number of terms in x
+    unsigned int nY,                          ///< Number of terms in y
+    unsigned int nZ,                          ///< Number of terms in z
     psPolynomialType type              ///< Polynomial Type
 );
@@ -336,8 +336,8 @@
  */
 psDPolynomial4D* psDPolynomial4DAlloc(
-    int nX,                          ///< Number of terms in w
-    int nY,                          ///< Number of terms in x
-    int nZ,                          ///< Number of terms in y
-    int nT,                          ///< Number of terms in z
+    unsigned int nX,                          ///< Number of terms in w
+    unsigned int nY,                          ///< Number of terms in x
+    unsigned int nZ,                          ///< Number of terms in y
+    unsigned int nT,                          ///< Number of terms in z
     psPolynomialType type              ///< Polynomial Type
 );
