1 /*
2 
3 PhyML:  a program that  computes maximum likelihood phylogenies from
4 DNA or AA homologous sequences.
5 
6 Copyright (C) Stephane Guindon. Oct 2003 onward.
7 
8 All parts of the source except where indicated are distributed under
9 the GNU public licence. See http://www.opensource.org for details.
10 
11 */
12 
13 #include <config.h>
14 
15 #ifndef MPI_H
16 #define MPI_H
17 
18 #include "mpi.h"
19 #include "utilities.h"
20 #include "bionj.h"
21 #include "lk.h"
22 #include "pars.h"
23 #include "free.h"
24 #include "models.h"
25 #include "simu.h"
26 #include "spr.h"
27 
28 #define BootTreeTag 0
29 #define BootStatTag 1
30 
31 int Global_numTask, Global_myRank;
32 
33 
34 void Bootstrap_MPI(t_tree *tree);
35 void Print_Fp_Out_Lines_MPI(t_tree *tree, option *io, int n_data_set, char *bootStr);
36 
37 #endif  // MPI
38