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