Changeset 3927


Ignore:
Timestamp:
Nov 7, 2006, 12:29:17 PM (17 years ago)
Author:
ole
Message:

Cleanup

File:
1 edited

Legend:

Unmodified
Added
Removed
  • anuga_core/source/anuga/abstract_2d_finite_volumes/test_general_mesh.py

    r3689 r3927  
    2626        #Create basic mesh
    2727        points, vertices, boundary = rectangular(1, 3)
    28         domain = General_mesh(points, vertices, boundary)
     28        domain = General_mesh(points, vertices)
     29
     30        print domain.__class__
    2931
    3032        assert allclose(domain.get_vertex_coordinates(unique=True), domain.coordinates)
     
    4345        #Create basic mesh
    4446        points, vertices, boundary = rectangular(1, 3)
    45         domain = General_mesh(points, vertices, boundary)
     47        domain = General_mesh(points, vertices)
    4648
    4749        value = [7]
     
    5759        #Create basic mesh
    5860        points, vertices, boundary = rectangular(1, 3)
    59         domain = General_mesh(points, vertices, boundary)       
     61        domain = General_mesh(points, vertices)       
    6062
    6163        assert domain.get_area() == 1.0
     
    7274        #Create basic mesh
    7375        points, vertices, boundary = rectangular(1, 3)
    74         domain = General_mesh(points, vertices, boundary)               
     76        domain = General_mesh(points, vertices)               
    7577
    7678        assert  domain.get_unique_vertices() == [0,1,2,3,4,5,6,7]
Note: See TracChangeset for help on using the changeset viewer.