From c32076505ed62c166572e74910cdae9e0f5dd219 Mon Sep 17 00:00:00 2001 From: Thomas Preud'homme Date: Tue, 4 Sep 2012 19:56:44 +0200 Subject: [PATCH] [pipepar] Improve log readability for lattice Delimit beginning and end of one lattice computation in order to easily check the logs. --- pipepar/lattice.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pipepar/lattice.c b/pipepar/lattice.c index f7583e4..9472550 100644 --- a/pipepar/lattice.c +++ b/pipepar/lattice.c @@ -496,8 +496,10 @@ int main(int argc, char *argv[]) if (analyse_options(argc, argv)) exit(EXIT_FAILURE); + printf("-------- Beginning of computation --------\n"); if (compute_metrics()) exit(EXIT_FAILURE); + printf("-------- End of computation --------\n"); exit(EXIT_SUCCESS); }