From 1d2aeda4726a4a5fa13a2579b35691c81f4e1091 Mon Sep 17 00:00:00 2001 From: Matthieu Schaller <matthieu.schaller@durham.ac.uk> Date: Wed, 28 Feb 2018 22:07:06 +0100 Subject: [PATCH] Also include the changes to the symmetry test. --- tests/testSymmetry.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/testSymmetry.c b/tests/testSymmetry.c index e7a7eda213..7a62f735b5 100644 --- a/tests/testSymmetry.c +++ b/tests/testSymmetry.c @@ -142,16 +142,16 @@ void test() { /* Call the symmetric version */ runner_iact_density(r2, dx, pi.h, pj.h, &pi, &pj, a, H); - runner_iact_chemistry(r2, dx, pi.h, pj.h, &pi, &pj); + runner_iact_chemistry(r2, dx, pi.h, pj.h, &pi, &pj, a, H); /* Call the non-symmetric version */ runner_iact_nonsym_density(r2, dx, pi2.h, pj2.h, &pi2, &pj2, a, H); - runner_iact_nonsym_chemistry(r2, dx, pi2.h, pj2.h, &pi2, &pj2); + runner_iact_nonsym_chemistry(r2, dx, pi2.h, pj2.h, &pi2, &pj2, a, H); dx[0] = -dx[0]; dx[1] = -dx[1]; dx[2] = -dx[2]; runner_iact_nonsym_density(r2, dx, pj2.h, pi2.h, &pj2, &pi2, a, H); - runner_iact_nonsym_chemistry(r2, dx, pj2.h, pi2.h, &pj2, &pi2); + runner_iact_nonsym_chemistry(r2, dx, pj2.h, pi2.h, &pj2, &pi2, a, H); /* Check that the particles are the same */ i_not_ok = memcmp(&pi, &pi2, sizeof(struct part)); -- GitLab