Changeset 3096
- Timestamp:
- Jun 6, 2006, 12:25:00 PM (19 years ago)
- Location:
- inundation
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
inundation/parallel/build_commun.py
r2909 r3096 29 29 30 30 import sys 31 import pypar31 from pypar_dist import pypar 32 32 33 33 from build_local import build_local_mesh -
inundation/parallel/documentation/code/RunParallelSwMerimbulaMetis.py
r3095 r3096 25 25 ######################################################### 26 26 import sys 27 import parallel.pypar aspypar # The Python-MPI interface27 from pypar_dist import pypar # The Python-MPI interface 28 28 import time 29 29 -
inundation/parallel/parallel_shallow_water.py
r3090 r3096 4 4 # FIXME: This should be removed. Set evironment variable PYTHONPATH to 5 5 # directory ...../anuga/inundation instead 6 sys.path.append('..'+sep+'pyvolution')6 #sys.path.append('..'+sep+'pyvolution') 7 7 8 8 """Class Parallel_Shallow_Water_Domain - … … 29 29 from pyvolution.shallow_water import * 30 30 from Numeric import zeros, Float, Int, ones, allclose, array 31 import pypar31 from pypar_dist import pypar 32 32 33 33 -
inundation/pypar_dist/__init__.py
r85 r3096 8 8 from pypar import __version__, __date__, __author__ 9 9 10 #Add path of package to PYTHONPATH to allow C-extension to be loaded 11 #import sys 12 #sys.path += __path__ 10 13 11 14
Note: See TracChangeset
for help on using the changeset viewer.