Skip to content
Snippets Groups Projects
Commit 0bed4834 authored by Bert Vandenbroucke's avatar Bert Vandenbroucke
Browse files

Added missing SHADOWFAX_SPH and GIZMO_SPH files to src/Makefile.am. Removed...

Added missing SHADOWFAX_SPH and GIZMO_SPH files to src/Makefile.am. Removed unused counter from riemann_solve_brent().
parent b926c898
No related branches found
No related tags found
1 merge request!325Voronoi tests work now.
...@@ -77,8 +77,31 @@ nobase_noinst_HEADERS = align.h approx_math.h atomic.h cycle.h error.h inline.h ...@@ -77,8 +77,31 @@ nobase_noinst_HEADERS = align.h approx_math.h atomic.h cycle.h error.h inline.h
hydro/Gadget2/hydro_debug.h hydro/Gadget2/hydro_part.h \ hydro/Gadget2/hydro_debug.h hydro/Gadget2/hydro_part.h \
hydro/PressureEntropy/hydro.h hydro/PressureEntropy/hydro_iact.h hydro/PressureEntropy/hydro_io.h \ hydro/PressureEntropy/hydro.h hydro/PressureEntropy/hydro_iact.h hydro/PressureEntropy/hydro_io.h \
hydro/PressureEntropy/hydro_debug.h hydro/PressureEntropy/hydro_part.h \ hydro/PressureEntropy/hydro_debug.h hydro/PressureEntropy/hydro_part.h \
hydro/Gizmo/hydro.h hydro/Gizmo/hydro_iact.h hydro/Gizmo/hydro_io.h \ hydro/Gizmo/hydro.h hydro/Gizmo/hydro_iact.h \
hydro/Gizmo/hydro_debug.h hydro/Gizmo/hydro_part.h \ hydro/Gizmo/hydro_io.h hydro/Gizmo/hydro_debug.h \
hydro/Gizmo/hydro_part.h \
hydro/Gizmo/hydro_gradients_gizmo.h \
hydro/Gizmo/hydro_gradients.h \
hydro/Gizmo/hydro_gradients_sph.h \
hydro/Gizmo/hydro_slope_limiters_cell.h \
hydro/Gizmo/hydro_slope_limiters_face.h \
hydro/Gizmo/hydro_slope_limiters.h \
hydro/Shadowswift/hydro_debug.h \
hydro/Shadowswift/hydro_gradients.h hydro/Shadowswift/hydro.h \
hydro/Shadowswift/hydro_iact.h \
hydro/Shadowswift/hydro_io.h \
hydro/Shadowswift/hydro_part.h \
hydro/Shadowswift/hydro_slope_limiters_cell.h \
hydro/Shadowswift/hydro_slope_limiters_face.h \
hydro/Shadowswift/hydro_slope_limiters.h \
hydro/Shadowswift/voronoi1d_algorithm.h \
hydro/Shadowswift/voronoi1d_cell.h \
hydro/Shadowswift/voronoi2d_algorithm.h \
hydro/Shadowswift/voronoi2d_cell.h \
hydro/Shadowswift/voronoi3d_algorithm.h \
hydro/Shadowswift/voronoi3d_cell.h \
hydro/Shadowswift/voronoi_algorithm.h \
hydro/Shadowswift/voronoi_cell.h \
riemann/riemann_hllc.h riemann/riemann_trrs.h \ riemann/riemann_hllc.h riemann/riemann_trrs.h \
riemann/riemann_exact.h riemann/riemann_vacuum.h \ riemann/riemann_exact.h riemann/riemann_vacuum.h \
stars.h stars_io.h \ stars.h stars_io.h \
......
...@@ -206,7 +206,6 @@ __attribute__((always_inline)) INLINE static float riemann_solve_brent( ...@@ -206,7 +206,6 @@ __attribute__((always_inline)) INLINE static float riemann_solve_brent(
float fa, fb, fc, fs; float fa, fb, fc, fs;
float tmp, tmp2; float tmp, tmp2;
int mflag; int mflag;
int i;
a = lower_limit; a = lower_limit;
b = upper_limit; b = upper_limit;
...@@ -243,7 +242,6 @@ __attribute__((always_inline)) INLINE static float riemann_solve_brent( ...@@ -243,7 +242,6 @@ __attribute__((always_inline)) INLINE static float riemann_solve_brent(
c = a; c = a;
fc = fa; fc = fa;
mflag = 1; mflag = 1;
i = 0;
while (!(fb == 0.0f) && (fabs(a - b) > error_tol * 0.5f * (a + b))) { while (!(fb == 0.0f) && (fabs(a - b) > error_tol * 0.5f * (a + b))) {
if ((fa != fc) && (fb != fc)) /* Inverse quadratic interpolation */ if ((fa != fc) && (fb != fc)) /* Inverse quadratic interpolation */
...@@ -286,7 +284,6 @@ __attribute__((always_inline)) INLINE static float riemann_solve_brent( ...@@ -286,7 +284,6 @@ __attribute__((always_inline)) INLINE static float riemann_solve_brent(
fa = fb; fa = fb;
fb = tmp; fb = tmp;
} }
i++;
} }
return b; return b;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment