X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/db8fd6b61aba2af810b61d8523a673c9678a608e..3b5e3f74b12e039d0a5f5eacf3f82c37ad3505cc:/src/surf/platf_generator_private.h diff --git a/src/surf/platf_generator_private.h b/src/surf/platf_generator_private.h index db486a99a3..12cfdd0e83 100644 --- a/src/surf/platf_generator_private.h +++ b/src/surf/platf_generator_private.h @@ -1,12 +1,15 @@ #ifndef SG_PLATF_GEN_PRIVATE_H #define SG_PLATF_GEN_PRIVATE_H -typedef struct { - double x, y; - int degree; - e_platf_node_kind kind; -} s_context_node_t, *context_node_t; +#include "xbt/graph.h" +#include "simgrid/platf.h" -void platf_graph_init(int node_count); +void platf_graph_init(unsigned long node_count); + +void platf_node_connect(xbt_node_t node1, xbt_node_t node2); + +double platf_node_distance(xbt_node_t node1, xbt_node_t node2); + +double random_pareto(double min, double max, double K, double P, double ALPHA); #endif /* SG_PLATF_GEN_PRIVATE_H */