X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/7a3a100990355eb757dc81106b5aac6daed0b8e1..83d62d72a9468f9f8e97b677dd40d5a2bd60ba86:/include/xbt/graph.h diff --git a/include/xbt/graph.h b/include/xbt/graph.h index 5346279b79..98e7661831 100644 --- a/include/xbt/graph.h +++ b/include/xbt/graph.h @@ -1,12 +1,14 @@ -/* Copyright (c) 2006-2018. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2006-2019. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ #ifndef XBT_GRAPH_H #define XBT_GRAPH_H -#include "xbt/misc.h" /* SG_BEGIN_DECL */ -#include "xbt/dynar.h" + +#include +#include /* SG_BEGIN_DECL */ + SG_BEGIN_DECL() /** @addtogroup XBT_graph @@ -21,7 +23,6 @@ typedef struct xbt_graph *xbt_graph_t; /* Node structure */ /* Be careful of what you do with this structure */ -/* typedef struct xbt_node *xbt_node_t; */ typedef struct xbt_node { xbt_dynar_t out; xbt_dynar_t in; /* not used when the graph is directed */ @@ -32,7 +33,6 @@ typedef struct xbt_node { /* edge structure */ /* Be careful of what you do with this structure */ -/* typedef struct xbt_edge *xbt_edge_t; */ typedef struct xbt_edge { xbt_node_t src; xbt_node_t dst; @@ -41,7 +41,6 @@ typedef struct xbt_edge { /* Graph structure */ /* Be careful of what you do with this structure */ -/* typedef struct xbt_graph *xbt_graph_t; */ typedef struct xbt_graph { xbt_dynar_t nodes; xbt_dynar_t edges;