Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
constructors and destructors for graph structures
[simgrid.git] / src / xbt / graph_private.h
index 614cf3c..9911475 100644 (file)
@@ -3,26 +3,27 @@
 #include "xbt/dynar.h"
 
 /* Node structure */
 #include "xbt/dynar.h"
 
 /* Node structure */
-typedef struct xbt_node *xbt_node_t;
-typedef struct xbt_node {
+/* typedef struct xbt_node *xbt_node_t; */
+typedef struct xbt_node 
+{
   xbt_dynar_t out;
   xbt_dynar_t in;
   xbt_dynar_t out;
   xbt_dynar_t in;
-  xbt_node_t *route;
   void *data;
 } s_xbt_node_t;
 
 /* edge structure */
   void *data;
 } s_xbt_node_t;
 
 /* edge structure */
-typedef struct xbt_edge *xbt_edge_t;
-typedef struct xbt_edge {
+/* typedef struct xbt_edge *xbt_edge_t; */
+typedef struct xbt_edge 
+{
   xbt_node_t src;
   xbt_node_t dst;
   void *data;
 } s_xbt_edge_t;
 
 /* Graph structure */
   xbt_node_t src;
   xbt_node_t dst;
   void *data;
 } s_xbt_edge_t;
 
 /* Graph structure */
-typedef struct xbt_graph *xbt_graph_t;
-typedef struct xbt_graph {
-  char *name;
+/* typedef struct xbt_graph *xbt_graph_t; */
+typedef struct xbt_graph 
+{
   xbt_dynar_t nodes;
   xbt_dynar_t edges;
   unsigned short int directed;
   xbt_dynar_t nodes;
   xbt_dynar_t edges;
   unsigned short int directed;