Changeset 7999
- Timestamp:
- Sep 3, 2010, 8:28:55 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/anuga_core/source/anuga/__init__.py
r7874 r7999 43 43 from anuga.file.ungenerate import load_ungenerate 44 44 45 from anuga.geometry.polygon import read_polygon, plot_polygons, polygon_area 45 from anuga.geometry.polygon import read_polygon, plot_polygons, polygon_area, \ 46 inside_polygon, polygon_area 46 47 from anuga.geometry.polygon_function import Polygon_function 47 48 48 49 from anuga.abstract_2d_finite_volumes.pmesh2domain import \ 49 50 pmesh_to_domain_instance 50 51 51 52 52 from anuga.utilities.system_tools import file_length 53 53 from anuga.utilities.sww_merge import sww_merge 54 54 from anuga.utilities.file_utils import copy_code_files 55 from anuga.utilities.numerical_tools import safe_acos as acos 55 56 56 57 from anuga.geometry.polygon import read_polygon … … 296 297 import logging as log 297 298 298 from anuga.config import use_psyco 299 from anuga.config import use_psyco, g, velocity_protection 299 300 if use_psyco: 300 301 # try using psyco if available … … 313 314 #psyco.background() # attempt to profile code - only compile most used 314 315 315 316 317 318 316 317 #--------------------------- 318 # Structures 319 #--------------------------- 320 from anuga.structures.structure_operator import Structure_operator 321 from anuga.structures.boyd_box_operator import Boyd_box_operator 322 from anuga.structures.boyd_pipe_operator import Boyd_pipe_operator 323 324 325
Note: See TracChangeset
for help on using the changeset viewer.