From 9396d9e11bab4f22e62a73832a96c1eb3d8ade62 Mon Sep 17 00:00:00 2001 From: Heng Li Date: Mon, 9 Oct 2017 10:05:32 -0400 Subject: [PATCH] r452: typo in the last commit --- main.c | 2 +- map.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/main.c b/main.c index 35e395a..9c4a686 100644 --- a/main.c +++ b/main.c @@ -6,7 +6,7 @@ #include "mmpriv.h" #include "getopt.h" -#define MM_VERSION "2.2-r491-dirty" +#define MM_VERSION "2.2-r492-dirty" #ifdef __linux__ #include diff --git a/map.c b/map.c index fef7322..da09ec4 100644 --- a/map.c +++ b/map.c @@ -74,12 +74,12 @@ int mm_set_opt(const char *preset, mm_idxopt_t *io, mm_mapopt_t *mo) io->is_hpc = 0, io->k = 19, io->w = 19; mo->a = 1, mo->b = 19, mo->q = 39, mo->q2 = 81, mo->e = 3, mo->e2 = 1, mo->zdrop = 200; mo->min_dp_max = 200; - mo->n_best = 50; + mo->best_n = 50; } else if (strcmp(preset, "asm10") == 0) { io->is_hpc = 0, io->k = 19, io->w = 19; mo->a = 1, mo->b = 9, mo->q = 16, mo->q2 = 41, mo->e = 2, mo->e2 = 1, mo->zdrop = 200; mo->min_dp_max = 200; - mo->n_best = 50; + mo->best_n = 50; } else if (strcmp(preset, "short") == 0 || strcmp(preset, "sr") == 0) { io->is_hpc = 0, io->k = 21, io->w = 11; mo->flag |= MM_F_SR | MM_F_FRAG_MODE | MM_F_NO_PRINT_2ND;