Last change
on this file since 6982 was
6553,
checked in by rwilson, 16 years ago
|
Merged trunk into numpy, all tests and validations work.
|
File size:
666 bytes
|
Rev | Line | |
---|
[3659] | 1 | """Make directory available as a Python package |
---|
| 2 | """ |
---|
| 3 | |
---|
| 4 | # Add path of package to PYTHONPATH to allow C-extensions to be loaded |
---|
| 5 | import sys |
---|
| 6 | sys.path += __path__ |
---|
| 7 | |
---|
| 8 | # Make selected classes available directly |
---|
| 9 | from shallow_water_domain import Domain,\ |
---|
[6178] | 10 | Transmissive_boundary, Reflective_boundary,\ |
---|
| 11 | Dirichlet_boundary, Time_boundary, File_boundary,\ |
---|
| 12 | Transmissive_momentum_set_stage_boundary,\ |
---|
| 13 | Dirichlet_discharge_boundary,\ |
---|
[6553] | 14 | Field_boundary,\ |
---|
| 15 | Transmissive_stage_zero_momentum_boundary |
---|
[3659] | 16 | |
---|
| 17 | |
---|
[6045] | 18 | # FIXME (Ole): Deprecate |
---|
| 19 | from shallow_water_domain import Transmissive_Momentum_Set_Stage_boundary |
---|
| 20 | from shallow_water_domain import Dirichlet_Discharge_boundary |
---|
| 21 | |
---|
Note: See
TracBrowser
for help on using the repository browser.