Ignore:
Timestamp:
Aug 21, 2006, 4:10:14 PM (19 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

Location:
inundation-numpy-branch/fit_interpolate
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • inundation-numpy-branch/fit_interpolate/benchmark_least_squares.py

    r3437 r3514  
    2121from random import seed, random
    2222
    23 from pyvolution.least_squares import Interpolation
     23from anuga.pyvolution.least_squares import Interpolation
    2424from pmesh.mesh import Mesh
    2525
  • inundation-numpy-branch/fit_interpolate/interpolate.py

    r2504 r3514  
    2323     ArrayType, allclose, take, NewAxis
    2424
    25 from pyvolution.mesh import Mesh
    26 from utilities.sparse import Sparse, Sparse_CSR
    27 from utilities.cg_solve import conjugate_gradient, VectorShapeError
     25from anuga.pyvolution.mesh import Mesh
     26from anuga.utilities.sparse import Sparse, Sparse_CSR
     27from anuga.utilities.cg_solve import conjugate_gradient, VectorShapeError
    2828from coordinate_transforms.geo_reference import Geo_reference
    29 from pyvolution.quad import build_quadtree
    30 from utilities.numerical_tools import ensure_numeric
    31 from utilities.polygon import inside_polygon
     29from anuga.pyvolution.quad import build_quadtree
     30from anuga.utilities.numerical_tools import ensure_numeric
     31from anuga.utilities.polygon import inside_polygon
    3232
    3333from search_functions import search_tree_of_vertices
     
    394394
    395395
    396         from util import mean, ensure_numeric
     396        from anuga.pyvolution.util import mean, ensure_numeric
    397397        from config import time_format
    398398        import types
     
    526526        from math import pi, cos, sin, sqrt
    527527        from Numeric import zeros, Float
    528         from util import mean       
     528        from anuga.pyvolution.util import mean       
    529529
    530530        if self.spatial is True:
  • inundation-numpy-branch/fit_interpolate/test_interpolate.py

    r2394 r3514  
    2020from coordinate_transforms.geo_reference import Geo_reference
    2121from shallow_water import Domain, Transmissive_boundary #, mean
    22 from util import mean
    23 from data_manager import get_dataobject
     22from anuga.pyvolution.util import mean
     23from anuga.pyvolution.data_manager import get_dataobject
    2424
    2525def distance(x, y):
     
    623623        #Check basic interpolation of one quantity using averaging
    624624        #(no interpolation points or spatial info)
    625         from util import mean       
     625        from anuga.pyvolution.util import mean       
    626626        I = Interpolation_interface(time, [mean(Q[0,:]),
    627627                                          mean(Q[1,:]),
Note: See TracChangeset for help on using the changeset viewer.