Changeset 7877 for trunk/anuga_core/source/anuga_parallel/test_parallel.py
- Timestamp:
- Jun 29, 2010, 11:26:45 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/anuga_core/source/anuga_parallel/test_parallel.py
r7519 r7877 6 6 from math import sqrt 7 7 8 9 10 11 12 from anuga.interface import Domain 13 from anuga.interface import rectangular_cross 8 import anuga 14 9 15 10 from anuga_parallel.distribute_mesh import pmesh_divide_metis … … 74 69 if myid == 0: 75 70 76 points, vertices, boundary = rectangular_cross(2,2)77 78 domain = Domain(points, vertices, boundary)71 points, vertices, boundary = anuga.rectangular_cross(2,2) 72 73 domain = anuga.Domain(points, vertices, boundary) 79 74 80 75
Note: See TracChangeset
for help on using the changeset viewer.