From fe39493145739bda4c0ed29ec520b06ff5024437 Mon Sep 17 00:00:00 2001 From: orbiter Date: Thu, 9 Feb 2006 00:23:54 +0000 Subject: [PATCH] changed default ranking parameters git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@1582 6c8d7289-2bf4-0310-a012-ef5d649a1542 --- .../plasma/plasmaSearchRankingProfile.java | 26 +++++++++---------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/source/de/anomic/plasma/plasmaSearchRankingProfile.java b/source/de/anomic/plasma/plasmaSearchRankingProfile.java index 8cc4a98b5..169df6865 100644 --- a/source/de/anomic/plasma/plasmaSearchRankingProfile.java +++ b/source/de/anomic/plasma/plasmaSearchRankingProfile.java @@ -81,21 +81,21 @@ public class plasmaSearchRankingProfile { // set some default-values this.order = null; this.coeff = new HashMap(); - coeff.put(ENTROPY, new Integer(4)); - coeff.put(DATE, new Integer(8)); - coeff.put(YBR, new Integer(12)); - coeff.put(POSINTEXT, new Integer(11)); - coeff.put(WORDDISTANCE, new Integer(10)); - coeff.put(HITCOUNT, new Integer(9)); + coeff.put(ENTROPY, new Integer(0)); + coeff.put(DATE, new Integer(4)); + coeff.put(YBR, new Integer(8)); + coeff.put(POSINTEXT, new Integer(7)); + coeff.put(WORDDISTANCE, new Integer(6)); + coeff.put(HITCOUNT, new Integer(5)); coeff.put(DOMLENGTH, new Integer(8)); - coeff.put(URLLENGTH, new Integer(10)); - coeff.put(URLCOMPS, new Integer(10)); - coeff.put(DESCRLENGTH, new Integer(10)); - coeff.put(DESCRCOMPS, new Integer(10)); + coeff.put(URLLENGTH, new Integer(15)); + coeff.put(URLCOMPS, new Integer(15)); + coeff.put(DESCRLENGTH, new Integer(4)); + coeff.put(DESCRCOMPS, new Integer(4)); coeff.put(QUERYINURL, new Integer(13)); - coeff.put(QUERYINDESCR, new Integer(14)); - coeff.put(URLCOMPINTOPLIST, new Integer(12)); - coeff.put(DESCRCOMPINTOPLIST, new Integer(11)); + coeff.put(QUERYINDESCR, new Integer(8)); + coeff.put(URLCOMPINTOPLIST, new Integer(3)); + coeff.put(DESCRCOMPINTOPLIST, new Integer(2)); } public plasmaSearchRankingProfile(String prefix, String profile) {