Index: trunk/pois/src/poisSolveEquation.c
===================================================================
--- trunk/pois/src/poisSolveEquation.c	(revision 3792)
+++ trunk/pois/src/poisSolveEquation.c	(revision 5717)
@@ -39,15 +39,4 @@
 
 	if (stamp->status == POIS_STAMP_USED) {
-
-#ifdef TESTING
-	    printf("Matrix %d:\n", s);
-	    for (int i = 0; i < matrix->numCols; i++) {
-		for (int j = 0; j < matrix->numRows; j++) {
-		    printf("%f ", matrix->data.F64[i][j]);
-		}
-		printf("\n");
-	    }
-#endif
-
 	    (void)psBinaryOp(matrix, matrix, "+", stampMatrix);
 	    (void)psBinaryOp(vector, vector, "+", stampVector);
@@ -61,4 +50,14 @@
     psTrace("pois.solveEquation", 1, "Background difference is %f\n", solution->data.F64[solution->n - 1]);
 
+#if 0
+    printf("Matrix:\n");
+    for (int i = 0; i < matrix->numCols; i++) {
+	for (int j = 0; j < matrix->numRows; j++) {
+	    printf("%f ", matrix->data.F64[i][j]);
+	}
+	printf("\n");
+    }
+#endif
+
     // Clean up
     psFree(luMatrix);
