From c2836413efe66cf86217b1ae6fdb6f8cdfedec13 Mon Sep 17 00:00:00 2001 From: Reinhard Pointner Date: Wed, 23 Nov 2011 06:49:18 +0000 Subject: [PATCH] * 4 square 4 4 is good --- .../sourceforge/filebot/ui/rename/MatchSimilarityMetric.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/net/sourceforge/filebot/ui/rename/MatchSimilarityMetric.java b/source/net/sourceforge/filebot/ui/rename/MatchSimilarityMetric.java index 25a6427b..ece0c83d 100644 --- a/source/net/sourceforge/filebot/ui/rename/MatchSimilarityMetric.java +++ b/source/net/sourceforge/filebot/ui/rename/MatchSimilarityMetric.java @@ -186,9 +186,9 @@ public enum MatchSimilarityMetric implements SimilarityMetric { @Override public float getSimilarity(Object o1, Object o2) { - // normalize absolute similarity to similarity rank (5 ranks in total), + // normalize absolute similarity to similarity rank (4 ranks in total), // so we are less likely to fall for false positives in this pass, and move on to the next one - return (float) (floor(super.getSimilarity(o1, o2) * 5) / 5); + return (float) (floor(super.getSimilarity(o1, o2) * 4) / 4); }