From 3b1afe6f459f38a619f581f3cc648ef3deb0f81b Mon Sep 17 00:00:00 2001 From: Matthieu Schaller <matthieu.schaller@durham.ac.uk> Date: Fri, 4 Dec 2015 12:52:13 +0000 Subject: [PATCH] No debug messages --- src/engine.c | 2 ++ src/runner.c | 8 +++----- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/engine.c b/src/engine.c index 1018552a1f..7dd11d7bd2 100644 --- a/src/engine.c +++ b/src/engine.c @@ -1070,6 +1070,8 @@ void engine_maketasks(struct engine *e) { /* engine_addtasks_grav(e, &cells[k], up, down); */ /* } */ + message("nb tasks: %d", sched->nr_tasks); + /* Count the number of tasks associated with each cell and store the density tasks in each cell, and make each sort depend on the sorts of its progeny. */ diff --git a/src/runner.c b/src/runner.c index 83a9508dd4..4b8c8f4c55 100644 --- a/src/runner.c +++ b/src/runner.c @@ -712,13 +712,11 @@ void runner_doghost(struct runner *r, struct cell *c) { /* Climb up the cell hierarchy. */ for (finger = c; finger != NULL; finger = finger->parent) { - - message("aa"); fflush(stdout); /* Run through this cell's density interactions. */ for (struct link *l = finger->density; l != NULL; l = l->next) { - message("link: %p next: %p", l, l->next); fflush(stdout); + //message("link: %p next: %p", l, l->next); fflush(stdout); /* Self-interaction? */ if (l->t->type == task_type_self) @@ -727,7 +725,7 @@ void runner_doghost(struct runner *r, struct cell *c) { /* Otherwise, pair interaction? */ else if (l->t->type == task_type_pair) { - message("pair"); + //message("pair"); /* Left or right? */ if (l->t->ci == finger) @@ -742,7 +740,7 @@ void runner_doghost(struct runner *r, struct cell *c) { /* Otherwise, sub interaction? */ else if (l->t->type == task_type_sub) { - message("sub"); + //message("sub"); /* Left or right? */ if (l->t->ci == finger) -- GitLab