Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
_surf_cfg_set was renamed (untested)
[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 #include "simgrid/platf.h"
6
7 void platf_graph_init(unsigned long node_count);
8
9 void platf_node_connect(xbt_node_t node1, xbt_node_t node2);
10
11 double platf_node_distance(xbt_node_t node1, xbt_node_t node2);
12
13 double random_pareto(double min, double max, double K, double P, double ALPHA);
14
15 #endif      /* SG_PLATF_GEN_PRIVATE_H */