X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fadt%2Fbipartite.c;h=8c0f6286feba257f5991932af860231532e9ab9f;hb=52f5575dc678a5f7f1b3a078dcc46b1cdbaf5182;hp=ac781a4af49a82675a7ff9ed218405c5dfeb7f3a;hpb=32ea6ea0320f551448bb66e534e3351977464d42;p=libfirm diff --git a/ir/adt/bipartite.c b/ir/adt/bipartite.c index ac781a4af..8c0f6286f 100644 --- a/ir/adt/bipartite.c +++ b/ir/adt/bipartite.c @@ -32,7 +32,7 @@ #include "bipartite.h" #include "xmalloc.h" -struct _bipartite_t { +struct bipartite_t { int n_left, n_right; bitset_t *adj[1]; }; @@ -45,7 +45,7 @@ bipartite_t *bipartite_new(int n_left, int n_right) gr->n_left = n_left; gr->n_right = n_right; - for(i = 0; i < n_left; ++i) + for (i = 0; i < n_left; ++i) gr->adj[i] = bitset_malloc(n_right); return gr; @@ -54,7 +54,7 @@ bipartite_t *bipartite_new(int n_left, int n_right) void bipartite_free(bipartite_t *gr) { int i; - for(i = 0; i < gr->n_left; ++i) + for (i = 0; i < gr->n_left; ++i) bitset_free(gr->adj[i]); free(gr); } @@ -84,18 +84,18 @@ static int apply_alternating_path(const bipartite_t *gr, int *matching, int done_something = 0; bitset_t *tmp = bitset_alloca(gr->n_right); - for(left = 0; left < gr->n_left; ++left) { + for (left = 0; left < gr->n_left; ++left) { bitset_t *left_adj = gr->adj[left]; int i; bitset_copy(tmp, left_adj); - if(matching[left] >= 0) { + if (matching[left] >= 0) { int old_right = matching[left]; /* Check of all neighbors of the left node are already matched. * We cannot improve this edge then. */ - if(bitset_contains(left_adj, matched_right)) + if (bitset_contains(left_adj, matched_right)) continue; bitset_andnot(tmp, matched_right); @@ -107,12 +107,12 @@ static int apply_alternating_path(const bipartite_t *gr, int *matching, We have to find another left node which has the old right one as a neighbor. This node must not be part of a matching */ - for(i = 0; i < gr->n_left; ++i) - if(i != left && bitset_is_set(gr->adj[i], old_right) && !bitset_is_set(matched_left, i)) + for (i = 0; i < gr->n_left; ++i) + if (i != left && bitset_is_set(gr->adj[i], old_right) && !bitset_is_set(matched_left, i)) break; /* If no such node can be found, exit. */ - if(i >= gr->n_left) + if (i >= gr->n_left) continue; /* Else, we can improve this edge. */ @@ -129,7 +129,7 @@ static int apply_alternating_path(const bipartite_t *gr, int *matching, assert(!bitset_is_set(matched_left, left)); bitset_andnot(tmp, matched_right); - if(bitset_is_empty(tmp)) + if (bitset_is_empty(tmp)) continue; right = bitset_next_set(tmp, 0); @@ -150,14 +150,15 @@ void bipartite_matching(const bipartite_t *gr, int *matching) bitset_t *matched_right = bitset_alloca(gr->n_right); memset(matching, -1, gr->n_left * sizeof(int)); - while(apply_alternating_path(gr, matching, matched_left, matched_right)); + while (apply_alternating_path(gr, matching, matched_left, matched_right)) { + } } void bipartite_dump_f(FILE *f, const bipartite_t *gr) { int i; - for(i = 0; i < gr->n_left; ++i) { + for (i = 0; i < gr->n_left; ++i) { fprintf(f, "%d: ", i); bitset_fprint(f, gr->adj[i]); fprintf(f, "\n");