Changeset 8133


Ignore:
Timestamp:
Mar 9, 2011, 10:22:50 AM (14 years ago)
Author:
steve
Message:

Change import to base_operator

Location:
trunk/anuga_core/source/anuga
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/anuga_core/source/anuga/__init__.py

    r8129 r8133  
    124124from anuga.shallow_water.sww_interrogate import get_flow_through_cross_section
    125125   
     126
     127
     128#---------------------------
     129# Operators
     130#---------------------------
     131from anuga.operators.base_operator import Operator
     132
     133#---------------------------
     134# Structures
     135#---------------------------
     136from anuga.structures.structure_operator import Structure_operator
     137from anuga.structures.boyd_box_operator import Boyd_box_operator
     138from anuga.structures.boyd_pipe_operator import Boyd_pipe_operator
     139
     140#---------------------------
     141# User Access Functions
     142#---------------------------
     143
     144from anuga.utilities.system_tools import get_user_name, get_host_name, get_revision_number
     145
     146
     147
    126148
    127149#-----------------------------
     
    198220    need to be closed, but their points must be specified in a counter-clockwise
    199221    order.
    200        
    201         hole_tags  is a list of tag segment dictionaries.
     222
     223    hole_tags  is a list of tag segment dictionaries.
    202224
    203225    This function does not allow segments to share points - use underlying
     
    321343       
    322344
    323 #---------------------------
    324 # Operators
    325 #---------------------------
    326 from anuga.operators.operator import Operator
    327 
    328 #---------------------------
    329 # Structures
    330 #---------------------------
    331 from anuga.structures.structure_operator import Structure_operator
    332 from anuga.structures.boyd_box_operator import Boyd_box_operator
    333 from anuga.structures.boyd_pipe_operator import Boyd_pipe_operator
    334 
    335 #---------------------------
    336 # User Access Functions
    337 #---------------------------
    338 
    339 from anuga.utilities.system_tools import get_user_name, get_host_name, get_revision_number
    340 
    341 
    342 
     345
     346
     347
  • trunk/anuga_core/source/anuga/operators/__init__.py

    r8128 r8133  
    11"""
    2     Generic utility classes not concerned with the specifics of ANUGA.
     2    operator classes for ANUGA.
    33   
    4     Utility functions for managing files, numerical constants, and generic
    5     mathematical and programming idioms.
    64"""
    75
     
    119import sys
    1210sys.path += __path__
     11
Note: See TracChangeset for help on using the changeset viewer.