Skip to content
Snippets Groups Projects
Commit 8669b3b5 authored by James Willis's avatar James Willis
Browse files

Set a2_Hubble to zero to match brute force implementation.

parent 013e52d6
No related branches found
No related tags found
1 merge request!510Cosmo vec
...@@ -602,9 +602,9 @@ void test_force_interactions(struct part test_part, struct part *parts, ...@@ -602,9 +602,9 @@ void test_force_interactions(struct part test_part, struct part *parts,
const ticks vec_tic = getticks(); const ticks vec_tic = getticks();
/* Set cosmological variables to one. */ /* Set cosmological variables. */
const vector v_fac_mu = vector_set1(1.f); const vector v_fac_mu = vector_set1(1.f);
const vector v_a2_Hubble = vector_set1(1.f); const vector v_a2_Hubble = vector_set1(0.f);
for (size_t i = 0; i < count; i += num_vec_proc * VEC_SIZE) { for (size_t i = 0; i < count; i += num_vec_proc * VEC_SIZE) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment