Skip to content

Commit

Permalink
Don't import different solvers under the same name.
Browse files Browse the repository at this point in the history
  • Loading branch information
ketch committed Nov 30, 2016
1 parent 4a5cef3 commit c374fae
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@
rp_solver_list_3d = []

# Import 1d Riemann solvers
from .advection_1D_py import advection_1D
from .vc_advection_1D_py import vc_advection_1D
from .acoustics_1D_py import acoustics_1D
from .burgers_1D_py import burgers_1D
from .shallow_1D_py import shallow_roe_1D, shallow_hll_1D, shallow_exact_1D
from .euler_1D_py import euler_roe_1D, euler_hll_1D, euler_hllc_1D, euler_exact_1D
from .nonlinear_elasticity_1D_py import nonlinear_elasticity_1D
from . import advection_1D_py
from . import vc_advection_1D_py
from . import acoustics_1D_py
from . import burgers_1D_py
from . import shallow_1D_py
from . import euler_1D_py
from . import nonlinear_elasticity_1D_py
from . import static

from . import acoustics_1D_constants
Expand Down

0 comments on commit c374fae

Please sign in to comment.