[cig-commits] r16755 - short/3D/PyLith/trunk/libsrc/problems

brad at geodynamics.org brad at geodynamics.org
Wed May 19 17:13:08 PDT 2010


Author: brad
Date: 2010-05-19 17:13:07 -0700 (Wed, 19 May 2010)
New Revision: 16755

Modified:
   short/3D/PyLith/trunk/libsrc/problems/Formulation.cc
Log:
Small change.

Modified: short/3D/PyLith/trunk/libsrc/problems/Formulation.cc
===================================================================
--- short/3D/PyLith/trunk/libsrc/problems/Formulation.cc	2010-05-20 00:10:24 UTC (rev 16754)
+++ short/3D/PyLith/trunk/libsrc/problems/Formulation.cc	2010-05-20 00:13:07 UTC (rev 16755)
@@ -372,10 +372,12 @@
 						 _jacobian, _fields);
 
     // Flush assembled portion.
-    MatAssemblyBegin(_precondMatrix,MAT_FLUSH_ASSEMBLY);
-    MatAssemblyEnd(_precondMatrix,MAT_FLUSH_ASSEMBLY);
-    MatAssemblyBegin(_precondMatrix,MAT_FINAL_ASSEMBLY);
-    MatAssemblyEnd(_precondMatrix,MAT_FINAL_ASSEMBLY);
+    MatAssemblyBegin(_precondMatrix, MAT_FLUSH_ASSEMBLY);
+    MatAssemblyEnd(_precondMatrix, MAT_FLUSH_ASSEMBLY);
+    MatAssemblyBegin(_precondMatrix, MAT_FINAL_ASSEMBLY);
+    MatAssemblyEnd(_precondMatrix, MAT_FINAL_ASSEMBLY);
+
+    //MatView(_precondMatrix, PETSC_VIEWER_STDOUT_WORLD);
   } // if
 } // reformJacobian
 



More information about the CIG-COMMITS mailing list