fixed missing read names

Overlapping not working yet (now confirmed)
This commit is contained in:
Heng Li
2020-03-27 12:51:08 -04:00
parent 78e8f2f28a
commit 1bb174a04e
5 changed files with 11 additions and 16 deletions
+3 -12
View File
@@ -9,21 +9,12 @@
int main(int argc, char *argv[])
{
int i;
void *flt_tab;
ha_pt_t *idx;
init_opt(&asm_opt);
if (!CommandLine_process(argc, argv, &asm_opt)) return 1;
yak_reset_realtime();
flt_tab = ha_ft_gen(&asm_opt, &R_INF);
idx = ha_pt_gen(&asm_opt, flt_tab, 0, &R_INF);
ha_pt_destroy(idx);
ha_ft_destroy(flt_tab);
if (0) {
Correct_Reads(asm_opt.number_of_round);
}
ha_flt_tab = ha_ft_gen(&asm_opt, &R_INF);
Correct_Reads(asm_opt.number_of_round);
ha_ft_destroy(ha_flt_tab);
destory_All_reads(&R_INF);
destory_opt(&asm_opt);
fprintf(stderr, "[M::%s] Version: %s\n", __func__, "dummy");