X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/6da2ee58d9d2b8f4910b82e87d0be4488f31b911..e4abd3f271729beeff499da36267bfb274dd1f6d:/src/surf/platf_generator_private.h diff --git a/src/surf/platf_generator_private.h b/src/surf/platf_generator_private.h index a1a430f47c..12cfdd0e83 100644 --- a/src/surf/platf_generator_private.h +++ b/src/surf/platf_generator_private.h @@ -1,19 +1,15 @@ #ifndef SG_PLATF_GEN_PRIVATE_H #define SG_PLATF_GEN_PRIVATE_H -#include - -typedef struct { - unsigned long id; - 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(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 */