Changeset 4882 for anuga_core/source/anuga/fit_interpolate/fit.py
- Timestamp:
- Dec 11, 2007, 5:01:43 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_core/source/anuga/fit_interpolate/fit.py
r4861 r4882 262 262 AtA = self.AtA #Did this for speed, did ~nothing 263 263 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' 269 266 270 267 inside_poly_indices, outside_poly_indices = \ … … 281 278 triangles = self.mesh.triangles #Did this for speed, did ~nothing 282 279 for d, i in enumerate(inside_poly_indices): 283 # For each data_coordinate point284 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) 285 282 x = point_coordinates[i] 286 283 element_found, sigma0, sigma1, sigma2, k = \
Note: See TracChangeset
for help on using the changeset viewer.