diff --git a/src/runner.c b/src/runner.c index 3eb41ea355aad39d64da13b81f806664a36de314..dd3f3c8e4e59af15485ece16665ffdae85703117 100644 --- a/src/runner.c +++ b/src/runner.c @@ -632,9 +632,9 @@ void runner_do_ghost(struct runner *r, struct cell *c, int timer) { const struct engine *e = r->e; const struct space *s = e->s; const float hydro_h_max = e->hydro_properties->h_max; - const float eps = e->hydro_properties->h_tolerance * 1e10; + const float eps = e->hydro_properties->h_tolerance; const float hydro_eta_dim = - pow_dimension(e->hydro_properties->eta_neighbours); + pow_dimension(e->hydro_properties->eta_neighbours); const int max_smoothing_iter = e->hydro_properties->max_smoothing_iterations; int redo = 0, count = 0;