Changeset 5863
- Timestamp:
- Oct 24, 2008, 4:39:11 PM (16 years ago)
- Location:
- anuga_core/source/anuga
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_core/source/anuga/abstract_2d_finite_volumes/quantity.py
r5862 r5863 1075 1075 # Use caching to reuse interpolation information 1076 1076 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, 1078 1082 use_cache=True, 1079 1083 verbose=verbose) -
anuga_core/source/anuga/fit_interpolate/interpolate.py
r5862 r5863 103 103 104 104 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. 107 109 108 110 """
Note: See TracChangeset
for help on using the changeset viewer.