Skip to content

Commit 282fb28

Browse files
committed
fix exports
1 parent f61ae83 commit 282fb28

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

src/equations/compressible_euler_internal_energy_with_gravity_2d.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -104,8 +104,8 @@ Entropy conserving, total energy conserving and kinetic energy preserving two-po
104104
[DOI: 10.48550/arXiv.2603.18978](https://arxiv.org/abs/2603.18978)
105105
"""
106106
@inline function flux_conservative_etec(u_ll, u_rr,
107-
normal_direction::AbstractVector,
108-
equations::CompressibleEulerInternalEnergyEquationsWithGravity2D)
107+
normal_direction::AbstractVector,
108+
equations::CompressibleEulerInternalEnergyEquationsWithGravity2D)
109109
# Unpack left and right state
110110
rho_ll, v1_ll, v2_ll, p_ll, phi_ll = cons2prim(u_ll, equations)
111111
rho_rr, v1_rr, v2_rr, p_rr, phi_rr = cons2prim(u_rr, equations)
@@ -138,8 +138,8 @@ Nonconservative part of the entropy conserving, total energy conserving and kine
138138
[DOI: 10.48550/arXiv.2603.18978](https://arxiv.org/abs/2603.18978)
139139
"""
140140
@inline function flux_nonconservative_etec(u_ll, u_rr,
141-
normal_direction::AbstractVector,
142-
equations::CompressibleEulerInternalEnergyEquationsWithGravity2D)
141+
normal_direction::AbstractVector,
142+
equations::CompressibleEulerInternalEnergyEquationsWithGravity2D)
143143

144144
# Unpack left and right state
145145
rho_ll, v1_ll, v2_ll, p_ll, phi_ll = cons2prim(u_ll, equations)

test/test_type.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -595,12 +595,12 @@ end
595595
normal_direction = SVector(one(RealT), one(RealT))
596596

597597
@test eltype(@inferred flux_nonconservative_etec(u_ll, u_rr,
598-
normal_direction,
599-
equations)) ==
598+
normal_direction,
599+
equations)) ==
600600
RealT
601601
@test eltype(@inferred flux_conservative_etec(u_ll, u_rr,
602-
normal_direction,
603-
equations)) ==
602+
normal_direction,
603+
equations)) ==
604604
RealT
605605
@test eltype(@inferred flux_nonconservative_es(u_ll, u_rr,
606606
normal_direction,

0 commit comments

Comments
 (0)