source: branches/ali/GDE/PHYML20130708/phyml/src/mpi_boot.h

Last change on this file was 10307, checked in by aboeckma, 11 years ago

added most recent version of phyml

File size: 732 bytes
Line 
1/*
2
3PhyML:  a program that  computes maximum likelihood phylogenies from
4DNA or AA homologous sequences.
5
6Copyright (C) Stephane Guindon. Oct 2003 onward.
7
8All parts of the source except where indicated are distributed under
9the 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
31int Global_numTask, Global_myRank;
32
33
34void Bootstrap_MPI(t_tree *tree);
35void Print_Fp_Out_Lines_MPI(t_tree *tree, option *io, int n_data_set, char *bootStr);
36
37#endif  // MPI
Note: See TracBrowser for help on using the repository browser.