[cig-commits] commit: Renaming print commands.

Mercurial hg at geodynamics.org
Mon Nov 24 11:30:15 PST 2008


changeset:   5:4692e77a84ee
user:        LukeHodkinson
date:        Wed May 16 01:13:21 2007 +0000
files:       MaterialPoints/src/IntegrationPointMapper.c MaterialPoints/src/ManyToOneMapper.c MaterialPoints/src/MaterialFeVariable.c MaterialPoints/src/OneToOneMapper.c
description:
Renaming print commands.


diff -r 46b39948fbaf -r 4692e77a84ee MaterialPoints/src/IntegrationPointMapper.c
--- a/MaterialPoints/src/IntegrationPointMapper.c	Mon May 14 07:01:46 2007 +0000
+++ b/MaterialPoints/src/IntegrationPointMapper.c	Wed May 16 01:13:21 2007 +0000
@@ -128,7 +128,7 @@ void _IntegrationPointMapper_Print( void
 
 	Stream_Indent( stream );
 
-	Print( self->integrationSwarm, stream );
+	Stg_Class_Print( self->integrationSwarm, stream );
 
 	Stream_UnIndent( stream );
 }
diff -r 46b39948fbaf -r 4692e77a84ee MaterialPoints/src/ManyToOneMapper.c
--- a/MaterialPoints/src/ManyToOneMapper.c	Mon May 14 07:01:46 2007 +0000
+++ b/MaterialPoints/src/ManyToOneMapper.c	Wed May 16 01:13:21 2007 +0000
@@ -145,7 +145,7 @@ void _ManyToOneMapper_Print( void* mappe
 	if ( self->materialSwarms != NULL ) {
 		Stream_Indent( stream );
 		for ( i = 0; i < self->materialSwarmCount; ++i ) {
-			Print( self->materialSwarms[i], stream );
+			Stg_Class_Print( self->materialSwarms[i], stream );
 		}
 		Stream_UnIndent( stream );
 	}
diff -r 46b39948fbaf -r 4692e77a84ee MaterialPoints/src/MaterialFeVariable.c
--- a/MaterialPoints/src/MaterialFeVariable.c	Mon May 14 07:01:46 2007 +0000
+++ b/MaterialPoints/src/MaterialFeVariable.c	Wed May 16 01:13:21 2007 +0000
@@ -38,7 +38,7 @@
 **  License along with this library; if not, write to the Free Software
 **  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 **
-** $Id: MaterialFeVariable.c 456 2007-04-27 06:21:01Z LukeHodkinson $
+** $Id: MaterialFeVariable.c 462 2007-05-16 01:13:21Z LukeHodkinson $
 **
 **~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
 
@@ -204,14 +204,14 @@ void _MaterialFeVariable_Build( void* ma
 	self->dataVariable = Variable_NewScalar( 
 			tmpName,
 			Variable_DataType_Double, 
-			&self->feMesh->topo->domains[MT_VERTEX]->nDomains, 
+			&self->feMesh->topo->remotes[MT_VERTEX]->nDomains, 
 			(void**)&self->data, 
 			variable_Register );
 	Memory_Free( tmpName );
 	self->fieldComponentCount = 1;
 	
 	tmpName = Stg_Object_AppendSuffix( self, "DofLayout" );
-	self->dofLayout = DofLayout_New( tmpName, variable_Register, self->feMesh->topo->domains[MT_VERTEX]->nDomains, NULL );
+	self->dofLayout = DofLayout_New( tmpName, variable_Register, self->feMesh->topo->remotes[MT_VERTEX]->nDomains, NULL );
 	DofLayout_AddAllFromVariableArray( self->dofLayout, 1, &self->dataVariable );
 	Memory_Free( tmpName );
 	self->eqNum->dofLayout = self->dofLayout;
diff -r 46b39948fbaf -r 4692e77a84ee MaterialPoints/src/OneToOneMapper.c
--- a/MaterialPoints/src/OneToOneMapper.c	Mon May 14 07:01:46 2007 +0000
+++ b/MaterialPoints/src/OneToOneMapper.c	Wed May 16 01:13:21 2007 +0000
@@ -135,7 +135,7 @@ void _OneToOneMapper_Print( void* mapper
 	
 	_IntegrationPointMapper_Print( self, stream );
 	Stream_Indent( stream );
-	Print( self->materialSwarm, stream );
+	Stg_Class_Print( self->materialSwarm, stream );
 	Stream_UnIndent( stream );
 }
 void* _OneToOneMapper_Copy( void* mapper, void* dest, Bool deep, Name nameExt, PtrMap* ptrMap ) {



More information about the CIG-COMMITS mailing list