mapgd  0.4
A program for the Maximum-likelihood analysis of population genomic data.
 All Data Structures Functions Variables Friends Groups Pages
relatedness_test.h
1 #ifndef _TEST_RELATEDNESS_H_
2 #define _TEST_RELATEDNESS_H_
3 
4 #include <stdio.h>
5 #include <cmath>
6 #include <math.h>
7 #include <stdlib.h>
8 #include <iostream>
9 #include <iomanip>
10 
11 #include "interface.h"
12 #include "map_file.h"
13 #include "genotype.h"
14 #include "genotype_pair.h"
15 #include "relatedness_data.h"
16 #include "relatedness.h"
17 //#include "newton-method-rel.h"
18 
19 #ifndef NOOMP
20 #include <omp.h>
21 #endif
22 
23 #ifndef NOGSL
24 #include <gsl/gsl_multimin.h>
25 #endif
26 
29 int testRel(int argc, char *argv[]);
32 #endif