[cig-commits] r5770 - in long/3D/Gale/trunk/src/StgFEM: . SLE/SystemSetup/src

walter at geodynamics.org walter at geodynamics.org
Thu Jan 11 21:04:19 PST 2007


Author: walter
Date: 2007-01-11 21:04:19 -0800 (Thu, 11 Jan 2007)
New Revision: 5770

Modified:
   long/3D/Gale/trunk/src/StgFEM/
   long/3D/Gale/trunk/src/StgFEM/SLE/SystemSetup/src/SystemLinearEquations.c
Log:
 r953 at earth (orig r712):  LukeHodkinson | 2007-01-10 15:05:30 -0800
 Wasn't setting the local size of a vector in the
 non-linear loop.
 



Property changes on: long/3D/Gale/trunk/src/StgFEM
___________________________________________________________________
Name: svk:merge
   - 38867592-cf10-0410-9e16-a142ea72ac34:/cig:880
db209038-57f2-0310-97fa-b160e0ae9d04:/branches/decomp3d:711
db209038-57f2-0310-97fa-b160e0ae9d04:/trunk:669
   + 38867592-cf10-0410-9e16-a142ea72ac34:/cig:880
db209038-57f2-0310-97fa-b160e0ae9d04:/branches/decomp3d:712
db209038-57f2-0310-97fa-b160e0ae9d04:/trunk:669

Modified: long/3D/Gale/trunk/src/StgFEM/SLE/SystemSetup/src/SystemLinearEquations.c
===================================================================
--- long/3D/Gale/trunk/src/StgFEM/SLE/SystemSetup/src/SystemLinearEquations.c	2007-01-12 05:04:14 UTC (rev 5769)
+++ long/3D/Gale/trunk/src/StgFEM/SLE/SystemSetup/src/SystemLinearEquations.c	2007-01-12 05:04:19 UTC (rev 5770)
@@ -667,8 +667,8 @@
 	/* TODO - Give option which solution vector to test */
 	currentVector   = SystemLinearEquations_GetSolutionVectorAt( self, 0 )->vector; 
 	Vector_Duplicate( currentVector, (void**)&previousVector );
+	Vector_SetLocalSize( previousVector, Vector_GetLocalSize( currentVector ) );
 	
-	
 	for ( self->nonLinearIteration_I = 1 ; self->nonLinearIteration_I < maxIterations ; self->nonLinearIteration_I++ ) {
 		Vector_CopyEntries( currentVector, previousVector );
 	



More information about the cig-commits mailing list