From 1af31c808793536e87f32db0ad1e9243d7a1cef7 Mon Sep 17 00:00:00 2001 From: Andreas Gattringer <andreas.gattringer@univie.ac.at> Date: Wed, 28 Jun 2023 21:25:21 +0200 Subject: [PATCH] butterflies: removed debug statement --- src/modules/butterflies/butterflies_populations.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/butterflies/butterflies_populations.c b/src/modules/butterflies/butterflies_populations.c index f47ede1..8480c84 100644 --- a/src/modules/butterflies/butterflies_populations.c +++ b/src/modules/butterflies/butterflies_populations.c @@ -100,7 +100,7 @@ void bf_cell_maturation(struct cats_grid *grid, struct cats_thread_info *ts, cat exit_cats(EXIT_FAILURE); } - printf("row %d col %d: suitability: %f, eggs: %f, reproduction rate %Lf\n", row, col, suit, eggs, reproduction_rate); + //printf("row %d col %d: suitability: %f, eggs: %f, reproduction rate %Lf\n", row, col, suit, eggs, reproduction_rate); if (reproduction_rate == 0) { data->eggs[row][col] = 0; -- GitLab