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

Fixing for complex IO

parent e2350ecd
No related branches found
No related tags found
No related merge requests found
Pipeline #3481 passed
...@@ -363,7 +363,7 @@ int main(int argc, char* argv[]) ...@@ -363,7 +363,7 @@ int main(int argc, char* argv[])
size_t sz[3] = {10,10,10}; size_t sz[3] = {10,10,10};
// domain // domain
Box<3,float> box({0.0,0.0,0.0},{1.0,1.0,1.0}); Box<3,double> box({0.0,0.0,0.0},{1.0,1.0,1.0});
// Boundary conditions // Boundary conditions
size_t bc[3]={PERIODIC,PERIODIC,PERIODIC}; size_t bc[3]={PERIODIC,PERIODIC,PERIODIC};
...@@ -371,7 +371,7 @@ int main(int argc, char* argv[]) ...@@ -371,7 +371,7 @@ int main(int argc, char* argv[])
//! \cond [remove_lower_part] \endcond //! \cond [remove_lower_part] \endcond
// ghost, big enough to contain the interaction radius // ghost, big enough to contain the interaction radius
Ghost<3,float> ghost(r_gskin); Ghost<3,double> ghost(r_gskin);
ghost.setLow(0,0.0); ghost.setLow(0,0.0);
ghost.setLow(1,0.0); ghost.setLow(1,0.0);
ghost.setLow(2,0.0); ghost.setLow(2,0.0);
......
openfpm_io @ 18e22b84
Subproject commit 14a7eed8a4637eace469129e924e2ab5ce540bd9 Subproject commit 18e22b8448daf4fac4069627d2b8975c73c66fda
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