From 49013b6e45cdc924c4e6248aacbf8082854f429e Mon Sep 17 00:00:00 2001 From: Florian Forster Date: Fri, 11 Jul 2008 12:05:43 +0200 Subject: [PATCH] src/sn_population.c: Removed some debug messages. --- src/sn_population.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/sn_population.c b/src/sn_population.c index 1bfea20..55fb024 100644 --- a/src/sn_population.c +++ b/src/sn_population.c @@ -71,7 +71,7 @@ static int brute_force_minimize (sn_network_t *n_orig) int stage_index; int comparator_index; - printf ("brute_force_minimize: Running full fledged brute force optimization.\n"); + /* printf ("brute_force_minimize: Running full fledged brute force optimization.\n"); */ for (stage_index = 0; stage_index < SN_NETWORK_STAGE_NUM (n_orig); @@ -99,9 +99,11 @@ static int brute_force_minimize (sn_network_t *n_orig) status = sn_network_brute_force_check (n_copy); if (status == 0) { + /* printf ("brute_force_minimize: Removed a comparator " "(stage %i, comparator %i).\n", stage_index, comparator_index); + */ sn_stage_comparator_remove (s_orig, comparator_index); comparator_index--; @@ -193,7 +195,7 @@ int sn_population_push (sn_population_t *p, sn_network_t *n) pthread_mutex_lock (&p->lock); - if (p->best_rating >= rating) + if (p->best_rating >= (rating - 4)) { pthread_mutex_unlock (&p->lock); -- 2.11.0