Index: /trunk/psLib/src/mathtypes/psImage.c
===================================================================
--- /trunk/psLib/src/mathtypes/psImage.c	(revision 5176)
+++ /trunk/psLib/src/mathtypes/psImage.c	(revision 5177)
@@ -9,6 +9,6 @@
  *  @author Ross Harman, MHPCC
  *
- *  @version $Revision: 1.86 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-09-28 22:12:10 $
+ *  @version $Revision: 1.87 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-09-29 18:59:01 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -632,4 +632,20 @@
     }
     write(fd,"\n",1);
+    return (true);
+}
+
+XXXX:
+Remove this
+bool p_psImagePrintOLD (int fd, psImage *a, char *name)
+{
+    printf("matrix: %s\n", name);
+    for (int j = 0; j < a[0].numRows; j++) {
+        for (int i = 0; i < a[0].numCols; i++) {
+            printf("%f  ", p_psImageGetElementF64(a, i, j));
+        }
+        printf("\n");
+    }
+    printf("\n");
+    fflush(stdout);
     return (true);
 }
Index: /trunk/psLib/src/mathtypes/psVector.c
===================================================================
--- /trunk/psLib/src/mathtypes/psVector.c	(revision 5176)
+++ /trunk/psLib/src/mathtypes/psVector.c	(revision 5177)
@@ -9,6 +9,6 @@
 *  @author Robert DeSonia, MHPCC
 *
-*  @version $Revision: 1.57 $ $Name: not supported by cvs2svn $
-*  @date $Date: 2005-09-26 22:35:53 $
+*  @version $Revision: 1.58 $ $Name: not supported by cvs2svn $
+*  @date $Date: 2005-09-29 18:59:01 $
 *
 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -603,13 +603,25 @@
                       char *name)
 {
-    FILE *f;
-    f = fdopen(fd, "a+");
-    fprintf (f, "vector: %s\n", name);
-
+    /*
+        XXXX: This is seg faulting.  So I'm getting rid of it.
+        FILE *f;
+        f = fdopen(fd, "a+");
+        fprintf (f, "vector: %s\n", name);
+     
+        for (int i = 0; i < a[0].n; i++) {
+            fprintf (f, "%f\n", p_psVectorGetElementF64(a, i));
+        }
+        fprintf (f, "\n");
+    // XXXX: temp fix: this should be recoded.
+    //    fclose(f);
+        return (true);
+    */
+
+    printf ("vector: %s\n", name);
     for (int i = 0; i < a[0].n; i++) {
-        fprintf (f, "%f\n", p_psVectorGetElementF64(a, i));
-    }
-    fprintf (f, "\n");
-    fclose(f);
+        printf("%f\n", p_psVectorGetElementF64(a, i));
+    }
+    printf("\n");
+    fflush(stdout);
     return (true);
 }
