Changeset 3928 for anuga_core/source/anuga_parallel/parallel_api.py
- Timestamp:
- Nov 7, 2006, 1:13:03 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_core/source/anuga_parallel/parallel_api.py
r3926 r3928 171 171 172 172 for p in range(numprocs): 173 N = len(submesh['ghost_nodes'][p]) 173 174 M = len(submesh['ghost_triangles'][p]) 174 print 'There are %d ghost triangles on proc %d' %(M, p) 175 N = len(submesh['ghost_nodes'][p]) 176 print 'There are %d ghost nodes on proc %d' %(N, p) 175 print 'There are %d ghost nodes and %d ghost triangles on proc %d'\ 176 %(N, M, p) 177 177 178 178
Note: See TracChangeset
for help on using the changeset viewer.