Changeset 1922
- Timestamp:
- Oct 14, 2005, 12:02:18 PM (19 years ago)
- Location:
- inundation/pyvolution
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
inundation/pyvolution/quantity.py
r1916 r1922 1195 1195 1196 1196 1197 import compile1197 from utilities import compile 1198 1198 if compile.can_use_C_extension('quantity_ext.c'): 1199 1199 #Replace python version with c implementations -
inundation/pyvolution/shallow_water.py
r1870 r1922 1759 1759 1760 1760 1761 import compile1761 from utilities import compile 1762 1762 if compile.can_use_C_extension('shallow_water_ext.c'): 1763 1763 #Replace python version with c implementations -
inundation/pyvolution/sparse.py
r1849 r1922 370 370 371 371 #Setup for C extensions 372 import compile372 from utilities import compile 373 373 if compile.can_use_C_extension('sparse_ext.c'): 374 374 #Replace python version with c implementation -
inundation/pyvolution/util.py
r1919 r1922 552 552 #Initialise module 553 553 554 import compile554 from utilities import compile 555 555 if compile.can_use_C_extension('util_ext.c'): 556 556 from util_ext import gradient, gradient2#, point_on_line
Note: See TracChangeset
for help on using the changeset viewer.