mapgd  0.4
A program for the Maximum-likelihood analysis of population genomic data.
 All Data Structures Functions Variables Friends Groups Pages
reml.h
1 #ifndef _REML_H_
2 #define _REML_H_
3 
4 #include <stdio.h>
5 #include <math.h>
6 #include <sys/types.h>
7 #include <stdlib.h>
8 
9 #include <iostream>
10 #include <iomanip>
11 #include <ctime>
12 
13 #include <algorithm>
14 #include <functional>
15 
16 #include "interface.h"
17 #include "map_file.h"
18 #include "relatedness.h"
19 
20 #ifndef NOOMP
21 #include <omp.h>
22 #endif
23 
24 #ifdef MPI
25 #include <ciso646>
26 #include <mpi.h>
27 #endif
28 
29 int reml(int, char **);
30 
31 #endif