Changeset 4652


Ignore:
Timestamp:
Aug 1, 2007, 6:08:12 PM (17 years ago)
Author:
duncan
Message:

changing max points per cell

Location:
anuga_core/source/anuga
Files:
3 edited

Legend:

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

    r4592 r4652  
    755755                  'verbose': verbose}
    756756
    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 cache
    763         #    except:
    764         #        msg = 'Caching was requested, but caching module'+\
    765         #              'could not be imported'
    766         #        raise msg
    767         #
    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 
    776757        vertex_attributes = apply(fit_to_mesh,
    777758                                  args, kwargs)       
  • anuga_core/source/anuga/fit_interpolate/general_fit_interpolate.py

    r4648 r4652  
    3838
    3939# tests fail if 2 is used
    40 MAX_VERTICES_PER_CELL = 30
     40MAX_VERTICES_PER_CELL = 8
    4141
    4242class FitInterpolate:
  • anuga_core/source/anuga/fit_interpolate/ticket178_benchmark.py

    r4651 r4652  
    1717is_fit_list = [True, False]
    1818num_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]
    2020max_points_per_cell_list = [2,4,8,16,30,64]
    2121use_file_type_list = ['pts'] #'pts'
    2222#num_of_points_list = [10]
    23 maxArea_list = [ 0.008]
    24 max_points_per_cell_list = [30]
     23maxArea_list = [ 0.008, 0.0016]
     24max_points_per_cell_list = [4]
    2525
    2626fd = open(ofile,'a')
Note: See TracChangeset for help on using the changeset viewer.