Legofit
infers population history from nucleotide site patterns.
ptrptrmap.h
1#ifndef PtrPtrMAP_H
2# define PtrPtrMAP_H
3# include "typedefs.h"
4
5#define MAPTYPE PtrPtrMap
6#define KEYTYPE void *
7#define VALTYPE void *
8#define HASH uint64Hash
9#define KEYCAST uint64_t
10
11#define CMP(a,b) ((a)<(b) ? -1 : (a)>(b) ? 1 : 0)
12
13#include "hashmap.h"
14
15#endif