diff options
| author | Junio C Hamano <gitster@pobox.com> | 2007-07-01 14:58:09 -0700 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2007-07-01 14:58:09 -0700 |
| commit | 71e55854fd6e5c9ce786bcd20efef43bd56f9df0 (patch) | |
| tree | 5adf301168c9c10ae952dd5de29b9edd8104c99e /diffcore-rename.c | |
| parent | 660d579d6ff0ac29b8f7b38b3da73f09214d39aa (diff) | |
| parent | 125b7630521918b75c136bd95309054d3f6d9da5 (diff) | |
Merge branch 'rs/diff'
* rs/diff:
diff: round down similarity index
diffcore-rename: don't change similarity index based on basename equality
Diffstat (limited to 'diffcore-rename.c')
| -rw-r--r-- | diffcore-rename.c | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/diffcore-rename.c b/diffcore-rename.c index 79c984c9cf..e0a89f3796 100644 --- a/diffcore-rename.c +++ b/diffcore-rename.c @@ -138,6 +138,7 @@ struct diff_score { int src; /* index in rename_src */ int dst; /* index in rename_dst */ int score; + int name_score; }; static int estimate_similarity(struct diff_filespec *src, @@ -201,11 +202,8 @@ static int estimate_similarity(struct diff_filespec *src, */ if (!dst->size) score = 0; /* should not happen */ - else { + else score = (int)(src_copied * MAX_SCORE / max_size); - if (basename_same(src, dst)) - score++; - } return score; } @@ -242,6 +240,10 @@ static void record_rename_pair(int dst_index, int src_index, int score) static int score_compare(const void *a_, const void *b_) { const struct diff_score *a = a_, *b = b_; + + if (a->score == b->score) + return b->name_score - a->name_score; + return b->score - a->score; } @@ -360,6 +362,7 @@ void diffcore_rename(struct diff_options *options) m->dst = i; m->score = estimate_similarity(one, two, minimum_score); + m->name_score = basename_same(one, two); diff_free_filespec_data(one); } /* We do not need the text anymore */ |
