-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgap_sequences.h
More file actions
16 lines (11 loc) · 858 Bytes
/
gap_sequences.h
File metadata and controls
16 lines (11 loc) · 858 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef __GAP_SEQUENCES_H__
#define __GAP_SEQUENCES_H__
#include <stdint.h>
#define PRATT_GAP_SEQ_SIZE 102
#define CIURA_GAP_SEQ_SIZE 8
const uint32_t pratt_gap_seq[] = { 629856, 559872, 472392, 419904, 373248, 314928, 279936, 248832, 236196, 209952, 186624, 157464, 139968, 124416, 118098, 104976, 93312, 82944, 78732, 69984, 62208,
59049, 52488, 46656, 41472, 39366, 34992, 31104, 27648, 26244, 23328, 20736, 19683, 17496, 15552, 13824, 13122, 11664, 10368, 9216, 8748, 7776, 6912, 6561, 5832, 5184, 4608, 4374, 3888, 3456,
3072, 2916, 2592, 2304, 2187, 1944, 1728, 1536, 1458, 1296, 1152, 1024, 972, 864, 768, 729, 648, 576, 512, 486, 432, 384, 324, 288, 256, 243, 216, 192, 162, 144, 128, 108, 96, 81, 72, 64, 54, 48,
36, 32, 27, 24, 18, 16, 12, 9, 8, 6, 4, 3, 2, 1 };
const uint32_t ciura_gap_seq[] = { 701, 301, 132, 57, 23, 10, 4, 1 };
#endif