Index: trunk/psLib/src/math/psMatrix.h
===================================================================
--- trunk/psLib/src/math/psMatrix.h	(revision 12292)
+++ trunk/psLib/src/math/psMatrix.h	(revision 15820)
@@ -19,6 +19,6 @@
  * @author Ross Harman, MHPCC
  *
- * @version $Revision: 1.27 $ $Name: not supported by cvs2svn $
- * @date $Date: 2007-03-07 20:48:55 $
+ * @version $Revision: 1.28 $ $Name: not supported by cvs2svn $
+ * @date $Date: 2007-12-14 00:41:17 $
  * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
  */
@@ -61,5 +61,5 @@
 );
 
-/** Gauss-Jordan numerical solver.
+/** Used to be a Gauss-Jordan numerical solver, but now uses LU decomposition.
  *
  *  @return bool:   True if successful.
@@ -70,12 +70,7 @@
 );
 
-/** Gauss-Jordan numerical solver for F32 input data
- *
- *  @return bool:   True if successful.
- */
-bool psMatrixGJSolveF32(
-    psImage *A,                   ///< Matrix to be solved
-    psVector *b                   ///< Vector of values
-);
+/** Gauss-Jordan numerical solver for F32 input data */
+#define psMatrixGJSolveF32(A,B) psMatrixGJSolve(A,B)
+
 
 /** Invert psImage matrix.
