flow 49 opal/util/bipartite_graph.c #define f(i,j) flow[n*i + j] flow 101 opal/util/bipartite_graph.c static void dump_flow(int *flow, int n) flow 104 opal/util/bipartite_graph.c static void dump_flow(int *flow, int n) flow 439 opal/util/bipartite_graph.c static void shrink_flow_matrix(int *flow, int old_n, int new_n) flow 447 opal/util/bipartite_graph.c flow[new_n*u + v] = flow[old_n*u + v]; flow 754 opal/util/bipartite_graph.c int *flow = NULL; flow 775 opal/util/bipartite_graph.c flow = calloc(n*n, sizeof(*flow)); flow 776 opal/util/bipartite_graph.c if (NULL == flow) { flow 790 opal/util/bipartite_graph.c dump_flow(flow, n); flow 827 opal/util/bipartite_graph.c *flow_out = flow; flow 845 opal/util/bipartite_graph.c int *flow = NULL; flow 886 opal/util/bipartite_graph.c err = min_cost_flow_ssp(gx, &flow); flow 891 opal/util/bipartite_graph.c assert(NULL != flow); flow 897 opal/util/bipartite_graph.c dump_flow(flow, NUM_VERTICES(gx)); flow 899 opal/util/bipartite_graph.c shrink_flow_matrix(flow, opal_bp_graph_order(gx), n); flow 901 opal/util/bipartite_graph.c dump_flow(flow, n); flow 937 opal/util/bipartite_graph.c free(flow);