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
  • development/euler/euler.py

    r2494 r3514  
    8888
    8989        #Reduction operation for get_vertex_values
    90         from util import mean
     90        from anuga.pyvolution.util import mean
    9191        self.reduction = mean
    9292        #self.reduction = min  #Looks better near steep slopes
     
    204204        """
    205205
    206         import data_manager
     206        import anuga.pyvolution.data_manager
    207207
    208208        #Initialise writer
     
    305305    """
    306306
    307     from pyvolution.config import g, epsilon
     307    from anuga.pyvolution.config import g, epsilon
    308308    from math import sqrt
    309309    from Numeric import array
     
    10361036    """
    10371037
    1038     from util import gradient
     1038    from anuga.pyvolution.util import gradient
    10391039    from Numeric import zeros, Float, array, sum
    10401040
     
    17161716
    17171717
    1718 from utilities import compile
     1718from anuga.utilities import compile
    17191719if compile.can_use_C_extension('shallow_water_ext.c'):
    17201720    #Replace python version with c implementations
Note: See TracChangeset for help on using the changeset viewer.