Ignore:
Timestamp:
Nov 7, 2006, 1:13:03 PM (18 years ago)
Author:
ole
Message:

Parallel domains now store only full triangles in sww files.
Still need to remove ghost nodes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • anuga_core/source/anuga_parallel/parallel_api.py

    r3926 r3928  
    171171
    172172    for p in range(numprocs):
     173        N = len(submesh['ghost_nodes'][p])               
    173174        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)
    177177
    178178
Note: See TracChangeset for help on using the changeset viewer.