Ignore:
Timestamp:
Sep 13, 2006, 3:50:23 PM (17 years ago)
Author:
ole
Message:

Removed all references to pyvolution in parallel code

File:
1 edited

Legend:

Unmodified
Added
Removed
  • anuga_core/source/anuga_parallel/test_parallel_sw.py

    r3514 r3579  
    1919
    2020from Numeric import array, zeros, Float, take, nonzero
    21 from anuga.pyvolution.shallow_water import Domain
    22 from anuga.pyvolution.shallow_water import Reflective_boundary as sw_reflective_boundary
    23 from anuga.pyvolution.shallow_water import Transmissive_boundary as sw_transmissive_boundary
     21from anuga.shallow_water import Domain
     22from anuga.shallow_water import Reflective_boundary as sw_reflective_boundary
     23from anuga.shallow_water import Transmissive_boundary as sw_transmissive_boundary
    2424from parallel_shallow_water import Parallel_Domain
    2525from parallel_shallow_water import Reflective_boundary as par_reflective_boundary
    2626from parallel_shallow_water import Transmissive_boundary as par_transmissive_boundary
    27 from anuga.pyvolution.pmesh2domain import pmesh_to_domain_instance
     27from anuga.abstract_2d_finite_volumes.pmesh2domain\
     28     import pmesh_to_domain_instance
     29
    2830from anuga.utilities.norms import *
    2931from anuga.utilities.util_ext import double_precision
     
    4648        return self.h*((x>self.x0)&(x<self.x1))
    4749
    48 sys.path.append(".." + os.sep + "pyvolution")
    4950
    5051def parallel_test():
Note: See TracChangeset for help on using the changeset viewer.