Files
minimap2/mmpriv.h
T
Heng Li 6d4348db44 dp chaining mostly works, but fails sometimes
which means there are bugs that need to be fixed
2017-06-06 14:19:50 -04:00

24 lines
473 B
C

#ifndef MMPRIV2_H
#define MMPRIV2_H
#include "minimap.h"
#ifdef __cplusplus
extern "C" {
#endif
double cputime(void);
double realtime(void);
void radix_sort_128x(mm128_t *beg, mm128_t *end);
void radix_sort_64(uint64_t *beg, uint64_t *end);
uint32_t ks_ksmall_uint32_t(size_t n, uint32_t arr[], size_t kk);
int mm_chain_dp(int match_len, int max_dist, int bw, int max_skip, int min_sc, int n, mm128_t *a, uint64_t **_u, void *km);
#ifdef __cplusplus
}
#endif
#endif