aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2006-03-04 15:49:26 -0800
committerJunio C Hamano <junkio@cox.net>2006-03-04 15:49:26 -0800
commitce2a34188b70c2d04ffdc1d9d3acc04d7a35c5c6 (patch)
tree6f91380db196dcf084aaaf953bc72e3d089a51ba
parentba23bbc8efff19f7ba4c272b6a06a4327a4cf039 (diff)
parent1706306a54cfb5f1bf65f2b054aab2a5a7dba8e7 (diff)
downloadgit-ce2a34188b70c2d04ffdc1d9d3acc04d7a35c5c6.tar.gz
git-ce2a34188b70c2d04ffdc1d9d3acc04d7a35c5c6.tar.xz
Merge jc/diff leftover bits.
-rw-r--r--diffcore-rename.c20
1 files changed, 8 insertions, 12 deletions
diff --git a/diffcore-rename.c b/diffcore-rename.c
index 55cf1c37f..625b589fb 100644
--- a/diffcore-rename.c
+++ b/diffcore-rename.c
@@ -170,19 +170,15 @@ static int estimate_similarity(struct diff_filespec *src,
&src_copied, &literal_added))
return 0;
- /* Extent of damage */
- if (src->size + literal_added < src_copied)
- delta_size = 0;
- else
- delta_size = (src->size - src_copied) + literal_added;
-
- /*
- * Now we will give some score to it. 100% edit gets 0 points
- * and 0% edit gets MAX_SCORE points.
+ /* How similar are they?
+ * what percentage of material in dst are from source?
*/
- score = MAX_SCORE - (MAX_SCORE * delta_size / base_size);
- if (score < 0) return 0;
- if (MAX_SCORE < score) return MAX_SCORE;
+ if (dst->size < src_copied)
+ score = MAX_SCORE;
+ else if (!dst->size)
+ score = 0; /* should not happen */
+ else
+ score = src_copied * MAX_SCORE / dst->size;
return score;
}