Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Platform generation : Add a function to interconnect nodes
[simgrid.git] / src / surf / platf_generator_private.h
1 #ifndef SG_PLATF_GEN_PRIVATE_H
2 #define SG_PLATF_GEN_PRIVATE_H
3
4 #include <xbt/graph.h>
5
6 typedef struct {
7   double x, y;
8   int degree;
9   e_platf_node_kind kind;
10 } s_context_node_t, *context_node_t;
11
12 void platf_graph_init(int node_count);
13
14 void platf_node_connect(xbt_node_t node1, xbt_node_t node2);
15
16 #endif      /* SG_PLATF_GEN_PRIVATE_H */