Ignore:
Timestamp:
Feb 27, 2009, 11:54:09 AM (14 years ago)
Author:
rwilson
Message:

numpy changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/numpy/anuga/shallow_water/test_data_manager.py

    r6410 r6428  
    27952795        # Invoke interpolation for vertex points       
    27962796        points = num.concatenate( (x[:,num.newaxis],y[:,num.newaxis]), axis=1 )
     2797        points = num.ascontiguousarray(points)
    27972798        sww2pts(self.domain.get_name(),
    27982799                quantity = 'elevation',
     
    1090810909        domain.set_quantity('xmomentum', uh)
    1090910910        domain.set_boundary( {'left': Bd, 'right': Bd, 'top': Br, 'bottom': Br})
    10910 
    1091110911        for t in domain.evolve(yieldstep=1, finaltime = t_end):
    1091210912            pass
     
    1133711337if __name__ == "__main__":
    1133811338    suite = unittest.makeSuite(Test_Data_Manager,'test')
    11339     #suite = unittest.makeSuite(Test_Data_Manager,'test_get_maximum_inundation')
    1134011339
    1134111340    # FIXME (Ole): This is the test that fails under Windows
Note: See TracChangeset for help on using the changeset viewer.