Legofit
infers population history from nucleotide site patterns.
longvec.h
1
#ifndef ARR_LONGVEC_H
2
#define ARR_LONGVEC_H
3
4
#include "typedefs.h"
5
6
LongVec
*LongVec_new(
int
size);
7
int
LongVec_size(
const
LongVec
*self);
8
int
LongVec_resize(
LongVec
*self,
int
newsize);
9
void
LongVec_set(
LongVec
*self,
int
ndx,
long
value);
10
void
LongVec_plusEquals(
LongVec
*self,
int
ndx,
long
inc);
11
void
LongVec_minusEquals(
LongVec
*self,
int
ndx,
long
dec);
12
long
LongVec_get(
const
LongVec
*self,
int
ndx);
13
void
LongVec_free(
LongVec
*self);
14
15
#endif
LongVec
Definition:
longvec.c:17
Generated on Fri Mar 17 2023 17:45:47 for Legofit by
1.9.4