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

Remove the unusued TASK_VERBOSE lines.

parent bd44fc03
Branches
Tags
1 merge request!280Makes sure that the hierarchical tasks get timed properly even when they recurse
......@@ -175,10 +175,6 @@ void runner_do_grav_external(struct runner *r, struct cell *c, int timer) {
if (c->progeny[k] != NULL) runner_do_grav_external(r, c->progeny[k], 0);
} else {
#ifdef TASK_VERBOSE
OUT;
#endif
/* Loop over the gparts in this cell. */
for (int i = 0; i < gcount; i++) {
......@@ -223,10 +219,6 @@ void runner_do_cooling(struct runner *r, struct cell *c, int timer) {
if (c->progeny[k] != NULL) runner_do_cooling(r, c->progeny[k], 0);
} else {
#ifdef TASK_VERBOSE
OUT;
#endif
/* Loop over the parts in this cell. */
for (int i = 0; i < count; i++) {
......@@ -923,10 +915,6 @@ void runner_do_kick(struct runner *r, struct cell *c, int timer) {
return;
}
#ifdef TASK_VERBOSE
OUT;
#endif
int updated = 0, g_updated = 0;
int ti_end_min = max_nr_timesteps, ti_end_max = 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment