Legofit
infers population history from nucleotide site patterns.
ptru32map.h
1#ifndef PtrU32MAP_H
2# define PtrU32MAP_H
3# include "typedefs.h"
4
5#define MAPTYPE PtrU32Map
6#define KEYTYPE void *
7#define VALTYPE uint32_t
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