Index: /trunk/psLib/src/math/psMinimizeLMM.h
===================================================================
--- /trunk/psLib/src/math/psMinimizeLMM.h	(revision 6184)
+++ /trunk/psLib/src/math/psMinimizeLMM.h	(revision 6185)
@@ -8,6 +8,6 @@
  *  @author GLG, MHPCC
  *
- *  @version $Revision: 1.1 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2006-01-21 02:43:31 $
+ *  @version $Revision: 1.2 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2006-01-23 20:44:29 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -18,5 +18,5 @@
 #define PS_MINIMIZE_LMM_H
 
-/** \file psMinimize.h
+/** \file psMinimizeLMM.h
  *  \brief minimization operations
  *  \ingroup Stats
Index: /trunk/psLib/src/math/psMinimizePolyFit.c
===================================================================
--- /trunk/psLib/src/math/psMinimizePolyFit.c	(revision 6184)
+++ /trunk/psLib/src/math/psMinimizePolyFit.c	(revision 6185)
@@ -10,6 +10,6 @@
  *  @author EAM, IfA
  *
- *  @version $Revision: 1.1 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2006-01-21 02:43:31 $
+ *  @version $Revision: 1.2 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2006-01-23 20:44:29 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -862,5 +862,4 @@
     psF32 minClipSigma;
     psF32 maxClipSigma;
-
     if (isnan(stats->max) || isfinite(stats->max)) {
         maxClipSigma = fabs(stats->clipSigma);
@@ -873,4 +872,5 @@
         minClipSigma = fabs(stats->min);
     }
+
     psVector *fit   = NULL;
     psVector *resid = psVectorAlloc(f->n, PS_TYPE_F64);
@@ -881,12 +881,11 @@
     // for now, for the SAMPLE_MEDIAN and SAMPLE_STDEV to be used
     stats->options |= (PS_STAT_SAMPLE_MEDIAN | PS_STAT_SAMPLE_STDEV);
-
     psTrace(__func__, 4, "stats->clipIter is %d\n", stats->clipIter);
     psTrace(__func__, 4, "(minClipSigma, maxClipSigma) is (%.2f, %.2f)\n", minClipSigma, maxClipSigma);
+
     //
     for (int N = 0; N < stats->clipIter; N++) {
         psTrace(__func__, 6, "Loop iteration %d.  Calling psVectorFitPolynomial1D()\n");
         int Nkeep = 0;
-        // XXX: Check error codes
         if (psTraceGetLevel(__func__) >= 6) {
             if (mask != NULL) {
@@ -902,4 +901,5 @@
         }
 
+        // XXX: Check error codes
         fit = psPolynomial1DEvalVector(poly, x);
         for (psS32 i = 0 ; i < f->n ; i++) {
Index: /trunk/psLib/src/math/psMinimizePolyFit.h
===================================================================
--- /trunk/psLib/src/math/psMinimizePolyFit.h	(revision 6184)
+++ /trunk/psLib/src/math/psMinimizePolyFit.h	(revision 6185)
@@ -10,6 +10,6 @@
  *  XXX: Must Doxygenate.
  *
- *  @version $Revision: 1.1 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2006-01-21 02:43:31 $
+ *  @version $Revision: 1.2 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2006-01-23 20:44:29 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -20,5 +20,5 @@
 #define PS_MINIMIZE_POLYFIT_H
 
-/** \file psMinimize.h
+/** \file psMinimizePolyFit.h
  *  \brief minimization operations
  *  \ingroup Stats
Index: /trunk/psLib/src/math/psMinimizePowell.h
===================================================================
--- /trunk/psLib/src/math/psMinimizePowell.h	(revision 6184)
+++ /trunk/psLib/src/math/psMinimizePowell.h	(revision 6185)
@@ -8,6 +8,6 @@
  *  @author GLG, MHPCC
  *
- *  @version $Revision: 1.1 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2006-01-21 02:43:31 $
+ *  @version $Revision: 1.2 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2006-01-23 20:44:29 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -18,5 +18,5 @@
 #define PS_MINIMIZE_POWELL_H
 
-/** \file psMinimize.h
+/** \file psMinimizePowell.h
  *  \brief minimization operations
  *  \ingroup Stats
Index: /trunk/psLib/src/math/psStats.c
===================================================================
--- /trunk/psLib/src/math/psStats.c	(revision 6184)
+++ /trunk/psLib/src/math/psStats.c	(revision 6185)
@@ -17,6 +17,6 @@
  *
  *
- *  @version $Revision: 1.158 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2006-01-21 02:43:32 $
+ *  @version $Revision: 1.159 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2006-01-23 20:44:29 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -40,5 +40,6 @@
 #include "psError.h"
 #include "psStats.h"
-#include "psMinimize.h"
+#include "psMinimizeLMM.h"
+#include "psMinimizePolyFit.h"
 #include "psPolynomial.h"
 #include "psConstants.h"
Index: /trunk/psLib/src/pslib_strict.h
===================================================================
--- /trunk/psLib/src/pslib_strict.h	(revision 6184)
+++ /trunk/psLib/src/pslib_strict.h	(revision 6185)
@@ -9,6 +9,6 @@
 *  @author Eric Van Alst, MHPCC
 *
-*  @version $Revision: 1.11 $ $Name: not supported by cvs2svn $
-*  @date $Date: 2005-11-14 22:18:05 $
+*  @version $Revision: 1.12 $ $Name: not supported by cvs2svn $
+*  @date $Date: 2006-01-23 20:44:29 $
 *
 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -75,5 +75,7 @@
 #include "psConstants.h"
 #include "psMatrix.h"
-#include "psMinimize.h"
+#include "psMinimizeLMM.h"
+#include "psMinimizePowell.h"
+#include "psMinimizePolyFit.h"
 #include "psRandom.h"
 #include "psPolynomial.h"
Index: /trunk/psLib/src/sys/psMemory.c
===================================================================
--- /trunk/psLib/src/sys/psMemory.c	(revision 6184)
+++ /trunk/psLib/src/sys/psMemory.c	(revision 6185)
@@ -8,6 +8,6 @@
 *  @author Robert Lupton, Princeton University
 *
-*  @version $Revision: 1.65 $ $Name: not supported by cvs2svn $
-*  @date $Date: 2005-10-01 02:22:13 $
+*  @version $Revision: 1.66 $ $Name: not supported by cvs2svn $
+*  @date $Date: 2006-01-23 20:44:29 $
 *
 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -41,5 +41,5 @@
 #include "psSphereOps.h"
 //#include "psStats.h"
-#include "psMinimize.h"
+#include "psMinimizeLMM.h"
 #include "psImageConvolve.h"
 #include "psTime.h"
