Ignore:
Timestamp:
Dec 11, 2007, 5:01:43 PM (16 years ago)
Author:
ole
Message:

Removed the less important output for fit and polygon to address ticket:238

File:
1 edited

Legend:

Unmodified
Added
Removed
  • anuga_core/source/anuga/fit_interpolate/fit.py

    r4861 r4882  
    262262             AtA = self.AtA #Did this for speed, did ~nothing
    263263        self.point_count += point_coordinates.shape[0]
    264         #print "_build_matrix_AtA_Atz - self.point_count", self.point_count
    265         if verbose: print 'Getting indices inside mesh boundary'
    266         #print 'point_coordinates.shape', point_coordinates.shape         
    267         #print 'self.mesh.get_boundary_polygon()',\
    268         #      self.mesh.get_boundary_polygon()
     264
     265        #if verbose: print 'Getting indices inside mesh boundary'
    269266
    270267        inside_poly_indices, outside_poly_indices  = \
     
    281278        triangles = self.mesh.triangles #Did this for speed, did ~nothing
    282279        for d, i in enumerate(inside_poly_indices):
    283             #For each data_coordinate point
    284             if verbose and d%((n+10)/10)==0: print 'Doing %d of %d' %(d, n)
     280            # For each data_coordinate point
     281            # if verbose and d%((n+10)/10)==0: print 'Doing %d of %d' %(d, n)
    285282            x = point_coordinates[i]
    286283            element_found, sigma0, sigma1, sigma2, k = \
Note: See TracChangeset for help on using the changeset viewer.