From 65c8cbe2cfe2d9e2864258dbba35f70664bbda64 Mon Sep 17 00:00:00 2001 From: Matthieu Schaller <matthieu.schaller@durham.ac.uk> Date: Thu, 15 Mar 2018 15:56:47 +0100 Subject: [PATCH] Do not print the time spent initialising the cosmology tables. --- src/cosmology.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/cosmology.c b/src/cosmology.c index 23fcddcf61..a5034240d0 100644 --- a/src/cosmology.c +++ b/src/cosmology.c @@ -290,8 +290,6 @@ double time_integrand(double a, void *param) { */ void cosmology_init_tables(struct cosmology *c) { - const ticks tic = getticks(); - #ifdef HAVE_LIBGSL /* Retrieve some constants */ @@ -379,9 +377,6 @@ void cosmology_init_tables(struct cosmology *c) { error("Code not compiled with GSL. Can't compute cosmology integrals."); #endif - - message("took %.3f %s.", clocks_from_ticks(getticks() - tic), - clocks_getunit()); } /** -- GitLab