Ignore:
Timestamp:
Jan 31, 2009, 4:02:38 AM (16 years ago)
Author:
ole
Message:

Cleanup and comments in regard to ticket:314

File:
1 edited

Legend:

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

    r6244 r6252  
    267267                                        self.mesh_boundary_polygon,
    268268                                        closed=True,
    269                                         verbose=False) # Too much output if True
    270 
     269                                        verbose=False) # Suppress output
    271270       
    272271        n = len(inside_indices)
     
    301300                        AtA[j,k] += sigmas[j]*sigmas[k]
    302301            else:
    303                 # FIXME(Ole): This is the message referred to in ticket:314
    304                
    305302                flag = is_inside_polygon(x,
    306303                                         self.mesh_boundary_polygon,
    307304                                         closed=True,
    308                                          verbose=False) # Too much output if True               
     305                                         verbose=False) # Suppress output
    309306                msg = 'Point (%f, %f) is not inside mesh boundary' % tuple(x)
    310307                assert flag is True, msg               
    311308               
     309                # FIXME(Ole): This is the message referred to in ticket:314
    312310                minx = min(self.mesh_boundary_polygon[:,0])
    313311                maxx = max(self.mesh_boundary_polygon[:,0])               
     
    317315                msg += 'Mesh boundary extent is (%.f, %.f), (%.f, %.f)'\
    318316                    % (minx, maxx, miny, maxy)
     317                raise RuntimeError, msg
    319318               
    320 
    321                 raise Exception(msg)
    322319            self.AtA = AtA
    323320
Note: See TracChangeset for help on using the changeset viewer.