Skip to content
Snippets Groups Projects
Commit 3b1afe6f authored by Matthieu Schaller's avatar Matthieu Schaller
Browse files

No debug messages

parent 81911a9e
Branches
Tags
2 merge requests!136Master,!79First version of the multiple time-stepping
......@@ -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. */
......
......@@ -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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment