X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/65d463b655c789ab91563756179b180893d3ea7a..9c0ec517fbd653a4df3834aead473da75a1695a5:/src/surf/platf_generator.c diff --git a/src/surf/platf_generator.c b/src/surf/platf_generator.c index d21722fb29..90c2d8d631 100644 --- a/src/surf/platf_generator.c +++ b/src/surf/platf_generator.c @@ -64,6 +64,7 @@ void platf_graph_init(unsigned long node_count) { node_data->y = 0; node_data->degree = 0; node_data->kind = ROUTER; + node_data->connect_checked = FALSE; xbt_graph_new_node(platform_graph, (void*) node_data); } @@ -224,6 +225,8 @@ void platf_graph_interconnect_clique(void) { dynar_nodes = xbt_graph_get_nodes(platform_graph); xbt_dynar_foreach(dynar_nodes, i, first_node) { xbt_dynar_foreach(dynar_nodes, j, second_node) { + if(j>=i) + break; platf_node_connect(first_node, second_node); } } @@ -367,30 +370,47 @@ int platf_graph_is_connected(void) { xbt_dynar_t connected_nodes = NULL; xbt_dynar_t outgoing_edges = NULL; xbt_node_t graph_node = NULL; + context_node_t node_data = NULL; xbt_edge_t outedge = NULL; unsigned long iterator; unsigned int i; dynar_nodes = xbt_graph_get_nodes(platform_graph); connected_nodes = xbt_dynar_new(sizeof(xbt_node_t), NULL); + //Let's just check if every nodes are connected to something + xbt_dynar_foreach(dynar_nodes, i, graph_node) { + node_data = xbt_graph_node_get_data(graph_node); + if(node_data->degree==0) { + return FALSE; + } + } + + //We still need a real check //Initialize the connected node array with the first node xbt_dynar_get_cpy(dynar_nodes, 0, &graph_node); + node_data = xbt_graph_node_get_data(graph_node); + node_data->connect_checked = TRUE; xbt_dynar_push(connected_nodes, &graph_node); iterator = 0; do { //Get the next node xbt_dynar_get_cpy(connected_nodes, iterator, &graph_node); + node_data = xbt_graph_node_get_data(graph_node); //add all the linked nodes to the connected node array outgoing_edges = xbt_graph_node_get_outedges(graph_node); xbt_dynar_foreach(outgoing_edges, i, outedge) { xbt_node_t src = xbt_graph_edge_get_source(outedge); xbt_node_t dst = xbt_graph_edge_get_target(outedge); - if(!xbt_dynar_member(connected_nodes, &src)) { + node_data = xbt_graph_node_get_data(src); + if(!node_data->connect_checked) { xbt_dynar_push(connected_nodes, &src); + node_data->connect_checked = TRUE; } - if(!xbt_dynar_member(connected_nodes, &dst)) { + node_data = xbt_graph_node_get_data(dst); + if(!node_data->connect_checked) { xbt_dynar_push(connected_nodes, &dst); + node_data->connect_checked = TRUE; } } } while(++iterator < xbt_dynar_length(connected_nodes)); @@ -421,11 +441,12 @@ void platf_graph_clear_links(void) { xbt_graph_free_edge(platform_graph, graph_edge, xbt_free); } - //All the nodes will be of degree 0 + //All the nodes will be of degree 0, unchecked from connectedness dynar_nodes = xbt_graph_get_nodes(platform_graph); xbt_dynar_foreach(dynar_nodes, i, graph_node) { node_data = xbt_graph_node_get_data(graph_node); node_data->degree = 0; + node_data->connect_checked = FALSE; } }