X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/dff9e15c44ab6340d27215957c56fa72fad246a2..101b9f6ed0eda560b20d652818cd9956479ebece:/src/xbt/graph.c diff --git a/src/xbt/graph.c b/src/xbt/graph.c index 670584b417..b51fb15414 100644 --- a/src/xbt/graph.c +++ b/src/xbt/graph.c @@ -1,5 +1,3 @@ -/* $Id$ */ - /* a generic graph library. */ /* Copyright (c) 2006 Darina Dimitrova, Arnaud Legrand. */ @@ -262,7 +260,6 @@ xbt_dynar_t xbt_graph_get_edges(xbt_graph_t g) /** @brief Retrieve the node at the source of the given edge */ xbt_node_t xbt_graph_edge_get_source(xbt_edge_t e) { - return e->src; } @@ -272,6 +269,11 @@ xbt_node_t xbt_graph_edge_get_target(xbt_edge_t e) return e->dst; } +/** @brief Retrieve the outgoing edges of the given node */ +xbt_dynar_t xbt_graph_node_get_outedges(xbt_node_t n) +{ + return n->out; +} /** @brief Set the weight of the given edge */ void xbt_graph_edge_set_length(xbt_edge_t e, double length)