Skip to content
Snippets Groups Projects
Commit 95069e01 authored by Pietro Incardona's avatar Pietro Incardona
Browse files

Fixing installation

parent 8b40f669
No related branches found
No related tags found
No related merge requests found
openfpm_vcluster @ b07008bc
Subproject commit 3235f6c694ed30821174dd4c40279ae374b37a40 Subproject commit b07008bc675acf5718d8b9f396a274af8e9621c1
...@@ -619,6 +619,7 @@ void Test3D_dup(const Box<3,float> & domain, long int k) ...@@ -619,6 +619,7 @@ void Test3D_dup(const Box<3,float> & domain, long int k)
long int big_step = k / 30; long int big_step = k / 30;
big_step = (big_step == 0)?1:big_step; big_step = (big_step == 0)?1:big_step;
long int small_step = 1; long int small_step = 1;
long int k_old = k;
Vcluster & v_cl = *global_v_cluster; Vcluster & v_cl = *global_v_cluster;
...@@ -675,6 +676,8 @@ void Test3D_dup(const Box<3,float> & domain, long int k) ...@@ -675,6 +676,8 @@ void Test3D_dup(const Box<3,float> & domain, long int k)
BOOST_REQUIRE_EQUAL(check,true); BOOST_REQUIRE_EQUAL(check,true);
} }
k = k_old;
// 3D test // 3D test
for ( ; k >= 2 ; k-= (k > 2*big_step)?big_step:small_step ) for ( ; k >= 2 ; k-= (k > 2*big_step)?big_step:small_step )
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment