Changeset 4171


Ignore:
Timestamp:
Jan 11, 2007, 2:58:04 PM (17 years ago)
Author:
ole
Message:

Untabified a few culprits

Location:
anuga_core/source/anuga/abstract_2d_finite_volumes
Files:
5 edited

Legend:

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

    r3514 r4171  
    270270        domain.check_integrity()
    271271
    272         assert allclose(domain.neighbours, [[-1,-2,-3]])
     272        assert allclose(domain.neighbours, [[-1,-2,-3]])
    273273
    274274
  • anuga_core/source/anuga/abstract_2d_finite_volumes/test_general_mesh.py

    r3954 r4171  
    7070        domain = General_mesh(points, vertices)       
    7171
    72         assert domain.get_area() == 1.0
     72        assert domain.get_area() == 1.0
    7373
    7474
  • anuga_core/source/anuga/abstract_2d_finite_volumes/test_generic_boundary_conditions.py

    r3563 r4171  
    168168
    169169        #Check that midpoint coordinates at boundary are correctly computed
    170         assert allclose( F.midpoint_coordinates,
     170        assert allclose( F.midpoint_coordinates,
    171171                         [[1.0, 0.0], [0.0, 1.0], [3.0, 0.0],
    172172                          [3.0, 1.0], [1.0, 3.0], [0.0, 3.0]])
  • anuga_core/source/anuga/abstract_2d_finite_volumes/test_neighbour_mesh.py

    r3945 r4171  
    400400
    401401        points, vertices, boundary = rectangular(M, N)
    402         mesh = Mesh(points, vertices, boundary)
     402        mesh = Mesh(points, vertices, boundary)
    403403
    404404        #Test that points are arranged in a counter clock wise order
     
    408408        N=2
    409409        points, vertices, boundary = rectangular(M, N)
    410         mesh = Mesh(points, vertices, boundary)
     410        mesh = Mesh(points, vertices, boundary)
    411411
    412412        #Test that points are arranged in a counter clock wise order
     
    422422
    423423        points, vertices, boundary = rectangular(4, 4)
    424         mesh = Mesh(points, vertices, boundary)
     424        mesh = Mesh(points, vertices, boundary)
    425425
    426426
     
    451451
    452452        points, vertices, boundary = rectangular(M, N, len1, len2)
    453         mesh = Mesh(points, vertices, boundary)
     453        mesh = Mesh(points, vertices, boundary)
    454454
    455455        assert len(mesh) == 2*M*N
     
    472472
    473473        points, vertices, boundary = rectangular(2*N, N, len1=10, len2=10)
    474         mesh = Mesh(points, vertices, boundary)
     474        mesh = Mesh(points, vertices, boundary)
    475475
    476476
     
    985985        # Then do the discontinuous version
    986986        import warnings
    987         warnings.filterwarnings('ignore')
     987        warnings.filterwarnings('ignore')
    988988
    989989       
  • anuga_core/source/anuga/abstract_2d_finite_volumes/test_quantity.py

    r4130 r4171  
    1010
    1111from anuga.fit_interpolate.fit import fit_to_mesh
    12 #from anuga.pyvolution.least_squares import fit_to_mesh         
     12#from anuga.pyvolution.least_squares import fit_to_mesh         
    1313from domain import Domain
    1414from anuga.geospatial_data.geospatial_data import Geospatial_data
     
    12071207
    12081208
    1209         assert A.shape[0] == 9
    1210         assert V.shape[0] == 8
    1211         assert V.shape[1] == 3
     1209        assert A.shape[0] == 9
     1210        assert V.shape[0] == 8
     1211        assert V.shape[1] == 3
    12121212
    12131213        #First four points
Note: See TracChangeset for help on using the changeset viewer.