Skip to content
Snippets Groups Projects
Commit 1d2aeda4 authored by Matthieu Schaller's avatar Matthieu Schaller
Browse files

Also include the changes to the symmetry test.

parent 2f7029de
Branches
Tags
1 merge request!509Cosmological time integration
......@@ -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));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment