Changeset 5863


Ignore:
Timestamp:
Oct 24, 2008, 4:39:11 PM (15 years ago)
Author:
ole
Message:

cosmetics

Location:
anuga_core/source/anuga
Files:
2 edited

Legend:

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

    r5862 r5863  
    10751075        # Use caching to reuse interpolation information
    10761076        from anuga.fit_interpolate.interpolate import interpolate
    1077         return interpolate(vertex_coordinates, triangles, vertex_values, interpolation_points,
     1077       
     1078        return interpolate(vertex_coordinates,
     1079                           triangles,
     1080                           vertex_values,
     1081                           interpolation_points,
    10781082                           use_cache=True,
    10791083                           verbose=verbose)
  • anuga_core/source/anuga/fit_interpolate/interpolate.py

    r5862 r5863  
    103103   
    104104   
    105     Note: This function is a simple shortcut for case where interpolation matrix is unnecessary
    106     Note: This function does not take blocking into account, but allows caching.
     105    Note: This function is a simple shortcut for case where
     106    interpolation matrix is unnecessary
     107    Note: This function does not take blocking into account,
     108    but allows caching.
    107109   
    108110    """
Note: See TracChangeset for help on using the changeset viewer.