Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
generateDotFile, to generate dot files for fat trees
[simgrid.git] / src / surf / platf_generator_private.h
1 /* Copyright (c) 2012, 2014. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #ifndef SG_PLATF_GEN_PRIVATE_H
8 #define SG_PLATF_GEN_PRIVATE_H
9
10 #include "xbt/graph.h"
11 #include "simgrid/platf.h"
12
13 void platf_graph_init(unsigned long node_count);
14
15 void platf_node_connect(xbt_node_t node1, xbt_node_t node2);
16
17 double platf_node_distance(xbt_node_t node1, xbt_node_t node2);
18
19 double random_pareto(double min, double max, double K, double P, double ALPHA);
20
21 #endif      /* SG_PLATF_GEN_PRIVATE_H */