Legofit
infers population history from nucleotide site patterns.
hessian.h
1#ifndef ARR_HESSIAN_H
2#define ARR_HESSIAN_H
3#include <gsl/gsl_matrix.h>
4
5typedef struct Hessian Hessian;
6
7struct Hessian {
8 int npar; // number of parameters
9 double lnL; // log likelihood of estimate
10 char **parname; // array of pointers to parameter names
11 gsl_matrix *hessian;
12};
13
14Hessian hessian(const char *fname);
15
16#endif
Definition: hessian.h:7