Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
oldies
[simgrid.git] / examples / amok / alnem / alnem_builder.c
1 /* $Id$ */
2
3 /* ALNeM builder. Take an interference matrix as argument,                  */
4 /*  and reconstruct the corresponding graph itself                          */
5
6 /* Copyright (c) 2003 Martin Quinson. All rights reserved.                  */
7
8 /* This program is free software; you can redistribute it and/or modify it
9  * under the terms of the license (GNU LGPL) which comes with this package. */
10
11
12 #include <stdio.h>
13 #include <stdlib.h>
14
15 #include <tbx_graph.h> /* alvin's graph toolbox (+ reconstruction algorithm) */
16
17 int main(int argc,char *argv[]) {
18   TBX_Graph_t graph; /* a dummy graph containing all hosts */
19   TBX_FIFO_t host_fifo;
20   TBX_InterfTable_t interf; /* the measured interferences */
21   TBX_Graph_t builded_graph; /* the graph builded from the interferences */
22
23   if (argc != 2) {
24     fprintf(stderr,"alnem_builder: USAGE:\n");
25     fprintf(stderr,"  alnem_builder interference_file\n");
26     exit (1);
27   }
28
29   if (TBX_Graph_interferenceTableRead (argv[1],&graph,&interf,&host_fifo)) {
30     fprintf(stderr,"Can't read the interference data, aborting\n");
31     exit (1);
32   }
33
34   builded_graph = TBX_Graph_exploreInterference(interf);
35   TBX_Graph_exportToGraphViz(builded_graph, "toto.dot");
36   return 0;
37 }