Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

rename riemann.H -> riemann_type.H #2889

Merged
merged 14 commits into from
Jun 27, 2024
Merged
2 changes: 1 addition & 1 deletion Source/hydro/Make.package
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ CEXE_headers += HLL_solvers.H
CEXE_headers += riemann_solvers.H
CEXE_headers += riemann_2shock_solvers.H
CEXE_sources += riemann_util.cpp
CEXE_headers += riemann.H
CEXE_headers += riemann_type.H
CEXE_headers += slope.H
CEXE_headers += reconstruction.H
CEXE_sources += trace_plm.cpp
Expand Down
2 changes: 1 addition & 1 deletion Source/hydro/riemann_2shock_solvers.H
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

using namespace amrex::literals;

#include <riemann.H>
#include <riemann_type.H>
#ifdef RADIATION
#include <Radiation.H>
#include <rad_util.H>
Expand Down
2 changes: 1 addition & 1 deletion Source/hydro/riemann_solvers.H
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#define riemann_solvers_H

#include <Castro_util.H>
#include <riemann.H>
#include <riemann_type.H>
#include <riemann_2shock_solvers.H>
#ifdef HYBRID_MOMENTUM
#include <hybrid.H>
Expand Down
File renamed without changes.
2 changes: 0 additions & 2 deletions Source/hydro/riemann_util.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@

using namespace amrex;

#include <riemann.H>

void
Castro::compute_flux_from_q(const Box& bx,
Array4<Real const> const& qint,
Expand Down