Ignore:
Timestamp:
Aug 21, 2006, 4:10:14 PM (18 years ago)
Author:
duncan
Message:

Hi all,
I'm doing a change in the anuga structure, moving the code to

\anuga_core\source\anuga

After you have done an svn update, the PYTHONPATH has to be changed to;
PYTHONPATH = anuga_core/source/

This is part of changes required to make installation of anuga quicker and reducing the size of our sandpits.

If any imports are broken, try fixing them. With adding anuga. to them for example. If this seems to have really broken things, email/phone me.

Cheers
Duncan

File:
1 edited

Legend:

Unmodified
Added
Removed
  • inundation-numpy-branch/pyvolution/test_data_manager.py

    r2526 r3514  
    55import copy
    66from Numeric import zeros, array, allclose, Float
    7 from utilities.numerical_tools import mean
     7from anuga.utilities.numerical_tools import mean
    88import tempfile
    99import os
    1010from Scientific.IO.NetCDF import NetCDFFile
    1111
    12 from data_manager import *
     12from anuga.pyvolution.data_manager import *
    1313from shallow_water import *
    1414from config import epsilon
    15 import data_manager
     15import anuga.pyvolution.data_manager
    1616
    1717from coordinate_transforms.geo_reference import Geo_reference
     
    25282528        #Import the example's file as a new domain
    25292529        ##########################################
    2530         from data_manager import sww2domain
     2530        from anuga.pyvolution.data_manager import sww2domain
    25312531        from Numeric import allclose
    25322532        import os
     
    26652665        #Import the file as a new domain
    26662666        ##################################
    2667         from data_manager import sww2domain
     2667        from anuga.pyvolution.data_manager import sww2domain
    26682668        from Numeric import allclose
    26692669        import os
     
    27032703
    27042704    #def test_weed(self):
    2705         from data_manager import weed
     2705        from anuga.pyvolution.data_manager import weed
    27062706
    27072707        coordinates1 = [[0.,0.],[1.,0.],[1.,1.],[1.,0.],[2.,0.],[1.,1.]]
     
    27762776        #Import the example's file as a new domain
    27772777        ##########################################
    2778         from data_manager import sww2domain
     2778        from anuga.pyvolution.data_manager import sww2domain
    27792779        from Numeric import allclose
    27802780        import os
     
    30773077        from Scientific.IO.NetCDF import NetCDFFile
    30783078
    3079         import data_manager
     3079        import anuga.pyvolution.data_manager
    30803080        #Write test asc file
    30813081        filename = tempfile.mktemp(".000")
Note: See TracChangeset for help on using the changeset viewer.