Legofit
infers population history from nucleotide site patterns.
pointbuff.h
1#ifndef ARR_POINTBUFF_H
2#define ARR_POINTBUFF_H
3
4#include "typedefs.h"
5
6PointBuff *PointBuff_new(unsigned npar, unsigned totpts);
7void PointBuff_free(PointBuff * self);
8unsigned PointBuff_size(const PointBuff * self);
9void PointBuff_push(PointBuff * self, double cost, int n, double param[n]);
10double PointBuff_pop(PointBuff * self, int n, double param[n]);
11
12#endif
Definition: pointbuff.c:23