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
  • anuga_core/source/anuga/pmesh/mesh_interface.py

    r3196 r3514  
    44#!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
    55
    6 from coordinate_transforms.geo_reference import Geo_reference,DEFAULT_ZONE
    7 from utilities.polygon import  point_in_polygon ,populate_polygon
    8 from utilities.numerical_tools import ensure_numeric
     6from anuga.coordinate_transforms.geo_reference import Geo_reference,DEFAULT_ZONE
     7from anuga.utilities.polygon import  point_in_polygon ,populate_polygon
     8from anuga.utilities.numerical_tools import ensure_numeric
    99from Numeric import Float
    10 from utilities.polygon import inside_polygon
     10from anuga.utilities.polygon import inside_polygon
    1111
    1212# This is due to pmesh being a package and a module and
    1313# the current dir being unknown
    1414try:
    15     from pmesh.mesh import Mesh
     15    from anuga.pmesh.mesh import Mesh
    1616except ImportError: 
    1717    from mesh import Mesh
Note: See TracChangeset for help on using the changeset viewer.