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

remove log statement

parent 7b9d9b5f
No related branches found
No related tags found
No related merge requests found
...@@ -36,7 +36,6 @@ double *butterflies_matrix(struct cats_configuration *conf, struct lambda_parame ...@@ -36,7 +36,6 @@ double *butterflies_matrix(struct cats_configuration *conf, struct lambda_parame
// that survive and become adult has to be the reproduction rate divided by the female fraction divided by the number of eggs // that survive and become adult has to be the reproduction rate divided by the female fraction divided by the number of eggs
cats_dt_rates eggs_to_adults_rate = bf_egg_to_adult_survival_rate(reproduction_rate, local_eggs, female_fraction); cats_dt_rates eggs_to_adults_rate = bf_egg_to_adult_survival_rate(reproduction_rate, local_eggs, female_fraction);
cats_dt_rates result = local_eggs * eggs_to_adults_rate * female_fraction; cats_dt_rates result = local_eggs * eggs_to_adults_rate * female_fraction;
log_message(LOG_INFO, "scale factor %Lf: eggs_to_adults_rate %Lf", l_param->grid->param.scale_factor, eggs_to_adults_rate);
double *matrix = calloc_or_die(1, sizeof(double)); double *matrix = calloc_or_die(1, sizeof(double));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment