Changeset 4652
- Timestamp:
- Aug 1, 2007, 6:08:12 PM (17 years ago)
- Location:
- anuga_core/source/anuga
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_core/source/anuga/abstract_2d_finite_volumes/quantity.py
r4592 r4652 755 755 'verbose': verbose} 756 756 757 758 # FIXME(dsg):Why is this catched? fit_to_mesh handles caching.759 # Fair enough - I have commented it out 28/6/7 (Ole)760 #if use_cache is True:761 # try:762 # from caching import cache763 # except:764 # msg = 'Caching was requested, but caching module'+\765 # 'could not be imported'766 # raise msg767 #768 # vertex_attributes = cache(fit_to_mesh,769 # args, kwargs,770 # verbose=verbose,771 # compression=False)772 #else:773 # vertex_attributes = apply(fit_to_mesh,774 # args, kwargs)775 776 757 vertex_attributes = apply(fit_to_mesh, 777 758 args, kwargs) -
anuga_core/source/anuga/fit_interpolate/general_fit_interpolate.py
r4648 r4652 38 38 39 39 # tests fail if 2 is used 40 MAX_VERTICES_PER_CELL = 3040 MAX_VERTICES_PER_CELL = 8 41 41 42 42 class FitInterpolate: -
anuga_core/source/anuga/fit_interpolate/ticket178_benchmark.py
r4651 r4652 17 17 is_fit_list = [True, False] 18 18 num_of_points_list = [3, 200, 600, 2000, 6000, 10000, 20000] 19 maxArea_list = [ 0.008, 0.0016, 0.0008]19 #maxArea_list = [ 0.008, 0.0016, 0.0008] 20 20 max_points_per_cell_list = [2,4,8,16,30,64] 21 21 use_file_type_list = ['pts'] #'pts' 22 22 #num_of_points_list = [10] 23 maxArea_list = [ 0.008 ]24 max_points_per_cell_list = [ 30]23 maxArea_list = [ 0.008, 0.0016] 24 max_points_per_cell_list = [4] 25 25 26 26 fd = open(ofile,'a')
Note: See TracChangeset
for help on using the changeset viewer.