From 410a6030c8746d4369842cb0e0e35606c7ea4130 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Sun, 9 Mar 2014 11:29:12 +0000 Subject: [PATCH] rename {n,m}_over_best to {n,m}_max_frags to reflect way used in most of the code --- main.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/main.c b/main.c index 69f56d1..de880e9 100644 --- a/main.c +++ b/main.c @@ -101,7 +101,7 @@ static double best; static glp_prob *best_prob; static AdjWord *best_adjmatrix; -static int n_over_best, m_over_best; +static int n_max_frags, m_max_frags; static int *weight; static unsigned printcounter; @@ -119,8 +119,8 @@ static void progress_eol(void) { static void set_best(double new_best) { best = new_best; - n_over_best = floor(n / best); - m_over_best = floor(m / best); + n_max_frags = floor(n / best); + m_max_frags = floor(m / best); } /*----- multicore support -----*/ @@ -356,8 +356,8 @@ static void prep(void) { glp_term_out(GLP_OFF); setlinebuf(stderr); weight = calloc(sizeof(*weight), m); assert(weight); - n_over_best = INT_MAX; - m_over_best = INT_MAX; + n_max_frags = INT_MAX; + m_max_frags = INT_MAX; } #if 0 @@ -379,7 +379,7 @@ static int count_set_adj_bits(AdjWord w) { static int totalfrags; static bool maxhamweight_ok(void) { - return maxhamweight <= m_over_best; + return maxhamweight <= m_max_frags; } static bool preconsider_ok(int nwords, bool doprint) { @@ -391,7 +391,7 @@ static bool preconsider_ok(int nwords, bool doprint) { for (i=0, totalfrags=0; i m_over_best) { + if (frags > m_max_frags) { PRINTF(" too fine"); goto out; } @@ -628,7 +628,7 @@ static void iterate_recurse(int i, AdjWord min) { if (adjmatrix[i] & jbit) weight[j]++; for (int j = 0; j < m; j++) - if (weight[j] >= n_over_best) + if (weight[j] >= n_max_frags) goto takeout; iterate_recurse(i+1, adjmatrix[i]); -- 2.30.2