X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=index%2Fzvrank.c;h=caa3001b60072e8e37a485e11982e789043d06af;hb=04ecd9c7e5f10487439020b866406c58e1196ca6;hp=6239a3aee2be6383db8161bd85c125ce23cb55fa;hpb=8ed385caafd1d9695a5a9c0783f0dbe2a53f3e80;p=idzebra-moved-to-github.git diff --git a/index/zvrank.c b/index/zvrank.c index 6239a3a..caa3001 100644 --- a/index/zvrank.c +++ b/index/zvrank.c @@ -1,4 +1,4 @@ -/* $Id: zvrank.c,v 1.16 2005-03-08 14:02:15 adam Exp $ +/* $Id: zvrank.c,v 1.19 2005-08-19 11:04:23 adam Exp $ Copyright (C) 1995-2005 Index Data ApS @@ -53,8 +53,8 @@ fernuni-hagen.de> #include "index.h" -static int log_level=0; -static int log_initialized=0; +static int log_level = 0; +static int log_initialized = 0; static double blog(double x) { /* log_2, log_e or log_10 is used, best to change it here if necessary */ @@ -669,13 +669,13 @@ static void *zv_create (ZebraHandle zh) { xmalloc (sizeof(*ci)); if (!log_initialized) { - log_level=yaz_log_module_level("zvrank"); - log_initialized=1; + log_level = yaz_log_module_level("zvrank"); + log_initialized = 1; } yaz_log(log_level, "zv_create"); - wscheme=res_get_def(res, "zvrank.weighting-scheme", ""); - for (i=0; wscheme[i] && i < 8; i++) + wscheme= res_get_def(res, "zvrank.weighting-scheme", ""); + for (i = 0; wscheme[i] && i < 8; i++) ci->rscheme[i]=wscheme[i]; ci->rscheme[i] = '\0'; return ci; @@ -782,7 +782,7 @@ static void zv_add (void *rsi, int seqno, TERMID term) { * score should be between 0 and 1000. If score cannot be obtained * -1 should be returned. */ -static int zv_calc (void *rsi, zint sysno) +static int zv_calc (void *rsi, zint sysno, zint staticrank, int *stop_flag) { int i, veclen; int score=0; @@ -839,6 +839,5 @@ static struct rank_control rank_control_vsm = { zv_add, }; -struct rank_control *rankzv_class = &rank_control_vsm; +struct rank_control *rank_zv_class = &rank_control_vsm; -/* EOF */