From fe3ff0aaf69fd8f902137fb388e9bf01d3ebfbbc Mon Sep 17 00:00:00 2001
From: Matthieu Schaller <matthieu.schaller@durham.ac.uk>
Date: Thu, 7 Sep 2017 22:42:06 +0200
Subject: [PATCH] Removed debugging line that skipped the ghosts

---
 src/runner.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/runner.c b/src/runner.c
index 3eb41ea355..dd3f3c8e4e 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;
 
-- 
GitLab