Skip to content
Snippets Groups Projects
Commit bfc75c18 authored by Andreas Gattringer's avatar Andreas Gattringer
Browse files

butterflies: removed debug printf

parent 4eeeeed8
No related branches found
No related tags found
No related merge requests found
...@@ -95,7 +95,7 @@ void bf_cell_maturation(struct cats_grid *grid, struct cats_thread_info *ts, cat ...@@ -95,7 +95,7 @@ void bf_cell_maturation(struct cats_grid *grid, struct cats_thread_info *ts, cat
cats_dt_population adults = poisson(ts->rng, eggs * survival); cats_dt_population adults = poisson(ts->rng, eggs * survival);
assert(adults >= 0); assert(adults >= 0);
cats_dt_environment suit = get_suitability(grid, row, col); cats_dt_environment suit = get_suitability(grid, row, col);
printf("ABCD,%d,%d,%0.3f\n", (int) orig_eggs, adults, suit); //printf("ABCD,%d,%d,%0.3f\n", (int) orig_eggs, adults, suit);
set_population_ignore_cc(grid, row, col, adults); set_population_ignore_cc(grid, row, col, adults);
if (adults > max_cc * 10) { if (adults > max_cc * 10) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment