From 5b31ba8413c62e860eba83a58852d2af37af4397 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Fri, 21 Sep 2012 14:10:11 +0200 Subject: [PATCH] Indent record info a little for show/record responses --- src/http_command.c | 44 +-- test/test_facets_13.res | 32 +- test/test_facets_16.res | 32 +- test/test_facets_24.res | 232 ++++++------ test/test_facets_4.res | 172 ++++----- test/test_facets_9.res | 32 +- test/test_filter_12.res | 496 +++++++++++++------------- test/test_filter_16.res | 626 ++++++++++++++++---------------- test/test_filter_17.res | 640 +++++++++++++++++---------------- test/test_filter_3.res | 496 +++++++++++++------------- test/test_filter_6.res | 218 ++++++------ test/test_filter_9.res | 218 ++++++------ test/test_http_10.res | 326 +++++++++-------- test/test_http_11.res | 326 +++++++++-------- test/test_http_18.res | 84 +++-- test/test_http_23.res | 52 +-- test/test_http_28.res | 54 +-- test/test_http_32.res | 66 ++-- test/test_http_36.res | 336 +++++++++--------- test/test_http_41.res | 144 ++++---- test/test_http_42.res | 212 +++++------ test/test_http_45.res | 48 +-- test/test_http_49.res | 50 +-- test/test_http_5.res | 380 ++++++++++---------- test/test_http_50.res | 48 +-- test/test_http_6.res | 52 +-- test/test_http_60.res | 50 +-- test/test_http_63.res | 50 +-- test/test_http_66.res | 50 +-- test/test_http_72.res | 50 +-- test/test_http_74.res | 44 +-- test/test_http_76.res | 154 ++++---- test/test_http_79.res | 96 ++--- test/test_http_8.res | 326 +++++++++-------- test/test_http_81.res | 50 +-- test/test_http_9.res | 326 +++++++++-------- test/test_icu_4.res | 274 +++++++------- test/test_icu_5.res | 274 +++++++------- test/test_icu_6.res | 274 +++++++------- test/test_icu_7.res | 274 +++++++------- test/test_icu_9.res | 328 +++++++++-------- test/test_limit_limitmap_15.res | 32 +- test/test_limit_limitmap_18.res | 32 +- test/test_limit_limitmap_21.res | 32 +- test/test_limit_limitmap_24.res | 36 +- test/test_limit_limitmap_26.res | 114 +++--- test/test_limit_limitmap_28.res | 36 +- test/test_limit_limitmap_30.res | 114 +++--- test/test_limit_limitmap_36.res | 114 +++--- test/test_limit_limitmap_4.res | 278 ++++++++------- test/test_limit_limitmap_42.res | 114 +++--- test/test_limit_limitmap_9.res | 586 ++++++++++++++++-------------- test/test_post_10.res | 240 +++++++------ test/test_post_8.res | 240 +++++++------ test/test_post_9.res | 54 +-- test/test_solr_13.res | 692 +++++++++++++++++++----------------- test/test_solr_18.res | 744 +++++++++++++++++++++------------------ test/test_solr_22.res | 60 ++-- test/test_solr_25.res | 692 +++++++++++++++++++----------------- test/test_solr_29.res | 60 ++-- test/test_solr_4.res | 692 +++++++++++++++++++----------------- test/test_solr_9.res | 692 +++++++++++++++++++----------------- test/test_termlist_block_9.res | 586 ++++++++++++++++-------------- test/test_turbomarcxml_4.res | 90 ++--- test/test_turbomarcxml_7.res | 66 ++-- test/test_url_10.res | 126 ++++--- test/test_url_17.res | 176 +++++---- test/test_url_18.res | 176 +++++---- test/test_url_3.res | 268 +++++++------- test/test_url_6.res | 72 ++-- test/test_url_7.res | 90 ++--- test/test_url_8.res | 90 ++--- test/test_url_9.res | 126 ++++--- 73 files changed, 8265 insertions(+), 7291 deletions(-) diff --git a/src/http_command.c b/src/http_command.c index 1cb1ae8..2aca50e 100644 --- a/src/http_command.c +++ b/src/http_command.c @@ -826,7 +826,7 @@ static void cmd_bytarget(struct http_channel *c) } static void write_metadata(WRBUF w, struct conf_service *service, - struct record_metadata **ml, int full) + struct record_metadata **ml, int full, int indent) { int imeta; @@ -839,7 +839,10 @@ static void write_metadata(WRBUF w, struct conf_service *service, for (md = ml[imeta]; md; md = md->next) { struct record_metadata_attr *attr = md->attributes; - wrbuf_printf(w, "\nname); + int i; + for (i = 0; i < indent; i++) + wrbuf_putc(w, ' '); + wrbuf_printf(w, "name); for (; attr; attr = attr->next) { @@ -862,7 +865,7 @@ static void write_metadata(WRBUF w, struct conf_service *service, wrbuf_puts(w, "[can't represent]"); break; } - wrbuf_printf(w, "", cmd->name); + wrbuf_printf(w, "\n", cmd->name); } } } @@ -873,20 +876,20 @@ static void write_subrecord(struct record *r, WRBUF w, const char *name = session_setting_oneval( client_get_database(r->client), PZ_NAME); - wrbuf_puts(w, "client)); wrbuf_puts(w, "\"\n"); - wrbuf_puts(w, " name=\""); + wrbuf_puts(w, " name=\""); wrbuf_xmlputs(w, *name ? name : "Unknown"); wrbuf_puts(w, "\" "); wrbuf_puts(w, "checksum=\""); wrbuf_printf(w, "%u", r->checksum); - wrbuf_puts(w, "\">"); + wrbuf_puts(w, "\">\n"); - write_metadata(w, service, r->metadata, show_details); - wrbuf_puts(w, "\n"); + write_metadata(w, service, r->metadata, show_details, 2); + wrbuf_puts(w, " \n"); } static void show_raw_record_error(void *data, const char *addinfo) @@ -1024,26 +1027,26 @@ static void show_record(struct http_channel *c, struct http_session *s) { struct record *r; response_open_no_status(c, "record"); - wrbuf_puts(c->wrbuf, "\n"); + wrbuf_puts(c->wrbuf, "\n "); wrbuf_xmlputs(c->wrbuf, rec->recid); wrbuf_puts(c->wrbuf, "\n"); if (prev_r) { - wrbuf_puts(c->wrbuf, ""); + wrbuf_puts(c->wrbuf, " "); wrbuf_xmlputs(c->wrbuf, prev_r->recid); wrbuf_puts(c->wrbuf, "\n"); } if (next_r) { - wrbuf_puts(c->wrbuf, ""); + wrbuf_puts(c->wrbuf, " "); wrbuf_xmlputs(c->wrbuf, next_r->recid); wrbuf_puts(c->wrbuf, "\n"); } - wrbuf_printf(c->wrbuf, "%d\n", + wrbuf_printf(c->wrbuf, " %d\n", session_active_clients(s->psession)); - write_metadata(c->wrbuf, service, rec->metadata, 1); + write_metadata(c->wrbuf, service, rec->metadata, 1, 1); for (r = rec->records; r; r = r->next) - write_subrecord(r, c->wrbuf, service, 1); + write_subrecord(r, c->wrbuf, service, 2); response_close(c, "record"); } show_single_stop(s->psession, rec); @@ -1131,21 +1134,20 @@ static void show_records(struct http_channel *c, struct http_session *s, int act struct conf_service *service = s->psession->service; wrbuf_puts(c->wrbuf, "\n"); - write_metadata(c->wrbuf, service, rec->metadata, 0); + write_metadata(c->wrbuf, service, rec->metadata, 0, 1); for (ccount = 0, p = rl[i]->records; p; p = p->next, ccount++) write_subrecord(p, c->wrbuf, service, 0); // subrecs w/o details - if (ccount > 1) - wrbuf_printf(c->wrbuf, "%d\n", ccount); + wrbuf_printf(c->wrbuf, " %d\n", ccount); if (strstr(sort, "relevance")) { - wrbuf_printf(c->wrbuf, "%d\n", + wrbuf_printf(c->wrbuf, " %d\n", rec->relevance_score); - wrbuf_printf(c->wrbuf, "\n"); + wrbuf_printf(c->wrbuf, " \n"); wrbuf_xmlputs(c->wrbuf, wrbuf_cstr(rec->relevance_explain1)); wrbuf_xmlputs(c->wrbuf, wrbuf_cstr(rec->relevance_explain2)); - wrbuf_printf(c->wrbuf, "\n"); + wrbuf_printf(c->wrbuf, " \n"); } - wrbuf_puts(c->wrbuf, ""); + wrbuf_puts(c->wrbuf, " "); wrbuf_xmlputs(c->wrbuf, rec->recid); wrbuf_puts(c->wrbuf, "\n"); wrbuf_puts(c->wrbuf, "\n"); diff --git a/test/test_facets_13.res b/test/test_facets_13.res index a913096..86782cf 100644 --- a/test/test_facets_13.res +++ b/test/test_facets_13.res @@ -6,25 +6,27 @@ 0 1 - -How to program a computer -Jack Collins -How to program a computer -Jack Collins - -How to program a computer -Jack Collins -2 -97311 - + How to program a computer + Jack Collins + + How to program a computer + Jack Collins + + + How to program a computer + Jack Collins + + 2 + 97311 + computer: field=title vecf[1] += mult(6) / length(5); computer: field=title vecf[1] += mult(6) / length(5); idf[1] = log(((1 + total(2))/termoccur(2)); computer: relevance += 100000 * vecf[1](2.400000) * idf[1](0.405465) (97311); score = relevance(97311); - -content: title how to program a computer author jack collins + + content: title how to program a computer author jack collins \ No newline at end of file diff --git a/test/test_facets_16.res b/test/test_facets_16.res index a6107fb..0736579 100644 --- a/test/test_facets_16.res +++ b/test/test_facets_16.res @@ -6,25 +6,27 @@ 0 1 - -How to program a computer -Jack Collins -How to program a computer -Jack Collins - -How to program a computer -Jack Collins -2 -97311 - + How to program a computer + Jack Collins + + How to program a computer + Jack Collins + + + How to program a computer + Jack Collins + + 2 + 97311 + computer: field=title vecf[1] += mult(6) / length(5); computer: field=title vecf[1] += mult(6) / length(5); idf[1] = log(((1 + total(2))/termoccur(2)); computer: relevance += 100000 * vecf[1](2.400000) * idf[1](0.405465) (97311); score = relevance(97311); - -content: title how to program a computer author jack collins + + content: title how to program a computer author jack collins \ No newline at end of file diff --git a/test/test_facets_24.res b/test/test_facets_24.res index 06a75c5..8ff935d 100644 --- a/test/test_facets_24.res +++ b/test/test_facets_24.res @@ -6,159 +6,175 @@ 0 8 - -How to program a computer -Jack Collins -How to program a computer -Jack Collins - -How to program a computer -Jack Collins -2 -53554 - + How to program a computer + Jack Collins + + How to program a computer + Jack Collins + + + How to program a computer + Jack Collins + + 2 + 53554 + computer: field=title vecf[1] += mult(6) / length(5); computer: field=title vecf[1] += mult(6) / length(5); idf[1] = log(((1 + total(9))/termoccur(8)); computer: relevance += 100000 * vecf[1](2.400000) * idf[1](0.223144) (53554); score = relevance(53554); - -content: title how to program a computer author jack collins + + content: title how to program a computer author jack collins - -Computer science & technology -proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 -1977 -Computer science & technology -proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 -1977 -44628 - + Computer science & technology + proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 + 1977 + + Computer science & technology + proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 + 1977 + + 1 + 44628 + computer: field=title vecf[1] += mult(6) / length(3); idf[1] = log(((1 + total(9))/termoccur(8)); computer: relevance += 100000 * vecf[1](2.000000) * idf[1](0.223144) (44628); score = relevance(44628); - -content: title computer science technology + + content: title computer science technology - -The Computer Bible -1973-1980 -Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates -The Computer Bible -1973-1980 -Hebrew and Greek; introductions in English -Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates -44628 - + The Computer Bible + 1973-1980 + Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates + + The Computer Bible + 1973-1980 + Hebrew and Greek; introductions in English + Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates + + 1 + 44628 + computer: field=title vecf[1] += mult(6) / length(3); idf[1] = log(((1 + total(9))/termoccur(8)); computer: relevance += 100000 * vecf[1](2.000000) * idf[1](0.223144) (44628); score = relevance(44628); - -content: title the computer bible + + content: title the computer bible - -Washington metropolitan area rail computer feasibility study; -final report -1971 -Englund, Carl R -"Contract DOT-UT-10003." -Washington metropolitan area rail computer feasibility study; -final report -1971 -Englund, Carl R -"Contract DOT-UT-10003." -19126 - + Washington metropolitan area rail computer feasibility study; + final report + 1971 + Englund, Carl R + "Contract DOT-UT-10003." + + Washington metropolitan area rail computer feasibility study; + final report + 1971 + Englund, Carl R + "Contract DOT-UT-10003." + + 1 + 19126 + computer: field=title vecf[1] += mult(6) / length(7); idf[1] = log(((1 + total(9))/termoccur(8)); computer: relevance += 100000 * vecf[1](0.857143) * idf[1](0.223144) (19126); score = relevance(19126); - -content: title washington metropolitan area rail computer feasibility study author englund carl r + + content: title washington metropolitan area rail computer feasibility study author englund carl r - -The Puget Sound Region -a portfolio of thematic computer maps -1974 -Mairs, John W -Scale of maps ca. 1:1,000,000 -The Puget Sound Region -a portfolio of thematic computer maps -1974 -Mairs, John W -Scale of maps ca. 1:1,000,000 -18595 - + The Puget Sound Region + a portfolio of thematic computer maps + 1974 + Mairs, John W + Scale of maps ca. 1:1,000,000 + + The Puget Sound Region + a portfolio of thematic computer maps + 1974 + Mairs, John W + Scale of maps ca. 1:1,000,000 + + 1 + 18595 + computer: field=title-remainder vecf[1] += mult(5) / length(6); idf[1] = log(((1 + total(9))/termoccur(8)); computer: relevance += 100000 * vecf[1](0.833333) * idf[1](0.223144) (18595); score = relevance(18595); - -content: title the puget sound region author mairs john w + + content: title the puget sound region author mairs john w - -Computer processing of dynamic images from an Anger scintillation camera -the proceedings of a workshop -1974 -Computer processing of dynamic images from an Anger scintillation camera -the proceedings of a workshop -1974 -13388 - + Computer processing of dynamic images from an Anger scintillation camera + the proceedings of a workshop + 1974 + + Computer processing of dynamic images from an Anger scintillation camera + the proceedings of a workshop + 1974 + + 1 + 13388 + computer: field=title vecf[1] += mult(6) / length(10); idf[1] = log(((1 + total(9))/termoccur(8)); computer: relevance += 100000 * vecf[1](0.600000) * idf[1](0.223144) (13388); score = relevance(13388); - -content: title computer processing of dynamic images from an anger scintillation camera + + content: title computer processing of dynamic images from an anger scintillation camera - -The use of passwords for controlled access to computer resources -1977 -Wood, Helen M -The use of passwords for controlled access to computer resources -1977 -Wood, Helen M -13388 - + The use of passwords for controlled access to computer resources + 1977 + Wood, Helen M + + The use of passwords for controlled access to computer resources + 1977 + Wood, Helen M + + 1 + 13388 + computer: field=title vecf[1] += mult(6) / length(10); idf[1] = log(((1 + total(9))/termoccur(8)); computer: relevance += 100000 * vecf[1](0.600000) * idf[1](0.223144) (13388); score = relevance(13388); - -content: title the use of passwords for controlled access to computer resources author wood helen m + + content: title the use of passwords for controlled access to computer resources author wood helen m - -Reconstruction tomography in diagnostic radiology and nuclear medicine -proceedings of the workshop -1977 -Reconstruction tomography in diagnostic radiology and nuclear medicine -proceedings of the workshop -1977 -0 - + Reconstruction tomography in diagnostic radiology and nuclear medicine + proceedings of the workshop + 1977 + + Reconstruction tomography in diagnostic radiology and nuclear medicine + proceedings of the workshop + 1977 + + 1 + 0 + idf[1] = log(((1 + total(9))/termoccur(8)); computer: relevance += 100000 * vecf[1](0.000000) * idf[1](0.223144) (0); score = relevance(0); - -content: title reconstruction tomography in diagnostic radiology and nuclear medicine + + content: title reconstruction tomography in diagnostic radiology and nuclear medicine \ No newline at end of file diff --git a/test/test_facets_4.res b/test/test_facets_4.res index ccff2df..099cb79 100644 --- a/test/test_facets_4.res +++ b/test/test_facets_4.res @@ -6,119 +6,131 @@ 0 6 - -How to program a computer -Jack Collins -How to program a computer -Jack Collins - -How to program a computer -Jack Collins -2 -69043 - + How to program a computer + Jack Collins + + How to program a computer + Jack Collins + + + How to program a computer + Jack Collins + + 2 + 69043 + computer: field=title vecf[1] += mult(6) / length(5); computer: field=title vecf[1] += mult(6) / length(5); idf[1] = log(((1 + total(7))/termoccur(6)); computer: relevance += 100000 * vecf[1](2.400000) * idf[1](0.287682) (69043); score = relevance(69043); - -content: title how to program a computer author jack collins + + content: title how to program a computer author jack collins - -Computer science & technology -proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 -1977 -Computer science & technology -proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 -1977 -57536 - + Computer science & technology + proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 + 1977 + + Computer science & technology + proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 + 1977 + + 1 + 57536 + computer: field=title vecf[1] += mult(6) / length(3); idf[1] = log(((1 + total(7))/termoccur(6)); computer: relevance += 100000 * vecf[1](2.000000) * idf[1](0.287682) (57536); score = relevance(57536); - -content: title computer science technology + + content: title computer science technology - -The Computer Bible -1973-1980 -Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates -The Computer Bible -1973-1980 -Hebrew and Greek; introductions in English -Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates -57536 - + The Computer Bible + 1973-1980 + Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates + + The Computer Bible + 1973-1980 + Hebrew and Greek; introductions in English + Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates + + 1 + 57536 + computer: field=title vecf[1] += mult(6) / length(3); idf[1] = log(((1 + total(7))/termoccur(6)); computer: relevance += 100000 * vecf[1](2.000000) * idf[1](0.287682) (57536); score = relevance(57536); - -content: title the computer bible + + content: title the computer bible - -The Puget Sound Region -a portfolio of thematic computer maps -1974 -Mairs, John W -Scale of maps ca. 1:1,000,000 -The Puget Sound Region -a portfolio of thematic computer maps -1974 -Mairs, John W -Scale of maps ca. 1:1,000,000 -23973 - + The Puget Sound Region + a portfolio of thematic computer maps + 1974 + Mairs, John W + Scale of maps ca. 1:1,000,000 + + The Puget Sound Region + a portfolio of thematic computer maps + 1974 + Mairs, John W + Scale of maps ca. 1:1,000,000 + + 1 + 23973 + computer: field=title-remainder vecf[1] += mult(5) / length(6); idf[1] = log(((1 + total(7))/termoccur(6)); computer: relevance += 100000 * vecf[1](0.833333) * idf[1](0.287682) (23973); score = relevance(23973); - -content: title the puget sound region author mairs john w + + content: title the puget sound region author mairs john w - -Computer processing of dynamic images from an Anger scintillation camera -the proceedings of a workshop -1974 -Computer processing of dynamic images from an Anger scintillation camera -the proceedings of a workshop -1974 -17260 - + Computer processing of dynamic images from an Anger scintillation camera + the proceedings of a workshop + 1974 + + Computer processing of dynamic images from an Anger scintillation camera + the proceedings of a workshop + 1974 + + 1 + 17260 + computer: field=title vecf[1] += mult(6) / length(10); idf[1] = log(((1 + total(7))/termoccur(6)); computer: relevance += 100000 * vecf[1](0.600000) * idf[1](0.287682) (17260); score = relevance(17260); - -content: title computer processing of dynamic images from an anger scintillation camera + + content: title computer processing of dynamic images from an anger scintillation camera - -Reconstruction tomography in diagnostic radiology and nuclear medicine -proceedings of the workshop -1977 -Reconstruction tomography in diagnostic radiology and nuclear medicine -proceedings of the workshop -1977 -0 - + Reconstruction tomography in diagnostic radiology and nuclear medicine + proceedings of the workshop + 1977 + + Reconstruction tomography in diagnostic radiology and nuclear medicine + proceedings of the workshop + 1977 + + 1 + 0 + idf[1] = log(((1 + total(7))/termoccur(6)); computer: relevance += 100000 * vecf[1](0.000000) * idf[1](0.287682) (0); score = relevance(0); - -content: title reconstruction tomography in diagnostic radiology and nuclear medicine + + content: title reconstruction tomography in diagnostic radiology and nuclear medicine \ No newline at end of file diff --git a/test/test_facets_9.res b/test/test_facets_9.res index 35ea9f9..3006355 100644 --- a/test/test_facets_9.res +++ b/test/test_facets_9.res @@ -6,25 +6,27 @@ 0 1 - -How to program a computer -Jack Collins -How to program a computer -Jack Collins - -How to program a computer -Jack Collins -2 -97311 - + How to program a computer + Jack Collins + + How to program a computer + Jack Collins + + + How to program a computer + Jack Collins + + 2 + 97311 + computer: field=title vecf[1] += mult(6) / length(5); computer: field=title vecf[1] += mult(6) / length(5); idf[1] = log(((1 + total(2))/termoccur(2)); computer: relevance += 100000 * vecf[1](2.400000) * idf[1](0.405465) (97311); score = relevance(97311); - -content: title how to program a computer author jack collins + + content: title how to program a computer author jack collins \ No newline at end of file diff --git a/test/test_filter_12.res b/test/test_filter_12.res index b39072b..dfb7f93 100644 --- a/test/test_filter_12.res +++ b/test/test_filter_12.res @@ -6,312 +6,336 @@ 0 12 - -The late shift -Letterman, Leno, and the network battle for the night -1993 -Carter, Bill -Tonight show (Television program) -Letterman, David -Leno, Jay -Talk shows -Includes index -The late shift -Letterman, Leno, and the network battle for the night -1993 -Carter, Bill -Tonight show (Television program) -Letterman, David -Leno, Jay -Talk shows -Includes index -51972 - + The late shift + Letterman, Leno, and the network battle for the night + 1993 + Carter, Bill + Tonight show (Television program) + Letterman, David + Leno, Jay + Talk shows + Includes index + + The late shift + Letterman, Leno, and the network battle for the night + 1993 + Carter, Bill + Tonight show (Television program) + Letterman, David + Leno, Jay + Talk shows + Includes index + + 1 + 51972 + the: field=title vecf[1] += mult(6) / length(3); the: field=title-remainder vecf[1] += mult(10) / length(9); idf[1] = log(((1 + total(12))/termoccur(11)); the: relevance += 100000 * vecf[1](3.111111) * idf[1](0.167054) (51972); score = relevance(51972); - -content: title the late shift author carter bill medium book + + content: title the late shift author carter bill medium book - -The Computer Bible -1973-1980 -Bible. O.T -Bible -Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates -The Computer Bible -1973-1980 -Bible. O.T -Bible -Hebrew and Greek; introductions in English -Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates -33410 - + The Computer Bible + 1973-1980 + Bible. O.T + Bible + Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates + + The Computer Bible + 1973-1980 + Bible. O.T + Bible + Hebrew and Greek; introductions in English + Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates + + 1 + 33410 + the: field=title vecf[1] += mult(6) / length(3); idf[1] = log(((1 + total(12))/termoccur(11)); the: relevance += 100000 * vecf[1](2.000000) * idf[1](0.167054) (33410); score = relevance(33410); - -content: title the computer bible author medium book + + content: title the computer bible author medium book - -The religious teachers of Greece -1972 -Adam, James -Greek literature -Philosophy, Ancient -Greece -Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures -The religious teachers of Greece -1972 -Adam, James -Greek literature -Philosophy, Ancient -Greece -Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures -Includes bibliographical references -29158 - + The religious teachers of Greece + 1972 + Adam, James + Greek literature + Philosophy, Ancient + Greece + Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures + + The religious teachers of Greece + 1972 + Adam, James + Greek literature + Philosophy, Ancient + Greece + Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures + Includes bibliographical references + + 1 + 29158 + the: field=title vecf[1] += mult(6) / length(5); the: field=description vecf[1] += mult(6) / length(11); idf[1] = log(((1 + total(12))/termoccur(11)); the: relevance += 100000 * vecf[1](1.745455) * idf[1](0.167054) (29158); score = relevance(29158); - -content: title the religious teachers of greece author adam james medium book + + content: title the religious teachers of greece author adam james medium book - -The Puget Sound Region -a portfolio of thematic computer maps -1974 -Mairs, John W -Cartography -Puget Sound region (Wash.) -Scale of maps ca. 1:1,000,000 -The Puget Sound Region -a portfolio of thematic computer maps -1974 -Mairs, John W -Cartography -Puget Sound region (Wash.) -Scale of maps ca. 1:1,000,000 -Bibliography: p. 4 -25058 - + The Puget Sound Region + a portfolio of thematic computer maps + 1974 + Mairs, John W + Cartography + Puget Sound region (Wash.) + Scale of maps ca. 1:1,000,000 + + The Puget Sound Region + a portfolio of thematic computer maps + 1974 + Mairs, John W + Cartography + Puget Sound region (Wash.) + Scale of maps ca. 1:1,000,000 + Bibliography: p. 4 + + 1 + 25058 + the: field=title vecf[1] += mult(6) / length(4); idf[1] = log(((1 + total(12))/termoccur(11)); the: relevance += 100000 * vecf[1](1.500000) * idf[1](0.167054) (25058); score = relevance(25058); - -content: title the puget sound region author mairs john w medium book + + content: title the puget sound region author mairs john w medium book - -Reconstruction tomography in diagnostic radiology and nuclear medicine -proceedings of the workshop -1977 -Tomography -Includes bibliographical references and index -Reconstruction tomography in diagnostic radiology and nuclear medicine -proceedings of the workshop -1977 -Tomography -Includes bibliographical references and index -20881 - + Reconstruction tomography in diagnostic radiology and nuclear medicine + proceedings of the workshop + 1977 + Tomography + Includes bibliographical references and index + + Reconstruction tomography in diagnostic radiology and nuclear medicine + proceedings of the workshop + 1977 + Tomography + Includes bibliographical references and index + + 1 + 20881 + the: field=title-remainder vecf[1] += mult(5) / length(4); idf[1] = log(((1 + total(12))/termoccur(11)); the: relevance += 100000 * vecf[1](1.250000) * idf[1](0.167054) (20881); score = relevance(20881); - -content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book + + content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book - -Computer processing of dynamic images from an Anger scintillation camera -the proceedings of a workshop -1974 -Radioisotope scanning -Scintillation cameras -Imaging systems in medicine -Includes bibliographical references and index -Computer processing of dynamic images from an Anger scintillation camera -the proceedings of a workshop -1974 -Radioisotope scanning -Scintillation cameras -Imaging systems in medicine -Includes bibliographical references and index -16705 - + Computer processing of dynamic images from an Anger scintillation camera + the proceedings of a workshop + 1974 + Radioisotope scanning + Scintillation cameras + Imaging systems in medicine + Includes bibliographical references and index + + Computer processing of dynamic images from an Anger scintillation camera + the proceedings of a workshop + 1974 + Radioisotope scanning + Scintillation cameras + Imaging systems in medicine + Includes bibliographical references and index + + 1 + 16705 + the: field=title-remainder vecf[1] += mult(5) / length(5); idf[1] = log(((1 + total(12))/termoccur(11)); the: relevance += 100000 * vecf[1](1.000000) * idf[1](0.167054) (16705); score = relevance(16705); - -content: title computer processing of dynamic images from an anger scintillation camera author medium book + + content: title computer processing of dynamic images from an anger scintillation camera author medium book - -Dealing with dropouts -the urban superintendents' call to action -1987 -Paulu, Nancy -Dropouts -Distributed to depository libraries in microfiche -Dealing with dropouts -the urban superintendents' call to action -1987 -Paulu, Nancy -Dropouts -Microfiche -Distributed to depository libraries in microfiche -13921 - + Dealing with dropouts + the urban superintendents' call to action + 1987 + Paulu, Nancy + Dropouts + Distributed to depository libraries in microfiche + + Dealing with dropouts + the urban superintendents' call to action + 1987 + Paulu, Nancy + Dropouts + Microfiche + Distributed to depository libraries in microfiche + + 1 + 13921 + the: field=title-remainder vecf[1] += mult(5) / length(6); idf[1] = log(((1 + total(12))/termoccur(11)); the: relevance += 100000 * vecf[1](0.833333) * idf[1](0.167054) (13921); score = relevance(13921); - -content: title dealing with dropouts author paulu nancy medium + + content: title dealing with dropouts author paulu nancy medium - -National dissemination model for the I'M SPECIAL Program of Physical Education for the Handicapped, 1983-1986 -final report, I'M SPECIAL network -1986 -Physical education -Handicapped children -Distributed to depository libraries in microfiche -National dissemination model for the I'M SPECIAL Program of Physical Education for the Handicapped, 1983-1986 -final report, I'M SPECIAL network -1986 -Physical education -Handicapped children -Microfiche -Distributed to depository libraries in microfiche -13364 - + National dissemination model for the I'M SPECIAL Program of Physical Education for the Handicapped, 1983-1986 + final report, I'M SPECIAL network + 1986 + Physical education + Handicapped children + Distributed to depository libraries in microfiche + + National dissemination model for the I'M SPECIAL Program of Physical Education for the Handicapped, 1983-1986 + final report, I'M SPECIAL network + 1986 + Physical education + Handicapped children + Microfiche + Distributed to depository libraries in microfiche + + 1 + 13364 + the: field=title vecf[1] += mult(12) / length(15); idf[1] = log(((1 + total(12))/termoccur(11)); the: relevance += 100000 * vecf[1](0.800000) * idf[1](0.167054) (13364); score = relevance(13364); - -content: title national dissemination model for the i m special program of physical education for the handicapped author medium + + content: title national dissemination model for the i m special program of physical education for the handicapped author medium - -The use of passwords for controlled access to computer resources -1977 -Wood, Helen M -Computers -The use of passwords for controlled access to computer resources -1977 -Wood, Helen M -Computers -10023 - + The use of passwords for controlled access to computer resources + 1977 + Wood, Helen M + Computers + + The use of passwords for controlled access to computer resources + 1977 + Wood, Helen M + Computers + + 1 + 10023 + the: field=title vecf[1] += mult(6) / length(10); idf[1] = log(((1 + total(12))/termoccur(11)); the: relevance += 100000 * vecf[1](0.600000) * idf[1](0.167054) (10023); score = relevance(10023); - -content: title the use of passwords for controlled access to computer resources author wood helen m medium book + + content: title the use of passwords for controlled access to computer resources author wood helen m medium book - -Computer science & technology -proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 -1977 -Optical pattern recognition -Computer science & technology -proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 -1977 -Optical pattern recognition -5966 - + Computer science & technology + proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 + 1977 + Optical pattern recognition + + Computer science & technology + proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 + 1977 + Optical pattern recognition + + 1 + 5966 + the: field=title-remainder vecf[1] += mult(5) / length(14); idf[1] = log(((1 + total(12))/termoccur(11)); the: relevance += 100000 * vecf[1](0.357143) * idf[1](0.167054) (5966); score = relevance(5966); - -content: title computer science technology author medium book + + content: title computer science technology author medium book - -Technology programs that work -1984 -United States -Educational technology -Federal aid to education -"This directory was developed by the Technology for the National Diffusion Network Project, Teachers College, Columbia University pursuant to contract number OE-300-83-0253, U.S. Department of Education"--T.p. verso -Technology programs that work -1984 -United States -Educational technology -Federal aid to education -"Spons agency Office of Educational Research and Improvement"--Doc. resume -"This directory was developed by the Technology for the National Diffusion Network Project, Teachers College, Columbia University pursuant to contract number OE-300-83-0253, U.S. Department of Education"--T.p. verso -Distributed to depository libraries in microfiche -"December 1984." -Includes indexes -3341 - + Technology programs that work + 1984 + United States + Educational technology + Federal aid to education + "This directory was developed by the Technology for the National Diffusion Network Project, Teachers College, Columbia University pursuant to contract number OE-300-83-0253, U.S. Department of Education"--T.p. verso + + Technology programs that work + 1984 + United States + Educational technology + Federal aid to education + "Spons agency Office of Educational Research and Improvement"--Doc. resume + "This directory was developed by the Technology for the National Diffusion Network Project, Teachers College, Columbia University pursuant to contract number OE-300-83-0253, U.S. Department of Education"--T.p. verso + Distributed to depository libraries in microfiche + "December 1984." + Includes indexes + + 1 + 3341 + the: field=description vecf[1] += mult(6) / length(30); idf[1] = log(((1 + total(12))/termoccur(11)); the: relevance += 100000 * vecf[1](0.200000) * idf[1](0.167054) (3341); score = relevance(3341); - -content: title technology programs that work author medium book + + content: title technology programs that work author medium book - -Check this out -library program models -1987 -Seager, Andrew J -Libraries and community -Libraries and education -School libraries -Instructional materials centers -Public libraries -Distributed to depository libraries in microfiche -Check this out -library program models -1987 -Seager, Andrew J -Libraries and community -Libraries and education -School libraries -Instructional materials centers -Public libraries -Distributed to depository libraries in microfiche -"July 1987." -Includes bibliographical references -"LP 87-403c." -0 - + Check this out + library program models + 1987 + Seager, Andrew J + Libraries and community + Libraries and education + School libraries + Instructional materials centers + Public libraries + Distributed to depository libraries in microfiche + + Check this out + library program models + 1987 + Seager, Andrew J + Libraries and community + Libraries and education + School libraries + Instructional materials centers + Public libraries + Distributed to depository libraries in microfiche + "July 1987." + Includes bibliographical references + "LP 87-403c." + + 1 + 0 + idf[1] = log(((1 + total(12))/termoccur(11)); the: relevance += 100000 * vecf[1](0.000000) * idf[1](0.167054) (0); score = relevance(0); - -content: title check this out author seager andrew j medium book + + content: title check this out author seager andrew j medium book \ No newline at end of file diff --git a/test/test_filter_16.res b/test/test_filter_16.res index 1617afe..e290d20 100644 --- a/test/test_filter_16.res +++ b/test/test_filter_16.res @@ -6,335 +6,373 @@ 0 19 - -Washington metropolitan area rail computer feasibility study; -final report -1971 -Englund, Carl R -Railroads -"Contract DOT-UT-10003." -Washington metropolitan area rail computer feasibility study; -final report -1971 -Englund, Carl R -Railroads -"Contract DOT-UT-10003." -content: title washington metropolitan area rail computer feasibility study author englund carl r medium book + Washington metropolitan area rail computer feasibility study; + final report + 1971 + Englund, Carl R + Railroads + "Contract DOT-UT-10003." + + Washington metropolitan area rail computer feasibility study; + final report + 1971 + Englund, Carl R + Railroads + "Contract DOT-UT-10003." + + 1 + content: title washington metropolitan area rail computer feasibility study author englund carl r medium book - -The use of passwords for controlled access to computer resources -1977 -Wood, Helen M -Computers -The use of passwords for controlled access to computer resources -1977 -Wood, Helen M -Computers -content: title the use of passwords for controlled access to computer resources author wood helen m medium book + The use of passwords for controlled access to computer resources + 1977 + Wood, Helen M + Computers + + The use of passwords for controlled access to computer resources + 1977 + Wood, Helen M + Computers + + 1 + content: title the use of passwords for controlled access to computer resources author wood helen m medium book - -Technology programs that work -1984 -United States -Educational technology -Federal aid to education -"This directory was developed by the Technology for the National Diffusion Network Project, Teachers College, Columbia University pursuant to contract number OE-300-83-0253, U.S. Department of Education"--T.p. verso -Technology programs that work -1984 -United States -Educational technology -Federal aid to education -"Spons agency Office of Educational Research and Improvement"--Doc. resume -"This directory was developed by the Technology for the National Diffusion Network Project, Teachers College, Columbia University pursuant to contract number OE-300-83-0253, U.S. Department of Education"--T.p. verso -Distributed to depository libraries in microfiche -"December 1984." -Includes indexes -content: title technology programs that work author medium book + Technology programs that work + 1984 + United States + Educational technology + Federal aid to education + "This directory was developed by the Technology for the National Diffusion Network Project, Teachers College, Columbia University pursuant to contract number OE-300-83-0253, U.S. Department of Education"--T.p. verso + + Technology programs that work + 1984 + United States + Educational technology + Federal aid to education + "Spons agency Office of Educational Research and Improvement"--Doc. resume + "This directory was developed by the Technology for the National Diffusion Network Project, Teachers College, Columbia University pursuant to contract number OE-300-83-0253, U.S. Department of Education"--T.p. verso + Distributed to depository libraries in microfiche + "December 1984." + Includes indexes + + 1 + content: title technology programs that work author medium book - -The religious teachers of Greece -1972 -Adam, James -Greek literature -Philosophy, Ancient -Greece -Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures -The religious teachers of Greece -1972 -Adam, James -Greek literature -Philosophy, Ancient -Greece -Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures -Includes bibliographical references -content: title the religious teachers of greece author adam james medium book + The religious teachers of Greece + 1972 + Adam, James + Greek literature + Philosophy, Ancient + Greece + Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures + + The religious teachers of Greece + 1972 + Adam, James + Greek literature + Philosophy, Ancient + Greece + Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures + Includes bibliographical references + + 1 + content: title the religious teachers of greece author adam james medium book - -Reconstruction tomography in diagnostic radiology and nuclear medicine -proceedings of the workshop -1977 -Tomography -Includes bibliographical references and index -Reconstruction tomography in diagnostic radiology and nuclear medicine -proceedings of the workshop -1977 -Tomography -Includes bibliographical references and index -content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book + Reconstruction tomography in diagnostic radiology and nuclear medicine + proceedings of the workshop + 1977 + Tomography + Includes bibliographical references and index + + Reconstruction tomography in diagnostic radiology and nuclear medicine + proceedings of the workshop + 1977 + Tomography + Includes bibliographical references and index + + 1 + content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book - -The Puget Sound Region -a portfolio of thematic computer maps -1974 -Mairs, John W -Cartography -Puget Sound region (Wash.) -Scale of maps ca. 1:1,000,000 -The Puget Sound Region -a portfolio of thematic computer maps -1974 -Mairs, John W -Cartography -Puget Sound region (Wash.) -Scale of maps ca. 1:1,000,000 -Bibliography: p. 4 -content: title the puget sound region author mairs john w medium book + The Puget Sound Region + a portfolio of thematic computer maps + 1974 + Mairs, John W + Cartography + Puget Sound region (Wash.) + Scale of maps ca. 1:1,000,000 + + The Puget Sound Region + a portfolio of thematic computer maps + 1974 + Mairs, John W + Cartography + Puget Sound region (Wash.) + Scale of maps ca. 1:1,000,000 + Bibliography: p. 4 + + 1 + content: title the puget sound region author mairs john w medium book - -A plan for community college computer development -1971 -Universities and colleges -Community colleges -Cover title -A plan for community college computer development -1971 -Universities and colleges -Community colleges -Cover title -content: title a plan for community college computer development author medium book + A plan for community college computer development + 1971 + Universities and colleges + Community colleges + Cover title + + A plan for community college computer development + 1971 + Universities and colleges + Community colleges + Cover title + + 1 + content: title a plan for community college computer development author medium book - -The late shift -Letterman, Leno, and the network battle for the night -1993 -Carter, Bill -Tonight show (Television program) -Letterman, David -Leno, Jay -Talk shows -Includes index -The late shift -Letterman, Leno, and the network battle for the night -1993 -Carter, Bill -Tonight show (Television program) -Letterman, David -Leno, Jay -Talk shows -Includes index -content: title the late shift author carter bill medium book + The late shift + Letterman, Leno, and the network battle for the night + 1993 + Carter, Bill + Tonight show (Television program) + Letterman, David + Leno, Jay + Talk shows + Includes index + + The late shift + Letterman, Leno, and the network battle for the night + 1993 + Carter, Bill + Tonight show (Television program) + Letterman, David + Leno, Jay + Talk shows + Includes index + + 1 + content: title the late shift author carter bill medium book - -Internet world -1992 -Internet (Computer network) -Computer networks -Information networks -Computer Systems -Online Systems -Title from caption -Internet world -1992 -Internet (Computer network) -Computer networks -Information networks -Computer Systems -Online Systems -Title from caption -content: title internet world author medium book + Internet world + 1992 + Internet (Computer network) + Computer networks + Information networks + Computer Systems + Online Systems + Title from caption + + Internet world + 1992 + Internet (Computer network) + Computer networks + Information networks + Computer Systems + Online Systems + Title from caption + + 1 + content: title internet world author medium book - -Internet -mailing lists -1993 -Internet (Computer network) -Mailing lists -Includes index -Internet -mailing lists -1993 -Internet (Computer network) -Mailing lists -Includes index -content: title internet author medium book + Internet + mailing lists + 1993 + Internet (Computer network) + Mailing lists + Includes index + + Internet + mailing lists + 1993 + Internet (Computer network) + Mailing lists + Includes index + + 1 + content: title internet author medium book - -Info Canada -1991 -Includes: Network world Canada, Sept. 1991-Jan. 1992 -Info Canada -1991 -Title from caption -Includes: Network world Canada, Sept. 1991-Jan. 1992 -content: title info canada author medium book + Info Canada + 1991 + Includes: Network world Canada, Sept. 1991-Jan. 1992 + + Info Canada + 1991 + Title from caption + Includes: Network world Canada, Sept. 1991-Jan. 1992 + + 1 + content: title info canada author medium book - -How to program a computer -Jack Collins -How to program a computer -Jack Collins - -How to program a computer -Jack Collins -2 -content: title how to program a computer author jack collins medium book + How to program a computer + Jack Collins + + How to program a computer + Jack Collins + + + How to program a computer + Jack Collins + + 2 + content: title how to program a computer author jack collins medium book - -Four psalms -XXIII, XXXVI, LII, CXXI -1980 -Smith, George Adam -Bible -Four psalms -XXIII, XXXVI, LII, CXXI -1980 -Smith, George Adam -Bible -Bible -Bible -Bible -content: title four psalms author smith george adam medium book + Four psalms + XXIII, XXXVI, LII, CXXI + 1980 + Smith, George Adam + Bible + + Four psalms + XXIII, XXXVI, LII, CXXI + 1980 + Smith, George Adam + Bible + Bible + Bible + Bible + + 1 + content: title four psalms author smith george adam medium book - -FEDLINK services directory for fiscal year -FEDLINK (Network) -Library information networks -Libraries, Governmental, administrative, etc -Description based on: 1990 -FEDLINK services directory for fiscal year -FEDLINK (Network) -Library information networks -Libraries, Governmental, administrative, etc -Description based on: 1990 -content: title fedlink services directory for fiscal year author medium book + FEDLINK services directory for fiscal year + FEDLINK (Network) + Library information networks + Libraries, Governmental, administrative, etc + Description based on: 1990 + + FEDLINK services directory for fiscal year + FEDLINK (Network) + Library information networks + Libraries, Governmental, administrative, etc + Description based on: 1990 + + 1 + content: title fedlink services directory for fiscal year author medium book - -Deuteronomy -1968 -Oberst, Bruce -Bible. O.T. Deuteronomy -Bibliography: p. 449-452 -Deuteronomy -1968 -Oberst, Bruce -Bible. O.T. Deuteronomy -Bibliography: p. 449-452 -content: title deuteronomy author oberst bruce medium book + Deuteronomy + 1968 + Oberst, Bruce + Bible. O.T. Deuteronomy + Bibliography: p. 449-452 + + Deuteronomy + 1968 + Oberst, Bruce + Bible. O.T. Deuteronomy + Bibliography: p. 449-452 + + 1 + content: title deuteronomy author oberst bruce medium book - -Computer science & technology -proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 -1977 -Optical pattern recognition -Computer science & technology -proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 -1977 -Optical pattern recognition -content: title computer science technology author medium book + Computer science & technology + proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 + 1977 + Optical pattern recognition + + Computer science & technology + proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 + 1977 + Optical pattern recognition + + 1 + content: title computer science technology author medium book - -Computer processing of dynamic images from an Anger scintillation camera -the proceedings of a workshop -1974 -Radioisotope scanning -Scintillation cameras -Imaging systems in medicine -Includes bibliographical references and index -Computer processing of dynamic images from an Anger scintillation camera -the proceedings of a workshop -1974 -Radioisotope scanning -Scintillation cameras -Imaging systems in medicine -Includes bibliographical references and index -content: title computer processing of dynamic images from an anger scintillation camera author medium book + Computer processing of dynamic images from an Anger scintillation camera + the proceedings of a workshop + 1974 + Radioisotope scanning + Scintillation cameras + Imaging systems in medicine + Includes bibliographical references and index + + Computer processing of dynamic images from an Anger scintillation camera + the proceedings of a workshop + 1974 + Radioisotope scanning + Scintillation cameras + Imaging systems in medicine + Includes bibliographical references and index + + 1 + content: title computer processing of dynamic images from an anger scintillation camera author medium book - -The Computer Bible -1973-1980 -Bible. O.T -Bible -Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates -The Computer Bible -1973-1980 -Bible. O.T -Bible -Hebrew and Greek; introductions in English -Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates -content: title the computer bible author medium book + The Computer Bible + 1973-1980 + Bible. O.T + Bible + Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates + + The Computer Bible + 1973-1980 + Bible. O.T + Bible + Hebrew and Greek; introductions in English + Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates + + 1 + content: title the computer bible author medium book - -Check this out -library program models -1987 -Seager, Andrew J -Libraries and community -Libraries and education -School libraries -Instructional materials centers -Public libraries -Distributed to depository libraries in microfiche -Check this out -library program models -1987 -Seager, Andrew J -Libraries and community -Libraries and education -School libraries -Instructional materials centers -Public libraries -Distributed to depository libraries in microfiche -"July 1987." -Includes bibliographical references -"LP 87-403c." -content: title check this out author seager andrew j medium book + Check this out + library program models + 1987 + Seager, Andrew J + Libraries and community + Libraries and education + School libraries + Instructional materials centers + Public libraries + Distributed to depository libraries in microfiche + + Check this out + library program models + 1987 + Seager, Andrew J + Libraries and community + Libraries and education + School libraries + Instructional materials centers + Public libraries + Distributed to depository libraries in microfiche + "July 1987." + Includes bibliographical references + "LP 87-403c." + + 1 + content: title check this out author seager andrew j medium book \ No newline at end of file diff --git a/test/test_filter_17.res b/test/test_filter_17.res index 0cf01fa..c216196 100644 --- a/test/test_filter_17.res +++ b/test/test_filter_17.res @@ -6,343 +6,383 @@ 0 20 - -Washington metropolitan area rail computer feasibility study; -final report -1971 -Englund, Carl R -Railroads -"Contract DOT-UT-10003." -Washington metropolitan area rail computer feasibility study; -final report -1971 -Englund, Carl R -Railroads -"Contract DOT-UT-10003." -content: title washington metropolitan area rail computer feasibility study author englund carl r medium book + Washington metropolitan area rail computer feasibility study; + final report + 1971 + Englund, Carl R + Railroads + "Contract DOT-UT-10003." + + Washington metropolitan area rail computer feasibility study; + final report + 1971 + Englund, Carl R + Railroads + "Contract DOT-UT-10003." + + 1 + content: title washington metropolitan area rail computer feasibility study author englund carl r medium book - -The use of passwords for controlled access to computer resources -1977 -Wood, Helen M -Computers -The use of passwords for controlled access to computer resources -1977 -Wood, Helen M -Computers -content: title the use of passwords for controlled access to computer resources author wood helen m medium book + The use of passwords for controlled access to computer resources + 1977 + Wood, Helen M + Computers + + The use of passwords for controlled access to computer resources + 1977 + Wood, Helen M + Computers + + 1 + content: title the use of passwords for controlled access to computer resources author wood helen m medium book - -Technology programs that work -1984 -United States -Educational technology -Federal aid to education -"This directory was developed by the Technology for the National Diffusion Network Project, Teachers College, Columbia University pursuant to contract number OE-300-83-0253, U.S. Department of Education"--T.p. verso -Technology programs that work -1984 -United States -Educational technology -Federal aid to education -"Spons agency Office of Educational Research and Improvement"--Doc. resume -"This directory was developed by the Technology for the National Diffusion Network Project, Teachers College, Columbia University pursuant to contract number OE-300-83-0253, U.S. Department of Education"--T.p. verso -Distributed to depository libraries in microfiche -"December 1984." -Includes indexes -content: title technology programs that work author medium book + Technology programs that work + 1984 + United States + Educational technology + Federal aid to education + "This directory was developed by the Technology for the National Diffusion Network Project, Teachers College, Columbia University pursuant to contract number OE-300-83-0253, U.S. Department of Education"--T.p. verso + + Technology programs that work + 1984 + United States + Educational technology + Federal aid to education + "Spons agency Office of Educational Research and Improvement"--Doc. resume + "This directory was developed by the Technology for the National Diffusion Network Project, Teachers College, Columbia University pursuant to contract number OE-300-83-0253, U.S. Department of Education"--T.p. verso + Distributed to depository libraries in microfiche + "December 1984." + Includes indexes + + 1 + content: title technology programs that work author medium book - -The religious teachers of Greece -1972 -Adam, James -Greek literature -Philosophy, Ancient -Greece -Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures -The religious teachers of Greece -1972 -Adam, James -Greek literature -Philosophy, Ancient -Greece -Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures -Includes bibliographical references -content: title the religious teachers of greece author adam james medium book + The religious teachers of Greece + 1972 + Adam, James + Greek literature + Philosophy, Ancient + Greece + Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures + + The religious teachers of Greece + 1972 + Adam, James + Greek literature + Philosophy, Ancient + Greece + Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures + Includes bibliographical references + + 1 + content: title the religious teachers of greece author adam james medium book - -Reconstruction tomography in diagnostic radiology and nuclear medicine -proceedings of the workshop -1977 -Tomography -Includes bibliographical references and index -Reconstruction tomography in diagnostic radiology and nuclear medicine -proceedings of the workshop -1977 -Tomography -Includes bibliographical references and index -content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book + Reconstruction tomography in diagnostic radiology and nuclear medicine + proceedings of the workshop + 1977 + Tomography + Includes bibliographical references and index + + Reconstruction tomography in diagnostic radiology and nuclear medicine + proceedings of the workshop + 1977 + Tomography + Includes bibliographical references and index + + 1 + content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book - -The Puget Sound Region -a portfolio of thematic computer maps -1974 -Mairs, John W -Cartography -Puget Sound region (Wash.) -Scale of maps ca. 1:1,000,000 -The Puget Sound Region -a portfolio of thematic computer maps -1974 -Mairs, John W -Cartography -Puget Sound region (Wash.) -Scale of maps ca. 1:1,000,000 -Bibliography: p. 4 -content: title the puget sound region author mairs john w medium book + The Puget Sound Region + a portfolio of thematic computer maps + 1974 + Mairs, John W + Cartography + Puget Sound region (Wash.) + Scale of maps ca. 1:1,000,000 + + The Puget Sound Region + a portfolio of thematic computer maps + 1974 + Mairs, John W + Cartography + Puget Sound region (Wash.) + Scale of maps ca. 1:1,000,000 + Bibliography: p. 4 + + 1 + content: title the puget sound region author mairs john w medium book - -A plan for community college computer development -1971 -Universities and colleges -Community colleges -Cover title -A plan for community college computer development -1971 -Universities and colleges -Community colleges -Cover title -content: title a plan for community college computer development author medium book + A plan for community college computer development + 1971 + Universities and colleges + Community colleges + Cover title + + A plan for community college computer development + 1971 + Universities and colleges + Community colleges + Cover title + + 1 + content: title a plan for community college computer development author medium book - -National dissemination model for the I'M SPECIAL Program of Physical Education for the Handicapped, 1983-1986 -final report, I'M SPECIAL network -1986 -Physical education -Handicapped children -Distributed to depository libraries in microfiche -National dissemination model for the I'M SPECIAL Program of Physical Education for the Handicapped, 1983-1986 -final report, I'M SPECIAL network -1986 -Physical education -Handicapped children -Microfiche -Distributed to depository libraries in microfiche -content: title national dissemination model for the i m special program of physical education for the handicapped author medium + National dissemination model for the I'M SPECIAL Program of Physical Education for the Handicapped, 1983-1986 + final report, I'M SPECIAL network + 1986 + Physical education + Handicapped children + Distributed to depository libraries in microfiche + + National dissemination model for the I'M SPECIAL Program of Physical Education for the Handicapped, 1983-1986 + final report, I'M SPECIAL network + 1986 + Physical education + Handicapped children + Microfiche + Distributed to depository libraries in microfiche + + 1 + content: title national dissemination model for the i m special program of physical education for the handicapped author medium - -The late shift -Letterman, Leno, and the network battle for the night -1993 -Carter, Bill -Tonight show (Television program) -Letterman, David -Leno, Jay -Talk shows -Includes index -The late shift -Letterman, Leno, and the network battle for the night -1993 -Carter, Bill -Tonight show (Television program) -Letterman, David -Leno, Jay -Talk shows -Includes index -content: title the late shift author carter bill medium book + The late shift + Letterman, Leno, and the network battle for the night + 1993 + Carter, Bill + Tonight show (Television program) + Letterman, David + Leno, Jay + Talk shows + Includes index + + The late shift + Letterman, Leno, and the network battle for the night + 1993 + Carter, Bill + Tonight show (Television program) + Letterman, David + Leno, Jay + Talk shows + Includes index + + 1 + content: title the late shift author carter bill medium book - -Internet world -1992 -Internet (Computer network) -Computer networks -Information networks -Computer Systems -Online Systems -Title from caption -Internet world -1992 -Internet (Computer network) -Computer networks -Information networks -Computer Systems -Online Systems -Title from caption -content: title internet world author medium book + Internet world + 1992 + Internet (Computer network) + Computer networks + Information networks + Computer Systems + Online Systems + Title from caption + + Internet world + 1992 + Internet (Computer network) + Computer networks + Information networks + Computer Systems + Online Systems + Title from caption + + 1 + content: title internet world author medium book - -Internet -mailing lists -1993 -Internet (Computer network) -Mailing lists -Includes index -Internet -mailing lists -1993 -Internet (Computer network) -Mailing lists -Includes index -content: title internet author medium book + Internet + mailing lists + 1993 + Internet (Computer network) + Mailing lists + Includes index + + Internet + mailing lists + 1993 + Internet (Computer network) + Mailing lists + Includes index + + 1 + content: title internet author medium book - -Info Canada -1991 -Includes: Network world Canada, Sept. 1991-Jan. 1992 -Info Canada -1991 -Title from caption -Includes: Network world Canada, Sept. 1991-Jan. 1992 -content: title info canada author medium book + Info Canada + 1991 + Includes: Network world Canada, Sept. 1991-Jan. 1992 + + Info Canada + 1991 + Title from caption + Includes: Network world Canada, Sept. 1991-Jan. 1992 + + 1 + content: title info canada author medium book - -How to program a computer -Jack Collins -How to program a computer -Jack Collins - -How to program a computer -Jack Collins -2 -content: title how to program a computer author jack collins medium book + How to program a computer + Jack Collins + + How to program a computer + Jack Collins + + + How to program a computer + Jack Collins + + 2 + content: title how to program a computer author jack collins medium book - -Four psalms -XXIII, XXXVI, LII, CXXI -1980 -Smith, George Adam -Bible -Four psalms -XXIII, XXXVI, LII, CXXI -1980 -Smith, George Adam -Bible -Bible -Bible -Bible -content: title four psalms author smith george adam medium book + Four psalms + XXIII, XXXVI, LII, CXXI + 1980 + Smith, George Adam + Bible + + Four psalms + XXIII, XXXVI, LII, CXXI + 1980 + Smith, George Adam + Bible + Bible + Bible + Bible + + 1 + content: title four psalms author smith george adam medium book - -FEDLINK services directory for fiscal year -FEDLINK (Network) -Library information networks -Libraries, Governmental, administrative, etc -Description based on: 1990 -FEDLINK services directory for fiscal year -FEDLINK (Network) -Library information networks -Libraries, Governmental, administrative, etc -Description based on: 1990 -content: title fedlink services directory for fiscal year author medium book + FEDLINK services directory for fiscal year + FEDLINK (Network) + Library information networks + Libraries, Governmental, administrative, etc + Description based on: 1990 + + FEDLINK services directory for fiscal year + FEDLINK (Network) + Library information networks + Libraries, Governmental, administrative, etc + Description based on: 1990 + + 1 + content: title fedlink services directory for fiscal year author medium book - -Deuteronomy -1968 -Oberst, Bruce -Bible. O.T. Deuteronomy -Bibliography: p. 449-452 -Deuteronomy -1968 -Oberst, Bruce -Bible. O.T. Deuteronomy -Bibliography: p. 449-452 -content: title deuteronomy author oberst bruce medium book + Deuteronomy + 1968 + Oberst, Bruce + Bible. O.T. Deuteronomy + Bibliography: p. 449-452 + + Deuteronomy + 1968 + Oberst, Bruce + Bible. O.T. Deuteronomy + Bibliography: p. 449-452 + + 1 + content: title deuteronomy author oberst bruce medium book - -Dealing with dropouts -the urban superintendents' call to action -1987 -Paulu, Nancy -Dropouts -Distributed to depository libraries in microfiche -Dealing with dropouts -the urban superintendents' call to action -1987 -Paulu, Nancy -Dropouts -Microfiche -Distributed to depository libraries in microfiche -content: title dealing with dropouts author paulu nancy medium + Dealing with dropouts + the urban superintendents' call to action + 1987 + Paulu, Nancy + Dropouts + Distributed to depository libraries in microfiche + + Dealing with dropouts + the urban superintendents' call to action + 1987 + Paulu, Nancy + Dropouts + Microfiche + Distributed to depository libraries in microfiche + + 1 + content: title dealing with dropouts author paulu nancy medium - -Computer science & technology -proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 -1977 -Optical pattern recognition -Computer science & technology -proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 -1977 -Optical pattern recognition -content: title computer science technology author medium book + Computer science & technology + proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 + 1977 + Optical pattern recognition + + Computer science & technology + proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 + 1977 + Optical pattern recognition + + 1 + content: title computer science technology author medium book - -Computer processing of dynamic images from an Anger scintillation camera -the proceedings of a workshop -1974 -Radioisotope scanning -Scintillation cameras -Imaging systems in medicine -Includes bibliographical references and index -Computer processing of dynamic images from an Anger scintillation camera -the proceedings of a workshop -1974 -Radioisotope scanning -Scintillation cameras -Imaging systems in medicine -Includes bibliographical references and index -content: title computer processing of dynamic images from an anger scintillation camera author medium book + Computer processing of dynamic images from an Anger scintillation camera + the proceedings of a workshop + 1974 + Radioisotope scanning + Scintillation cameras + Imaging systems in medicine + Includes bibliographical references and index + + Computer processing of dynamic images from an Anger scintillation camera + the proceedings of a workshop + 1974 + Radioisotope scanning + Scintillation cameras + Imaging systems in medicine + Includes bibliographical references and index + + 1 + content: title computer processing of dynamic images from an anger scintillation camera author medium book - -The Computer Bible -1973-1980 -Bible. O.T -Bible -Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates -The Computer Bible -1973-1980 -Bible. O.T -Bible -Hebrew and Greek; introductions in English -Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates -content: title the computer bible author medium book + The Computer Bible + 1973-1980 + Bible. O.T + Bible + Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates + + The Computer Bible + 1973-1980 + Bible. O.T + Bible + Hebrew and Greek; introductions in English + Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates + + 1 + content: title the computer bible author medium book \ No newline at end of file diff --git a/test/test_filter_3.res b/test/test_filter_3.res index 5868483..d105c2d 100644 --- a/test/test_filter_3.res +++ b/test/test_filter_3.res @@ -6,312 +6,336 @@ 0 12 - -The late shift -Letterman, Leno, and the network battle for the night -1993 -Carter, Bill -Tonight show (Television program) -Letterman, David -Leno, Jay -Talk shows -Includes index -The late shift -Letterman, Leno, and the network battle for the night -1993 -Carter, Bill -Tonight show (Television program) -Letterman, David -Leno, Jay -Talk shows -Includes index -51972 - + The late shift + Letterman, Leno, and the network battle for the night + 1993 + Carter, Bill + Tonight show (Television program) + Letterman, David + Leno, Jay + Talk shows + Includes index + + The late shift + Letterman, Leno, and the network battle for the night + 1993 + Carter, Bill + Tonight show (Television program) + Letterman, David + Leno, Jay + Talk shows + Includes index + + 1 + 51972 + the: field=title vecf[1] += mult(6) / length(3); the: field=title-remainder vecf[1] += mult(10) / length(9); idf[1] = log(((1 + total(12))/termoccur(11)); the: relevance += 100000 * vecf[1](3.111111) * idf[1](0.167054) (51972); score = relevance(51972); - -content: title the late shift author carter bill medium book + + content: title the late shift author carter bill medium book - -The Computer Bible -1973-1980 -Bible. O.T -Bible -Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates -The Computer Bible -1973-1980 -Bible. O.T -Bible -Hebrew and Greek; introductions in English -Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates -33410 - + The Computer Bible + 1973-1980 + Bible. O.T + Bible + Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates + + The Computer Bible + 1973-1980 + Bible. O.T + Bible + Hebrew and Greek; introductions in English + Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates + + 1 + 33410 + the: field=title vecf[1] += mult(6) / length(3); idf[1] = log(((1 + total(12))/termoccur(11)); the: relevance += 100000 * vecf[1](2.000000) * idf[1](0.167054) (33410); score = relevance(33410); - -content: title the computer bible author medium book + + content: title the computer bible author medium book - -The religious teachers of Greece -1972 -Adam, James -Greek literature -Philosophy, Ancient -Greece -Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures -The religious teachers of Greece -1972 -Adam, James -Greek literature -Philosophy, Ancient -Greece -Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures -Includes bibliographical references -29158 - + The religious teachers of Greece + 1972 + Adam, James + Greek literature + Philosophy, Ancient + Greece + Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures + + The religious teachers of Greece + 1972 + Adam, James + Greek literature + Philosophy, Ancient + Greece + Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures + Includes bibliographical references + + 1 + 29158 + the: field=title vecf[1] += mult(6) / length(5); the: field=description vecf[1] += mult(6) / length(11); idf[1] = log(((1 + total(12))/termoccur(11)); the: relevance += 100000 * vecf[1](1.745455) * idf[1](0.167054) (29158); score = relevance(29158); - -content: title the religious teachers of greece author adam james medium book + + content: title the religious teachers of greece author adam james medium book - -The Puget Sound Region -a portfolio of thematic computer maps -1974 -Mairs, John W -Cartography -Puget Sound region (Wash.) -Scale of maps ca. 1:1,000,000 -The Puget Sound Region -a portfolio of thematic computer maps -1974 -Mairs, John W -Cartography -Puget Sound region (Wash.) -Scale of maps ca. 1:1,000,000 -Bibliography: p. 4 -25058 - + The Puget Sound Region + a portfolio of thematic computer maps + 1974 + Mairs, John W + Cartography + Puget Sound region (Wash.) + Scale of maps ca. 1:1,000,000 + + The Puget Sound Region + a portfolio of thematic computer maps + 1974 + Mairs, John W + Cartography + Puget Sound region (Wash.) + Scale of maps ca. 1:1,000,000 + Bibliography: p. 4 + + 1 + 25058 + the: field=title vecf[1] += mult(6) / length(4); idf[1] = log(((1 + total(12))/termoccur(11)); the: relevance += 100000 * vecf[1](1.500000) * idf[1](0.167054) (25058); score = relevance(25058); - -content: title the puget sound region author mairs john w medium book + + content: title the puget sound region author mairs john w medium book - -Reconstruction tomography in diagnostic radiology and nuclear medicine -proceedings of the workshop -1977 -Tomography -Includes bibliographical references and index -Reconstruction tomography in diagnostic radiology and nuclear medicine -proceedings of the workshop -1977 -Tomography -Includes bibliographical references and index -20881 - + Reconstruction tomography in diagnostic radiology and nuclear medicine + proceedings of the workshop + 1977 + Tomography + Includes bibliographical references and index + + Reconstruction tomography in diagnostic radiology and nuclear medicine + proceedings of the workshop + 1977 + Tomography + Includes bibliographical references and index + + 1 + 20881 + the: field=title-remainder vecf[1] += mult(5) / length(4); idf[1] = log(((1 + total(12))/termoccur(11)); the: relevance += 100000 * vecf[1](1.250000) * idf[1](0.167054) (20881); score = relevance(20881); - -content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book + + content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book - -Computer processing of dynamic images from an Anger scintillation camera -the proceedings of a workshop -1974 -Radioisotope scanning -Scintillation cameras -Imaging systems in medicine -Includes bibliographical references and index -Computer processing of dynamic images from an Anger scintillation camera -the proceedings of a workshop -1974 -Radioisotope scanning -Scintillation cameras -Imaging systems in medicine -Includes bibliographical references and index -16705 - + Computer processing of dynamic images from an Anger scintillation camera + the proceedings of a workshop + 1974 + Radioisotope scanning + Scintillation cameras + Imaging systems in medicine + Includes bibliographical references and index + + Computer processing of dynamic images from an Anger scintillation camera + the proceedings of a workshop + 1974 + Radioisotope scanning + Scintillation cameras + Imaging systems in medicine + Includes bibliographical references and index + + 1 + 16705 + the: field=title-remainder vecf[1] += mult(5) / length(5); idf[1] = log(((1 + total(12))/termoccur(11)); the: relevance += 100000 * vecf[1](1.000000) * idf[1](0.167054) (16705); score = relevance(16705); - -content: title computer processing of dynamic images from an anger scintillation camera author medium book + + content: title computer processing of dynamic images from an anger scintillation camera author medium book - -Dealing with dropouts -the urban superintendents' call to action -1987 -Paulu, Nancy -Dropouts -Distributed to depository libraries in microfiche -Dealing with dropouts -the urban superintendents' call to action -1987 -Paulu, Nancy -Dropouts -Microfiche -Distributed to depository libraries in microfiche -13921 - + Dealing with dropouts + the urban superintendents' call to action + 1987 + Paulu, Nancy + Dropouts + Distributed to depository libraries in microfiche + + Dealing with dropouts + the urban superintendents' call to action + 1987 + Paulu, Nancy + Dropouts + Microfiche + Distributed to depository libraries in microfiche + + 1 + 13921 + the: field=title-remainder vecf[1] += mult(5) / length(6); idf[1] = log(((1 + total(12))/termoccur(11)); the: relevance += 100000 * vecf[1](0.833333) * idf[1](0.167054) (13921); score = relevance(13921); - -content: title dealing with dropouts author paulu nancy medium + + content: title dealing with dropouts author paulu nancy medium - -National dissemination model for the I'M SPECIAL Program of Physical Education for the Handicapped, 1983-1986 -final report, I'M SPECIAL network -1986 -Physical education -Handicapped children -Distributed to depository libraries in microfiche -National dissemination model for the I'M SPECIAL Program of Physical Education for the Handicapped, 1983-1986 -final report, I'M SPECIAL network -1986 -Physical education -Handicapped children -Microfiche -Distributed to depository libraries in microfiche -13364 - + National dissemination model for the I'M SPECIAL Program of Physical Education for the Handicapped, 1983-1986 + final report, I'M SPECIAL network + 1986 + Physical education + Handicapped children + Distributed to depository libraries in microfiche + + National dissemination model for the I'M SPECIAL Program of Physical Education for the Handicapped, 1983-1986 + final report, I'M SPECIAL network + 1986 + Physical education + Handicapped children + Microfiche + Distributed to depository libraries in microfiche + + 1 + 13364 + the: field=title vecf[1] += mult(12) / length(15); idf[1] = log(((1 + total(12))/termoccur(11)); the: relevance += 100000 * vecf[1](0.800000) * idf[1](0.167054) (13364); score = relevance(13364); - -content: title national dissemination model for the i m special program of physical education for the handicapped author medium + + content: title national dissemination model for the i m special program of physical education for the handicapped author medium - -The use of passwords for controlled access to computer resources -1977 -Wood, Helen M -Computers -The use of passwords for controlled access to computer resources -1977 -Wood, Helen M -Computers -10023 - + The use of passwords for controlled access to computer resources + 1977 + Wood, Helen M + Computers + + The use of passwords for controlled access to computer resources + 1977 + Wood, Helen M + Computers + + 1 + 10023 + the: field=title vecf[1] += mult(6) / length(10); idf[1] = log(((1 + total(12))/termoccur(11)); the: relevance += 100000 * vecf[1](0.600000) * idf[1](0.167054) (10023); score = relevance(10023); - -content: title the use of passwords for controlled access to computer resources author wood helen m medium book + + content: title the use of passwords for controlled access to computer resources author wood helen m medium book - -Computer science & technology -proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 -1977 -Optical pattern recognition -Computer science & technology -proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 -1977 -Optical pattern recognition -5966 - + Computer science & technology + proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 + 1977 + Optical pattern recognition + + Computer science & technology + proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 + 1977 + Optical pattern recognition + + 1 + 5966 + the: field=title-remainder vecf[1] += mult(5) / length(14); idf[1] = log(((1 + total(12))/termoccur(11)); the: relevance += 100000 * vecf[1](0.357143) * idf[1](0.167054) (5966); score = relevance(5966); - -content: title computer science technology author medium book + + content: title computer science technology author medium book - -Technology programs that work -1984 -United States -Educational technology -Federal aid to education -"This directory was developed by the Technology for the National Diffusion Network Project, Teachers College, Columbia University pursuant to contract number OE-300-83-0253, U.S. Department of Education"--T.p. verso -Technology programs that work -1984 -United States -Educational technology -Federal aid to education -"Spons agency Office of Educational Research and Improvement"--Doc. resume -"This directory was developed by the Technology for the National Diffusion Network Project, Teachers College, Columbia University pursuant to contract number OE-300-83-0253, U.S. Department of Education"--T.p. verso -Distributed to depository libraries in microfiche -"December 1984." -Includes indexes -3341 - + Technology programs that work + 1984 + United States + Educational technology + Federal aid to education + "This directory was developed by the Technology for the National Diffusion Network Project, Teachers College, Columbia University pursuant to contract number OE-300-83-0253, U.S. Department of Education"--T.p. verso + + Technology programs that work + 1984 + United States + Educational technology + Federal aid to education + "Spons agency Office of Educational Research and Improvement"--Doc. resume + "This directory was developed by the Technology for the National Diffusion Network Project, Teachers College, Columbia University pursuant to contract number OE-300-83-0253, U.S. Department of Education"--T.p. verso + Distributed to depository libraries in microfiche + "December 1984." + Includes indexes + + 1 + 3341 + the: field=description vecf[1] += mult(6) / length(30); idf[1] = log(((1 + total(12))/termoccur(11)); the: relevance += 100000 * vecf[1](0.200000) * idf[1](0.167054) (3341); score = relevance(3341); - -content: title technology programs that work author medium book + + content: title technology programs that work author medium book - -Check this out -library program models -1987 -Seager, Andrew J -Libraries and community -Libraries and education -School libraries -Instructional materials centers -Public libraries -Distributed to depository libraries in microfiche -Check this out -library program models -1987 -Seager, Andrew J -Libraries and community -Libraries and education -School libraries -Instructional materials centers -Public libraries -Distributed to depository libraries in microfiche -"July 1987." -Includes bibliographical references -"LP 87-403c." -0 - + Check this out + library program models + 1987 + Seager, Andrew J + Libraries and community + Libraries and education + School libraries + Instructional materials centers + Public libraries + Distributed to depository libraries in microfiche + + Check this out + library program models + 1987 + Seager, Andrew J + Libraries and community + Libraries and education + School libraries + Instructional materials centers + Public libraries + Distributed to depository libraries in microfiche + "July 1987." + Includes bibliographical references + "LP 87-403c." + + 1 + 0 + idf[1] = log(((1 + total(12))/termoccur(11)); the: relevance += 100000 * vecf[1](0.000000) * idf[1](0.167054) (0); score = relevance(0); - -content: title check this out author seager andrew j medium book + + content: title check this out author seager andrew j medium book \ No newline at end of file diff --git a/test/test_filter_6.res b/test/test_filter_6.res index 2de0a16..4f2fae9 100644 --- a/test/test_filter_6.res +++ b/test/test_filter_6.res @@ -6,141 +6,153 @@ 0 6 - -The Computer Bible -1973-1980 -Bible. O.T -Bible -Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates -The Computer Bible -1973-1980 -Bible. O.T -Bible -Hebrew and Greek; introductions in English -Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates -94000 - + The Computer Bible + 1973-1980 + Bible. O.T + Bible + Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates + + The Computer Bible + 1973-1980 + Bible. O.T + Bible + Hebrew and Greek; introductions in English + Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates + + 1 + 94000 + the: field=title vecf[1] += mult(6) / length(3); idf[1] = log(((1 + total(7))/termoccur(5)); the: relevance += 100000 * vecf[1](2.000000) * idf[1](0.470004) (94000); score = relevance(94000); - -content: title the computer bible author medium book + + content: title the computer bible author medium book - -The Puget Sound Region -a portfolio of thematic computer maps -1974 -Mairs, John W -Cartography -Puget Sound region (Wash.) -Scale of maps ca. 1:1,000,000 -The Puget Sound Region -a portfolio of thematic computer maps -1974 -Mairs, John W -Cartography -Puget Sound region (Wash.) -Scale of maps ca. 1:1,000,000 -Bibliography: p. 4 -70500 - + The Puget Sound Region + a portfolio of thematic computer maps + 1974 + Mairs, John W + Cartography + Puget Sound region (Wash.) + Scale of maps ca. 1:1,000,000 + + The Puget Sound Region + a portfolio of thematic computer maps + 1974 + Mairs, John W + Cartography + Puget Sound region (Wash.) + Scale of maps ca. 1:1,000,000 + Bibliography: p. 4 + + 1 + 70500 + the: field=title vecf[1] += mult(6) / length(4); idf[1] = log(((1 + total(7))/termoccur(5)); the: relevance += 100000 * vecf[1](1.500000) * idf[1](0.470004) (70500); score = relevance(70500); - -content: title the puget sound region author mairs john w medium book + + content: title the puget sound region author mairs john w medium book - -Reconstruction tomography in diagnostic radiology and nuclear medicine -proceedings of the workshop -1977 -Tomography -Includes bibliographical references and index -Reconstruction tomography in diagnostic radiology and nuclear medicine -proceedings of the workshop -1977 -Tomography -Includes bibliographical references and index -58750 - + Reconstruction tomography in diagnostic radiology and nuclear medicine + proceedings of the workshop + 1977 + Tomography + Includes bibliographical references and index + + Reconstruction tomography in diagnostic radiology and nuclear medicine + proceedings of the workshop + 1977 + Tomography + Includes bibliographical references and index + + 1 + 58750 + the: field=title-remainder vecf[1] += mult(5) / length(4); idf[1] = log(((1 + total(7))/termoccur(5)); the: relevance += 100000 * vecf[1](1.250000) * idf[1](0.470004) (58750); score = relevance(58750); - -content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book + + content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book - -Computer processing of dynamic images from an Anger scintillation camera -the proceedings of a workshop -1974 -Radioisotope scanning -Scintillation cameras -Imaging systems in medicine -Includes bibliographical references and index -Computer processing of dynamic images from an Anger scintillation camera -the proceedings of a workshop -1974 -Radioisotope scanning -Scintillation cameras -Imaging systems in medicine -Includes bibliographical references and index -47000 - + Computer processing of dynamic images from an Anger scintillation camera + the proceedings of a workshop + 1974 + Radioisotope scanning + Scintillation cameras + Imaging systems in medicine + Includes bibliographical references and index + + Computer processing of dynamic images from an Anger scintillation camera + the proceedings of a workshop + 1974 + Radioisotope scanning + Scintillation cameras + Imaging systems in medicine + Includes bibliographical references and index + + 1 + 47000 + the: field=title-remainder vecf[1] += mult(5) / length(5); idf[1] = log(((1 + total(7))/termoccur(5)); the: relevance += 100000 * vecf[1](1.000000) * idf[1](0.470004) (47000); score = relevance(47000); - -content: title computer processing of dynamic images from an anger scintillation camera author medium book + + content: title computer processing of dynamic images from an anger scintillation camera author medium book - -Computer science & technology -proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 -1977 -Optical pattern recognition -Computer science & technology -proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 -1977 -Optical pattern recognition -16785 - + Computer science & technology + proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 + 1977 + Optical pattern recognition + + Computer science & technology + proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 + 1977 + Optical pattern recognition + + 1 + 16785 + the: field=title-remainder vecf[1] += mult(5) / length(14); idf[1] = log(((1 + total(7))/termoccur(5)); the: relevance += 100000 * vecf[1](0.357143) * idf[1](0.470004) (16785); score = relevance(16785); - -content: title computer science technology author medium book + + content: title computer science technology author medium book - -How to program a computer -Jack Collins -How to program a computer -Jack Collins - -How to program a computer -Jack Collins -2 -0 - + How to program a computer + Jack Collins + + How to program a computer + Jack Collins + + + How to program a computer + Jack Collins + + 2 + 0 + idf[1] = log(((1 + total(7))/termoccur(5)); the: relevance += 100000 * vecf[1](0.000000) * idf[1](0.470004) (0); score = relevance(0); - -content: title how to program a computer author jack collins medium book + + content: title how to program a computer author jack collins medium book \ No newline at end of file diff --git a/test/test_filter_9.res b/test/test_filter_9.res index 2de0a16..4f2fae9 100644 --- a/test/test_filter_9.res +++ b/test/test_filter_9.res @@ -6,141 +6,153 @@ 0 6 - -The Computer Bible -1973-1980 -Bible. O.T -Bible -Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates -The Computer Bible -1973-1980 -Bible. O.T -Bible -Hebrew and Greek; introductions in English -Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates -94000 - + The Computer Bible + 1973-1980 + Bible. O.T + Bible + Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates + + The Computer Bible + 1973-1980 + Bible. O.T + Bible + Hebrew and Greek; introductions in English + Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates + + 1 + 94000 + the: field=title vecf[1] += mult(6) / length(3); idf[1] = log(((1 + total(7))/termoccur(5)); the: relevance += 100000 * vecf[1](2.000000) * idf[1](0.470004) (94000); score = relevance(94000); - -content: title the computer bible author medium book + + content: title the computer bible author medium book - -The Puget Sound Region -a portfolio of thematic computer maps -1974 -Mairs, John W -Cartography -Puget Sound region (Wash.) -Scale of maps ca. 1:1,000,000 -The Puget Sound Region -a portfolio of thematic computer maps -1974 -Mairs, John W -Cartography -Puget Sound region (Wash.) -Scale of maps ca. 1:1,000,000 -Bibliography: p. 4 -70500 - + The Puget Sound Region + a portfolio of thematic computer maps + 1974 + Mairs, John W + Cartography + Puget Sound region (Wash.) + Scale of maps ca. 1:1,000,000 + + The Puget Sound Region + a portfolio of thematic computer maps + 1974 + Mairs, John W + Cartography + Puget Sound region (Wash.) + Scale of maps ca. 1:1,000,000 + Bibliography: p. 4 + + 1 + 70500 + the: field=title vecf[1] += mult(6) / length(4); idf[1] = log(((1 + total(7))/termoccur(5)); the: relevance += 100000 * vecf[1](1.500000) * idf[1](0.470004) (70500); score = relevance(70500); - -content: title the puget sound region author mairs john w medium book + + content: title the puget sound region author mairs john w medium book - -Reconstruction tomography in diagnostic radiology and nuclear medicine -proceedings of the workshop -1977 -Tomography -Includes bibliographical references and index -Reconstruction tomography in diagnostic radiology and nuclear medicine -proceedings of the workshop -1977 -Tomography -Includes bibliographical references and index -58750 - + Reconstruction tomography in diagnostic radiology and nuclear medicine + proceedings of the workshop + 1977 + Tomography + Includes bibliographical references and index + + Reconstruction tomography in diagnostic radiology and nuclear medicine + proceedings of the workshop + 1977 + Tomography + Includes bibliographical references and index + + 1 + 58750 + the: field=title-remainder vecf[1] += mult(5) / length(4); idf[1] = log(((1 + total(7))/termoccur(5)); the: relevance += 100000 * vecf[1](1.250000) * idf[1](0.470004) (58750); score = relevance(58750); - -content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book + + content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book - -Computer processing of dynamic images from an Anger scintillation camera -the proceedings of a workshop -1974 -Radioisotope scanning -Scintillation cameras -Imaging systems in medicine -Includes bibliographical references and index -Computer processing of dynamic images from an Anger scintillation camera -the proceedings of a workshop -1974 -Radioisotope scanning -Scintillation cameras -Imaging systems in medicine -Includes bibliographical references and index -47000 - + Computer processing of dynamic images from an Anger scintillation camera + the proceedings of a workshop + 1974 + Radioisotope scanning + Scintillation cameras + Imaging systems in medicine + Includes bibliographical references and index + + Computer processing of dynamic images from an Anger scintillation camera + the proceedings of a workshop + 1974 + Radioisotope scanning + Scintillation cameras + Imaging systems in medicine + Includes bibliographical references and index + + 1 + 47000 + the: field=title-remainder vecf[1] += mult(5) / length(5); idf[1] = log(((1 + total(7))/termoccur(5)); the: relevance += 100000 * vecf[1](1.000000) * idf[1](0.470004) (47000); score = relevance(47000); - -content: title computer processing of dynamic images from an anger scintillation camera author medium book + + content: title computer processing of dynamic images from an anger scintillation camera author medium book - -Computer science & technology -proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 -1977 -Optical pattern recognition -Computer science & technology -proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 -1977 -Optical pattern recognition -16785 - + Computer science & technology + proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 + 1977 + Optical pattern recognition + + Computer science & technology + proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 + 1977 + Optical pattern recognition + + 1 + 16785 + the: field=title-remainder vecf[1] += mult(5) / length(14); idf[1] = log(((1 + total(7))/termoccur(5)); the: relevance += 100000 * vecf[1](0.357143) * idf[1](0.470004) (16785); score = relevance(16785); - -content: title computer science technology author medium book + + content: title computer science technology author medium book - -How to program a computer -Jack Collins -How to program a computer -Jack Collins - -How to program a computer -Jack Collins -2 -0 - + How to program a computer + Jack Collins + + How to program a computer + Jack Collins + + + How to program a computer + Jack Collins + + 2 + 0 + idf[1] = log(((1 + total(7))/termoccur(5)); the: relevance += 100000 * vecf[1](0.000000) * idf[1](0.470004) (0); score = relevance(0); - -content: title how to program a computer author jack collins medium book + + content: title how to program a computer author jack collins medium book \ No newline at end of file diff --git a/test/test_http_10.res b/test/test_http_10.res index 0c5a8f4..eac04e1 100644 --- a/test/test_http_10.res +++ b/test/test_http_10.res @@ -6,175 +6,193 @@ 0 9 - -The Computer Bible -1973-1980 -Bible. O.T -Bible -Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates -The Computer Bible -1973-1980 -Bible. O.T -Bible -Hebrew and Greek; introductions in English -Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -content: title the computer bible author medium book + The Computer Bible + 1973-1980 + Bible. O.T + Bible + Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates + + The Computer Bible + 1973-1980 + Bible. O.T + Bible + Hebrew and Greek; introductions in English + Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + content: title the computer bible author medium book - -Computer science & technology -proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 -1977 -Optical pattern recognition -Computer science & technology -proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 -1977 -Optical pattern recognition -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -content: title computer science technology author medium book + Computer science & technology + proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 + 1977 + Optical pattern recognition + + Computer science & technology + proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 + 1977 + Optical pattern recognition + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + content: title computer science technology author medium book - -Reconstruction tomography in diagnostic radiology and nuclear medicine -proceedings of the workshop -1977 -Tomography -Includes bibliographical references and index -Reconstruction tomography in diagnostic radiology and nuclear medicine -proceedings of the workshop -1977 -Tomography -Includes bibliographical references and index -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book + Reconstruction tomography in diagnostic radiology and nuclear medicine + proceedings of the workshop + 1977 + Tomography + Includes bibliographical references and index + + Reconstruction tomography in diagnostic radiology and nuclear medicine + proceedings of the workshop + 1977 + Tomography + Includes bibliographical references and index + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book - -The use of passwords for controlled access to computer resources -1977 -Wood, Helen M -Computers -The use of passwords for controlled access to computer resources -1977 -Wood, Helen M -Computers -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -content: title the use of passwords for controlled access to computer resources author wood helen m medium book + The use of passwords for controlled access to computer resources + 1977 + Wood, Helen M + Computers + + The use of passwords for controlled access to computer resources + 1977 + Wood, Helen M + Computers + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + content: title the use of passwords for controlled access to computer resources author wood helen m medium book - -Computer processing of dynamic images from an Anger scintillation camera -the proceedings of a workshop -1974 -Radioisotope scanning -Scintillation cameras -Imaging systems in medicine -Includes bibliographical references and index -Computer processing of dynamic images from an Anger scintillation camera -the proceedings of a workshop -1974 -Radioisotope scanning -Scintillation cameras -Imaging systems in medicine -Includes bibliographical references and index -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -content: title computer processing of dynamic images from an anger scintillation camera author medium book + Computer processing of dynamic images from an Anger scintillation camera + the proceedings of a workshop + 1974 + Radioisotope scanning + Scintillation cameras + Imaging systems in medicine + Includes bibliographical references and index + + Computer processing of dynamic images from an Anger scintillation camera + the proceedings of a workshop + 1974 + Radioisotope scanning + Scintillation cameras + Imaging systems in medicine + Includes bibliographical references and index + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + content: title computer processing of dynamic images from an anger scintillation camera author medium book - -The Puget Sound Region -a portfolio of thematic computer maps -1974 -Mairs, John W -Cartography -Puget Sound region (Wash.) -Scale of maps ca. 1:1,000,000 -The Puget Sound Region -a portfolio of thematic computer maps -1974 -Mairs, John W -Cartography -Puget Sound region (Wash.) -Scale of maps ca. 1:1,000,000 -Bibliography: p. 4 -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -content: title the puget sound region author mairs john w medium book + The Puget Sound Region + a portfolio of thematic computer maps + 1974 + Mairs, John W + Cartography + Puget Sound region (Wash.) + Scale of maps ca. 1:1,000,000 + + The Puget Sound Region + a portfolio of thematic computer maps + 1974 + Mairs, John W + Cartography + Puget Sound region (Wash.) + Scale of maps ca. 1:1,000,000 + Bibliography: p. 4 + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + content: title the puget sound region author mairs john w medium book - -A plan for community college computer development -1971 -Universities and colleges -Community colleges -Cover title -A plan for community college computer development -1971 -Universities and colleges -Community colleges -Cover title -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -content: title a plan for community college computer development author medium book + A plan for community college computer development + 1971 + Universities and colleges + Community colleges + Cover title + + A plan for community college computer development + 1971 + Universities and colleges + Community colleges + Cover title + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + content: title a plan for community college computer development author medium book - -Washington metropolitan area rail computer feasibility study; -final report -1971 -Englund, Carl R -Railroads -"Contract DOT-UT-10003." -Washington metropolitan area rail computer feasibility study; -final report -1971 -Englund, Carl R -Railroads -"Contract DOT-UT-10003." -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -content: title washington metropolitan area rail computer feasibility study author englund carl r medium book + Washington metropolitan area rail computer feasibility study; + final report + 1971 + Englund, Carl R + Railroads + "Contract DOT-UT-10003." + + Washington metropolitan area rail computer feasibility study; + final report + 1971 + Englund, Carl R + Railroads + "Contract DOT-UT-10003." + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + content: title washington metropolitan area rail computer feasibility study author englund carl r medium book - -How to program a computer -Jack Collins -How to program a computer -Jack Collins -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY - -How to program a computer -Jack Collins -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -2 -content: title how to program a computer author jack collins medium book + How to program a computer + Jack Collins + + How to program a computer + Jack Collins + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + + How to program a computer + Jack Collins + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 2 + content: title how to program a computer author jack collins medium book \ No newline at end of file diff --git a/test/test_http_11.res b/test/test_http_11.res index 6da323e..6d3019b 100644 --- a/test/test_http_11.res +++ b/test/test_http_11.res @@ -6,175 +6,193 @@ 0 9 - -A plan for community college computer development -1971 -Universities and colleges -Community colleges -Cover title -A plan for community college computer development -1971 -Universities and colleges -Community colleges -Cover title -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -content: title a plan for community college computer development author medium book + A plan for community college computer development + 1971 + Universities and colleges + Community colleges + Cover title + + A plan for community college computer development + 1971 + Universities and colleges + Community colleges + Cover title + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + content: title a plan for community college computer development author medium book - -Washington metropolitan area rail computer feasibility study; -final report -1971 -Englund, Carl R -Railroads -"Contract DOT-UT-10003." -Washington metropolitan area rail computer feasibility study; -final report -1971 -Englund, Carl R -Railroads -"Contract DOT-UT-10003." -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -content: title washington metropolitan area rail computer feasibility study author englund carl r medium book + Washington metropolitan area rail computer feasibility study; + final report + 1971 + Englund, Carl R + Railroads + "Contract DOT-UT-10003." + + Washington metropolitan area rail computer feasibility study; + final report + 1971 + Englund, Carl R + Railroads + "Contract DOT-UT-10003." + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + content: title washington metropolitan area rail computer feasibility study author englund carl r medium book - -The Computer Bible -1973-1980 -Bible. O.T -Bible -Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates -The Computer Bible -1973-1980 -Bible. O.T -Bible -Hebrew and Greek; introductions in English -Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -content: title the computer bible author medium book + The Computer Bible + 1973-1980 + Bible. O.T + Bible + Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates + + The Computer Bible + 1973-1980 + Bible. O.T + Bible + Hebrew and Greek; introductions in English + Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + content: title the computer bible author medium book - -Computer processing of dynamic images from an Anger scintillation camera -the proceedings of a workshop -1974 -Radioisotope scanning -Scintillation cameras -Imaging systems in medicine -Includes bibliographical references and index -Computer processing of dynamic images from an Anger scintillation camera -the proceedings of a workshop -1974 -Radioisotope scanning -Scintillation cameras -Imaging systems in medicine -Includes bibliographical references and index -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -content: title computer processing of dynamic images from an anger scintillation camera author medium book + Computer processing of dynamic images from an Anger scintillation camera + the proceedings of a workshop + 1974 + Radioisotope scanning + Scintillation cameras + Imaging systems in medicine + Includes bibliographical references and index + + Computer processing of dynamic images from an Anger scintillation camera + the proceedings of a workshop + 1974 + Radioisotope scanning + Scintillation cameras + Imaging systems in medicine + Includes bibliographical references and index + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + content: title computer processing of dynamic images from an anger scintillation camera author medium book - -The Puget Sound Region -a portfolio of thematic computer maps -1974 -Mairs, John W -Cartography -Puget Sound region (Wash.) -Scale of maps ca. 1:1,000,000 -The Puget Sound Region -a portfolio of thematic computer maps -1974 -Mairs, John W -Cartography -Puget Sound region (Wash.) -Scale of maps ca. 1:1,000,000 -Bibliography: p. 4 -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -content: title the puget sound region author mairs john w medium book + The Puget Sound Region + a portfolio of thematic computer maps + 1974 + Mairs, John W + Cartography + Puget Sound region (Wash.) + Scale of maps ca. 1:1,000,000 + + The Puget Sound Region + a portfolio of thematic computer maps + 1974 + Mairs, John W + Cartography + Puget Sound region (Wash.) + Scale of maps ca. 1:1,000,000 + Bibliography: p. 4 + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + content: title the puget sound region author mairs john w medium book - -Computer science & technology -proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 -1977 -Optical pattern recognition -Computer science & technology -proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 -1977 -Optical pattern recognition -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -content: title computer science technology author medium book + Computer science & technology + proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 + 1977 + Optical pattern recognition + + Computer science & technology + proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 + 1977 + Optical pattern recognition + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + content: title computer science technology author medium book - -Reconstruction tomography in diagnostic radiology and nuclear medicine -proceedings of the workshop -1977 -Tomography -Includes bibliographical references and index -Reconstruction tomography in diagnostic radiology and nuclear medicine -proceedings of the workshop -1977 -Tomography -Includes bibliographical references and index -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book + Reconstruction tomography in diagnostic radiology and nuclear medicine + proceedings of the workshop + 1977 + Tomography + Includes bibliographical references and index + + Reconstruction tomography in diagnostic radiology and nuclear medicine + proceedings of the workshop + 1977 + Tomography + Includes bibliographical references and index + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book - -The use of passwords for controlled access to computer resources -1977 -Wood, Helen M -Computers -The use of passwords for controlled access to computer resources -1977 -Wood, Helen M -Computers -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -content: title the use of passwords for controlled access to computer resources author wood helen m medium book + The use of passwords for controlled access to computer resources + 1977 + Wood, Helen M + Computers + + The use of passwords for controlled access to computer resources + 1977 + Wood, Helen M + Computers + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + content: title the use of passwords for controlled access to computer resources author wood helen m medium book - -How to program a computer -Jack Collins -How to program a computer -Jack Collins -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY - -How to program a computer -Jack Collins -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -2 -content: title how to program a computer author jack collins medium book + How to program a computer + Jack Collins + + How to program a computer + Jack Collins + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + + How to program a computer + Jack Collins + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 2 + content: title how to program a computer author jack collins medium book \ No newline at end of file diff --git a/test/test_http_18.res b/test/test_http_18.res index a4cb46e..56bd95d 100644 --- a/test/test_http_18.res +++ b/test/test_http_18.res @@ -6,58 +6,64 @@ 0 3 - -BIBLIOGRAPHY OF MAINE GEOLOGY -This data base is a computer based bibliography of marine geology. It allows searching by topic and geographic location, similar to GEOREF. It is currently under development to replace the printed Bibliography of Marine Geology -BIBLIOGRAPHY OF MAINE GEOLOGY -This data base is a computer based bibliography of marine geology. It allows searching by topic and geographic location, similar to GEOREF. It is currently under development to replace the printed Bibliography of Marine Geology -1692-PRESENT -test-usersetting-2 data: - -11882 - + BIBLIOGRAPHY OF MAINE GEOLOGY + This data base is a computer based bibliography of marine geology. It allows searching by topic and geographic location, similar to GEOREF. It is currently under development to replace the printed Bibliography of Marine Geology + + BIBLIOGRAPHY OF MAINE GEOLOGY + This data base is a computer based bibliography of marine geology. It allows searching by topic and geographic location, similar to GEOREF. It is currently under development to replace the printed Bibliography of Marine Geology + 1692-PRESENT + test-usersetting-2 data: + + + 1 + 11882 + computer: field=description vecf[1] += mult(3) / length(35); idf[1] = log(((1 + total(3))/termoccur(1)); computer: relevance += 100000 * vecf[1](0.085714) * idf[1](1.386294) (11882); score = relevance(11882); - -content: title bibliography of maine geology author medium book + + content: title bibliography of maine geology author medium book - -GROUNDWATER RESOURCE MAPS - COUNTY SERIES -A series of 1:250,000 scale maps showing well yield, well depth, and depth to bedrock for a large number of bedrock wells inventoried by the Maine Geological Survey in the mid-to late 1970's comprises this data set. Some series also show bedrock topography and potentiometric surface. Geographic coverage is restricted to Southern Maine -GROUNDWATER RESOURCE MAPS - COUNTY SERIES -A series of 1:250,000 scale maps showing well yield, well depth, and depth to bedrock for a large number of bedrock wells inventoried by the Maine Geological Survey in the mid-to late 1970's comprises this data set. Some series also show bedrock topography and potentiometric surface. Geographic coverage is restricted to Southern Maine -1972-1978 -test-usersetting-2 data: - -0 - + GROUNDWATER RESOURCE MAPS - COUNTY SERIES + A series of 1:250,000 scale maps showing well yield, well depth, and depth to bedrock for a large number of bedrock wells inventoried by the Maine Geological Survey in the mid-to late 1970's comprises this data set. Some series also show bedrock topography and potentiometric surface. Geographic coverage is restricted to Southern Maine + + GROUNDWATER RESOURCE MAPS - COUNTY SERIES + A series of 1:250,000 scale maps showing well yield, well depth, and depth to bedrock for a large number of bedrock wells inventoried by the Maine Geological Survey in the mid-to late 1970's comprises this data set. Some series also show bedrock topography and potentiometric surface. Geographic coverage is restricted to Southern Maine + 1972-1978 + test-usersetting-2 data: + + + 1 + 0 + idf[1] = log(((1 + total(3))/termoccur(1)); computer: relevance += 100000 * vecf[1](0.000000) * idf[1](1.386294) (0); score = relevance(0); - -content: title groundwater resource maps county series author medium book + + content: title groundwater resource maps county series author medium book - -OIL/GAS DRILLING -This database contains information on oil and gas drilling such as well name, operator, driller, location, depth, copies of logs run, permits, samples (cuttings, core), completion records -OIL/GAS DRILLING -This database contains information on oil and gas drilling such as well name, operator, driller, location, depth, copies of logs run, permits, samples (cuttings, core), completion records -1907-PRESENT -test-usersetting-2 data: - -0 - + OIL/GAS DRILLING + This database contains information on oil and gas drilling such as well name, operator, driller, location, depth, copies of logs run, permits, samples (cuttings, core), completion records + + OIL/GAS DRILLING + This database contains information on oil and gas drilling such as well name, operator, driller, location, depth, copies of logs run, permits, samples (cuttings, core), completion records + 1907-PRESENT + test-usersetting-2 data: + + + 1 + 0 + idf[1] = log(((1 + total(3))/termoccur(1)); computer: relevance += 100000 * vecf[1](0.000000) * idf[1](1.386294) (0); score = relevance(0); - -content: title oil gas drilling author medium book + + content: title oil gas drilling author medium book \ No newline at end of file diff --git a/test/test_http_23.res b/test/test_http_23.res index 116b479..a7ee6bb 100644 --- a/test/test_http_23.res +++ b/test/test_http_23.res @@ -1,28 +1,30 @@ -content: title how to program a computer author jack collins medium book -content: title computer processing of dynamic images from an anger scintillation camera author medium book -0 - -How to program a computer -Jack Collins -11224466 -11224467 -How to program a computer -Jack Collins -11224467 -11224467 -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY - -How to program a computer -Jack Collins -11224466 -11224466 -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY + content: title how to program a computer author jack collins medium book + content: title computer processing of dynamic images from an anger scintillation camera author medium book + 0 + How to program a computer + Jack Collins + 11224466 + 11224467 + + How to program a computer + Jack Collins + 11224467 + 11224467 + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + + How to program a computer + Jack Collins + 11224466 + 11224466 + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + \ No newline at end of file diff --git a/test/test_http_28.res b/test/test_http_28.res index 4d93455..1eb6dfd 100644 --- a/test/test_http_28.res +++ b/test/test_http_28.res @@ -6,45 +6,51 @@ 0 3 - -UTAH GEOCHROMOMETRY -UTAH GEOCHROMOMETRY -86304 - + UTAH GEOCHROMOMETRY + + UTAH GEOCHROMOMETRY + + 1 + 86304 + utah: field=title vecf[1] += mult(6) / length(2); idf[1] = log(((1 + total(3))/termoccur(3)); utah: relevance += 100000 * vecf[1](3.000000) * idf[1](0.287682) (86304); score = relevance(86304); - -content: title utah geochromometry author medium book + + content: title utah geochromometry author medium book - -UTAH EARTHQUAKE EPICENTERS -UTAH EARTHQUAKE EPICENTERS -57536 - + UTAH EARTHQUAKE EPICENTERS + + UTAH EARTHQUAKE EPICENTERS + + 1 + 57536 + utah: field=title vecf[1] += mult(6) / length(3); idf[1] = log(((1 + total(3))/termoccur(3)); utah: relevance += 100000 * vecf[1](2.000000) * idf[1](0.287682) (57536); score = relevance(57536); - -content: title utah earthquake epicenters author medium book + + content: title utah earthquake epicenters author medium book - -UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS -UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS -28768 - + UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS + + UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS + + 1 + 28768 + utah: field=title vecf[1] += mult(6) / length(6); idf[1] = log(((1 + total(3))/termoccur(3)); utah: relevance += 100000 * vecf[1](1.000000) * idf[1](0.287682) (28768); score = relevance(28768); - -content: title utah geological and mineral survey publications author medium book + + content: title utah geological and mineral survey publications author medium book \ No newline at end of file diff --git a/test/test_http_32.res b/test/test_http_32.res index d8ce812..b8939f0 100644 --- a/test/test_http_32.res +++ b/test/test_http_32.res @@ -6,49 +6,55 @@ 0 3 - -BIBLIOGRAPHY OF MAINE GEOLOGY -This data base is a computer based bibliography of marine geology. It allows searching by topic and geographic location, similar to GEOREF. It is currently under development to replace the printed Bibliography of Marine Geology -BIBLIOGRAPHY OF MAINE GEOLOGY -This data base is a computer based bibliography of marine geology. It allows searching by topic and geographic location, similar to GEOREF. It is currently under development to replace the printed Bibliography of Marine Geology -11882 - + BIBLIOGRAPHY OF MAINE GEOLOGY + This data base is a computer based bibliography of marine geology. It allows searching by topic and geographic location, similar to GEOREF. It is currently under development to replace the printed Bibliography of Marine Geology + + BIBLIOGRAPHY OF MAINE GEOLOGY + This data base is a computer based bibliography of marine geology. It allows searching by topic and geographic location, similar to GEOREF. It is currently under development to replace the printed Bibliography of Marine Geology + + 1 + 11882 + computer: field=description vecf[1] += mult(3) / length(35); idf[1] = log(((1 + total(3))/termoccur(1)); computer: relevance += 100000 * vecf[1](0.085714) * idf[1](1.386294) (11882); score = relevance(11882); - -content: title bibliography of maine geology + + content: title bibliography of maine geology - -GROUNDWATER RESOURCE MAPS - COUNTY SERIES -A series of 1:250,000 scale maps showing well yield, well depth, and depth to bedrock for a large number of bedrock wells inventoried by the Maine Geological Survey in the mid-to late 1970's comprises this data set. Some series also show bedrock topography and potentiometric surface. Geographic coverage is restricted to Southern Maine -GROUNDWATER RESOURCE MAPS - COUNTY SERIES -A series of 1:250,000 scale maps showing well yield, well depth, and depth to bedrock for a large number of bedrock wells inventoried by the Maine Geological Survey in the mid-to late 1970's comprises this data set. Some series also show bedrock topography and potentiometric surface. Geographic coverage is restricted to Southern Maine -0 - + GROUNDWATER RESOURCE MAPS - COUNTY SERIES + A series of 1:250,000 scale maps showing well yield, well depth, and depth to bedrock for a large number of bedrock wells inventoried by the Maine Geological Survey in the mid-to late 1970's comprises this data set. Some series also show bedrock topography and potentiometric surface. Geographic coverage is restricted to Southern Maine + + GROUNDWATER RESOURCE MAPS - COUNTY SERIES + A series of 1:250,000 scale maps showing well yield, well depth, and depth to bedrock for a large number of bedrock wells inventoried by the Maine Geological Survey in the mid-to late 1970's comprises this data set. Some series also show bedrock topography and potentiometric surface. Geographic coverage is restricted to Southern Maine + + 1 + 0 + idf[1] = log(((1 + total(3))/termoccur(1)); computer: relevance += 100000 * vecf[1](0.000000) * idf[1](1.386294) (0); score = relevance(0); - -content: title groundwater resource maps county series + + content: title groundwater resource maps county series - -OIL/GAS DRILLING -This database contains information on oil and gas drilling such as well name, operator, driller, location, depth, copies of logs run, permits, samples (cuttings, core), completion records -OIL/GAS DRILLING -This database contains information on oil and gas drilling such as well name, operator, driller, location, depth, copies of logs run, permits, samples (cuttings, core), completion records -0 - + OIL/GAS DRILLING + This database contains information on oil and gas drilling such as well name, operator, driller, location, depth, copies of logs run, permits, samples (cuttings, core), completion records + + OIL/GAS DRILLING + This database contains information on oil and gas drilling such as well name, operator, driller, location, depth, copies of logs run, permits, samples (cuttings, core), completion records + + 1 + 0 + idf[1] = log(((1 + total(3))/termoccur(1)); computer: relevance += 100000 * vecf[1](0.000000) * idf[1](1.386294) (0); score = relevance(0); - -content: title oil gas drilling + + content: title oil gas drilling \ No newline at end of file diff --git a/test/test_http_36.res b/test/test_http_36.res index 4275ecc..3175195 100644 --- a/test/test_http_36.res +++ b/test/test_http_36.res @@ -6,210 +6,226 @@ 0 8 - -Computer science & technology -proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 -1977 -Optical pattern recognition -Computer science & technology -proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 -1977 -Optical pattern recognition -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -50262 - + Computer science & technology + proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 + 1977 + Optical pattern recognition + + Computer science & technology + proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 + 1977 + Optical pattern recognition + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + 50262 + computer: field=title vecf[1] += mult(6) / length(3); idf[1] = log(((1 + total(8))/termoccur(7)); computer: relevance += 100000 * vecf[1](2.000000) * idf[1](0.251314) (50262); score = relevance(50262); - -content: title computer science technology author medium book + + content: title computer science technology author medium book - -The Computer Bible -1973-1980 -Bible. O.T -Bible -Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates -The Computer Bible -1973-1980 -Bible. O.T -Bible -Hebrew and Greek; introductions in English -Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -50262 - + The Computer Bible + 1973-1980 + Bible. O.T + Bible + Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates + + The Computer Bible + 1973-1980 + Bible. O.T + Bible + Hebrew and Greek; introductions in English + Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + 50262 + computer: field=title vecf[1] += mult(6) / length(3); idf[1] = log(((1 + total(8))/termoccur(7)); computer: relevance += 100000 * vecf[1](2.000000) * idf[1](0.251314) (50262); score = relevance(50262); - -content: title the computer bible author medium book + + content: title the computer bible author medium book - -A plan for community college computer development -1971 -Universities and colleges -Community colleges -Cover title -A plan for community college computer development -1971 -Universities and colleges -Community colleges -Cover title -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -21541 - + A plan for community college computer development + 1971 + Universities and colleges + Community colleges + Cover title + + A plan for community college computer development + 1971 + Universities and colleges + Community colleges + Cover title + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + 21541 + computer: field=title vecf[1] += mult(6) / length(7); idf[1] = log(((1 + total(8))/termoccur(7)); computer: relevance += 100000 * vecf[1](0.857143) * idf[1](0.251314) (21541); score = relevance(21541); - -content: title a plan for community college computer development author medium book + + content: title a plan for community college computer development author medium book - -Washington metropolitan area rail computer feasibility study; -final report -1971 -Englund, Carl R -Railroads -"Contract DOT-UT-10003." -Washington metropolitan area rail computer feasibility study; -final report -1971 -Englund, Carl R -Railroads -"Contract DOT-UT-10003." -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -21541 - + Washington metropolitan area rail computer feasibility study; + final report + 1971 + Englund, Carl R + Railroads + "Contract DOT-UT-10003." + + Washington metropolitan area rail computer feasibility study; + final report + 1971 + Englund, Carl R + Railroads + "Contract DOT-UT-10003." + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + 21541 + computer: field=title vecf[1] += mult(6) / length(7); idf[1] = log(((1 + total(8))/termoccur(7)); computer: relevance += 100000 * vecf[1](0.857143) * idf[1](0.251314) (21541); score = relevance(21541); - -content: title washington metropolitan area rail computer feasibility study author englund carl r medium book + + content: title washington metropolitan area rail computer feasibility study author englund carl r medium book - -The Puget Sound Region -a portfolio of thematic computer maps -1974 -Mairs, John W -Cartography -Puget Sound region (Wash.) -Scale of maps ca. 1:1,000,000 -The Puget Sound Region -a portfolio of thematic computer maps -1974 -Mairs, John W -Cartography -Puget Sound region (Wash.) -Scale of maps ca. 1:1,000,000 -Bibliography: p. 4 -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -20942 - + The Puget Sound Region + a portfolio of thematic computer maps + 1974 + Mairs, John W + Cartography + Puget Sound region (Wash.) + Scale of maps ca. 1:1,000,000 + + The Puget Sound Region + a portfolio of thematic computer maps + 1974 + Mairs, John W + Cartography + Puget Sound region (Wash.) + Scale of maps ca. 1:1,000,000 + Bibliography: p. 4 + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + 20942 + computer: field=title-remainder vecf[1] += mult(5) / length(6); idf[1] = log(((1 + total(8))/termoccur(7)); computer: relevance += 100000 * vecf[1](0.833333) * idf[1](0.251314) (20942); score = relevance(20942); - -content: title the puget sound region author mairs john w medium book + + content: title the puget sound region author mairs john w medium book - -Computer processing of dynamic images from an Anger scintillation camera -the proceedings of a workshop -1974 -Radioisotope scanning -Scintillation cameras -Imaging systems in medicine -Includes bibliographical references and index -Computer processing of dynamic images from an Anger scintillation camera -the proceedings of a workshop -1974 -Radioisotope scanning -Scintillation cameras -Imaging systems in medicine -Includes bibliographical references and index -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -15078 - + Computer processing of dynamic images from an Anger scintillation camera + the proceedings of a workshop + 1974 + Radioisotope scanning + Scintillation cameras + Imaging systems in medicine + Includes bibliographical references and index + + Computer processing of dynamic images from an Anger scintillation camera + the proceedings of a workshop + 1974 + Radioisotope scanning + Scintillation cameras + Imaging systems in medicine + Includes bibliographical references and index + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + 15078 + computer: field=title vecf[1] += mult(6) / length(10); idf[1] = log(((1 + total(8))/termoccur(7)); computer: relevance += 100000 * vecf[1](0.600000) * idf[1](0.251314) (15078); score = relevance(15078); - -content: title computer processing of dynamic images from an anger scintillation camera author medium book + + content: title computer processing of dynamic images from an anger scintillation camera author medium book - -The use of passwords for controlled access to computer resources -1977 -Wood, Helen M -Computers -The use of passwords for controlled access to computer resources -1977 -Wood, Helen M -Computers -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -15078 - + The use of passwords for controlled access to computer resources + 1977 + Wood, Helen M + Computers + + The use of passwords for controlled access to computer resources + 1977 + Wood, Helen M + Computers + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + 15078 + computer: field=title vecf[1] += mult(6) / length(10); idf[1] = log(((1 + total(8))/termoccur(7)); computer: relevance += 100000 * vecf[1](0.600000) * idf[1](0.251314) (15078); score = relevance(15078); - -content: title the use of passwords for controlled access to computer resources author wood helen m medium book + + content: title the use of passwords for controlled access to computer resources author wood helen m medium book - -Reconstruction tomography in diagnostic radiology and nuclear medicine -proceedings of the workshop -1977 -Tomography -Includes bibliographical references and index -Reconstruction tomography in diagnostic radiology and nuclear medicine -proceedings of the workshop -1977 -Tomography -Includes bibliographical references and index -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -0 - + Reconstruction tomography in diagnostic radiology and nuclear medicine + proceedings of the workshop + 1977 + Tomography + Includes bibliographical references and index + + Reconstruction tomography in diagnostic radiology and nuclear medicine + proceedings of the workshop + 1977 + Tomography + Includes bibliographical references and index + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + 0 + idf[1] = log(((1 + total(8))/termoccur(7)); computer: relevance += 100000 * vecf[1](0.000000) * idf[1](0.251314) (0); score = relevance(0); - -content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book + + content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book \ No newline at end of file diff --git a/test/test_http_41.res b/test/test_http_41.res index 97953a4..1d2ce8e 100644 --- a/test/test_http_41.res +++ b/test/test_http_41.res @@ -6,107 +6,123 @@ 0 8 - -APPLIED GEOLOGY FILE -APPLIED GEOLOGY FILE -0 - + APPLIED GEOLOGY FILE + + APPLIED GEOLOGY FILE + + 1 + 0 + idf[1] = log(((1 + total(8))/termoccur(0)); the: relevance += 100000 * vecf[1](0.000000) * idf[1](0.000000) (0); score = relevance(0); - -content: title applied geology file author medium book + + content: title applied geology file author medium book - -ELECTRIC LOG LIBRARY -ELECTRIC LOG LIBRARY -0 - + ELECTRIC LOG LIBRARY + + ELECTRIC LOG LIBRARY + + 1 + 0 + idf[1] = log(((1 + total(8))/termoccur(0)); the: relevance += 100000 * vecf[1](0.000000) * idf[1](0.000000) (0); score = relevance(0); - -content: title electric log library author medium book + + content: title electric log library author medium book - -ISOTOPIC DATES OF ROCKS AND MINERALS -ISOTOPIC DATES OF ROCKS AND MINERALS -0 - + ISOTOPIC DATES OF ROCKS AND MINERALS + + ISOTOPIC DATES OF ROCKS AND MINERALS + + 1 + 0 + idf[1] = log(((1 + total(8))/termoccur(0)); the: relevance += 100000 * vecf[1](0.000000) * idf[1](0.000000) (0); score = relevance(0); - -content: title isotopic dates of rocks and minerals author medium book + + content: title isotopic dates of rocks and minerals author medium book - -MINE MAP INDEX -MINE MAP INDEX -0 - + MINE MAP INDEX + + MINE MAP INDEX + + 1 + 0 + idf[1] = log(((1 + total(8))/termoccur(0)); the: relevance += 100000 * vecf[1](0.000000) * idf[1](0.000000) (0); score = relevance(0); - -content: title mine map index author medium book + + content: title mine map index author medium book - -UTAH CRIB FILE -UTAH CRIB FILE -0 - + UTAH CRIB FILE + + UTAH CRIB FILE + + 1 + 0 + idf[1] = log(((1 + total(8))/termoccur(0)); the: relevance += 100000 * vecf[1](0.000000) * idf[1](0.000000) (0); score = relevance(0); - -content: title utah crib file author medium book + + content: title utah crib file author medium book - -UTAH EARTHQUAKE EPICENTERS -UTAH EARTHQUAKE EPICENTERS -0 - + UTAH EARTHQUAKE EPICENTERS + + UTAH EARTHQUAKE EPICENTERS + + 1 + 0 + idf[1] = log(((1 + total(8))/termoccur(0)); the: relevance += 100000 * vecf[1](0.000000) * idf[1](0.000000) (0); score = relevance(0); - -content: title utah earthquake epicenters author medium book + + content: title utah earthquake epicenters author medium book - -UTAH GEOLOGIC MAP BIBLIOGRAPHY -UTAH GEOLOGIC MAP BIBLIOGRAPHY -0 - + UTAH GEOLOGIC MAP BIBLIOGRAPHY + + UTAH GEOLOGIC MAP BIBLIOGRAPHY + + 1 + 0 + idf[1] = log(((1 + total(8))/termoccur(0)); the: relevance += 100000 * vecf[1](0.000000) * idf[1](0.000000) (0); score = relevance(0); - -content: title utah geologic map bibliography author medium book + + content: title utah geologic map bibliography author medium book - -UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS -UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS -0 - + UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS + + UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS + + 1 + 0 + idf[1] = log(((1 + total(8))/termoccur(0)); the: relevance += 100000 * vecf[1](0.000000) * idf[1](0.000000) (0); score = relevance(0); - -content: title utah geological and mineral survey publications author medium book + + content: title utah geological and mineral survey publications author medium book \ No newline at end of file diff --git a/test/test_http_42.res b/test/test_http_42.res index 4e1e409..6b0b192 100644 --- a/test/test_http_42.res +++ b/test/test_http_42.res @@ -6,135 +6,145 @@ 0 5 - -The religious teachers of Greece -1972 -Adam, James -Greek literature -Philosophy, Ancient -Greece -Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures -The religious teachers of Greece -1972 -Adam, James -Greek literature -Philosophy, Ancient -Greece -Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures -Includes bibliographical references -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -31823 - + The religious teachers of Greece + 1972 + Adam, James + Greek literature + Philosophy, Ancient + Greece + Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures + + The religious teachers of Greece + 1972 + Adam, James + Greek literature + Philosophy, Ancient + Greece + Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures + Includes bibliographical references + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + 31823 + the: field=title vecf[1] += mult(6) / length(5); the: field=description vecf[1] += mult(6) / length(11); idf[1] = log(((1 + total(5))/termoccur(5)); the: relevance += 100000 * vecf[1](1.745455) * idf[1](0.182322) (31823); score = relevance(31823); - -content: title the religious teachers of greece author adam james medium book + + content: title the religious teachers of greece author adam james medium book - -The Puget Sound Region -a portfolio of thematic computer maps -1974 -Mairs, John W -Cartography -Puget Sound region (Wash.) -Scale of maps ca. 1:1,000,000 -The Puget Sound Region -a portfolio of thematic computer maps -1974 -Mairs, John W -Cartography -Puget Sound region (Wash.) -Scale of maps ca. 1:1,000,000 -Bibliography: p. 4 -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -27348 - + The Puget Sound Region + a portfolio of thematic computer maps + 1974 + Mairs, John W + Cartography + Puget Sound region (Wash.) + Scale of maps ca. 1:1,000,000 + + The Puget Sound Region + a portfolio of thematic computer maps + 1974 + Mairs, John W + Cartography + Puget Sound region (Wash.) + Scale of maps ca. 1:1,000,000 + Bibliography: p. 4 + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + 27348 + the: field=title vecf[1] += mult(6) / length(4); idf[1] = log(((1 + total(5))/termoccur(5)); the: relevance += 100000 * vecf[1](1.500000) * idf[1](0.182322) (27348); score = relevance(27348); - -content: title the puget sound region author mairs john w medium book + + content: title the puget sound region author mairs john w medium book - -Reconstruction tomography in diagnostic radiology and nuclear medicine -proceedings of the workshop -1977 -Tomography -Includes bibliographical references and index -Reconstruction tomography in diagnostic radiology and nuclear medicine -proceedings of the workshop -1977 -Tomography -Includes bibliographical references and index -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -22790 - + Reconstruction tomography in diagnostic radiology and nuclear medicine + proceedings of the workshop + 1977 + Tomography + Includes bibliographical references and index + + Reconstruction tomography in diagnostic radiology and nuclear medicine + proceedings of the workshop + 1977 + Tomography + Includes bibliographical references and index + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + 22790 + the: field=title-remainder vecf[1] += mult(5) / length(4); idf[1] = log(((1 + total(5))/termoccur(5)); the: relevance += 100000 * vecf[1](1.250000) * idf[1](0.182322) (22790); score = relevance(22790); - -content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book + + content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book - -The use of passwords for controlled access to computer resources -1977 -Wood, Helen M -Computers -The use of passwords for controlled access to computer resources -1977 -Wood, Helen M -Computers -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -10939 - + The use of passwords for controlled access to computer resources + 1977 + Wood, Helen M + Computers + + The use of passwords for controlled access to computer resources + 1977 + Wood, Helen M + Computers + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + 10939 + the: field=title vecf[1] += mult(6) / length(10); idf[1] = log(((1 + total(5))/termoccur(5)); the: relevance += 100000 * vecf[1](0.600000) * idf[1](0.182322) (10939); score = relevance(10939); - -content: title the use of passwords for controlled access to computer resources author wood helen m medium book + + content: title the use of passwords for controlled access to computer resources author wood helen m medium book - -Computer science & technology -proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 -1977 -Optical pattern recognition -Computer science & technology -proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 -1977 -Optical pattern recognition -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -6511 - + Computer science & technology + proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 + 1977 + Optical pattern recognition + + Computer science & technology + proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 + 1977 + Optical pattern recognition + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + 6511 + the: field=title-remainder vecf[1] += mult(5) / length(14); idf[1] = log(((1 + total(5))/termoccur(5)); the: relevance += 100000 * vecf[1](0.357143) * idf[1](0.182322) (6511); score = relevance(6511); - -content: title computer science technology author medium book + + content: title computer science technology author medium book \ No newline at end of file diff --git a/test/test_http_45.res b/test/test_http_45.res index 1239939..3ae7d3e 100644 --- a/test/test_http_45.res +++ b/test/test_http_45.res @@ -6,31 +6,33 @@ 0 1 - -Computer processing of dynamic images from an Anger scintillation camera -the proceedings of a workshop -1974 -Radioisotope scanning -Scintillation cameras -Imaging systems in medicine -Includes bibliographical references and index -Computer processing of dynamic images from an Anger scintillation camera -the proceedings of a workshop -1974 -Radioisotope scanning -Scintillation cameras -Imaging systems in medicine -Includes bibliographical references and index -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -0 - + Computer processing of dynamic images from an Anger scintillation camera + the proceedings of a workshop + 1974 + Radioisotope scanning + Scintillation cameras + Imaging systems in medicine + Includes bibliographical references and index + + Computer processing of dynamic images from an Anger scintillation camera + the proceedings of a workshop + 1974 + Radioisotope scanning + Scintillation cameras + Imaging systems in medicine + Includes bibliographical references and index + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + 0 + idf[1] = log(((1 + total(1))/termoccur(0)); louis: relevance += 100000 * vecf[1](0.000000) * idf[1](0.000000) (0); score = relevance(0); - -content: title computer processing of dynamic images from an anger scintillation camera author medium book + + content: title computer processing of dynamic images from an anger scintillation camera author medium book \ No newline at end of file diff --git a/test/test_http_49.res b/test/test_http_49.res index 32d5a8a..23d4c1d 100644 --- a/test/test_http_49.res +++ b/test/test_http_49.res @@ -6,34 +6,36 @@ 0 1 - -The religious teachers of Greece -1972 -Adam, James -Greek literature -Philosophy, Ancient -Greece -Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures -The religious teachers of Greece -1972 -Adam, James -Greek literature -Philosophy, Ancient -Greece -Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures -Includes bibliographical references -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -291121 - + The religious teachers of Greece + 1972 + Adam, James + Greek literature + Philosophy, Ancient + Greece + Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures + + The religious teachers of Greece + 1972 + Adam, James + Greek literature + Philosophy, Ancient + Greece + Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures + Includes bibliographical references + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + 291121 + greece: field=title vecf[1] += mult(6) / length(5); greece: field=subject vecf[1] += mult(3) / length(1); idf[1] = log(((1 + total(1))/termoccur(1)); greece: relevance += 100000 * vecf[1](4.200000) * idf[1](0.693147) (291121); score = relevance(291121); - -content: title the religious teachers of greece author adam james medium book + + content: title the religious teachers of greece author adam james medium book \ No newline at end of file diff --git a/test/test_http_5.res b/test/test_http_5.res index 8adc900..3ad00a3 100644 --- a/test/test_http_5.res +++ b/test/test_http_5.res @@ -6,238 +6,256 @@ 0 9 - -How to program a computer -Jack Collins -How to program a computer -Jack Collins -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY - -How to program a computer -Jack Collins -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -2 -48160 - + How to program a computer + Jack Collins + + How to program a computer + Jack Collins + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + + How to program a computer + Jack Collins + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 2 + 48160 + computer: field=title vecf[1] += mult(6) / length(5); computer: field=title vecf[1] += mult(6) / length(5); idf[1] = log(((1 + total(10))/termoccur(9)); computer: relevance += 100000 * vecf[1](2.400000) * idf[1](0.200671) (48160); score = relevance(48160); - -content: title how to program a computer author jack collins medium book + + content: title how to program a computer author jack collins medium book - -Computer science & technology -proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 -1977 -Optical pattern recognition -Computer science & technology -proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 -1977 -Optical pattern recognition -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -40134 - + Computer science & technology + proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 + 1977 + Optical pattern recognition + + Computer science & technology + proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 + 1977 + Optical pattern recognition + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + 40134 + computer: field=title vecf[1] += mult(6) / length(3); idf[1] = log(((1 + total(10))/termoccur(9)); computer: relevance += 100000 * vecf[1](2.000000) * idf[1](0.200671) (40134); score = relevance(40134); - -content: title computer science technology author medium book + + content: title computer science technology author medium book - -The Computer Bible -1973-1980 -Bible. O.T -Bible -Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates -The Computer Bible -1973-1980 -Bible. O.T -Bible -Hebrew and Greek; introductions in English -Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -40134 - + The Computer Bible + 1973-1980 + Bible. O.T + Bible + Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates + + The Computer Bible + 1973-1980 + Bible. O.T + Bible + Hebrew and Greek; introductions in English + Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + 40134 + computer: field=title vecf[1] += mult(6) / length(3); idf[1] = log(((1 + total(10))/termoccur(9)); computer: relevance += 100000 * vecf[1](2.000000) * idf[1](0.200671) (40134); score = relevance(40134); - -content: title the computer bible author medium book + + content: title the computer bible author medium book - -A plan for community college computer development -1971 -Universities and colleges -Community colleges -Cover title -A plan for community college computer development -1971 -Universities and colleges -Community colleges -Cover title -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -17200 - + A plan for community college computer development + 1971 + Universities and colleges + Community colleges + Cover title + + A plan for community college computer development + 1971 + Universities and colleges + Community colleges + Cover title + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + 17200 + computer: field=title vecf[1] += mult(6) / length(7); idf[1] = log(((1 + total(10))/termoccur(9)); computer: relevance += 100000 * vecf[1](0.857143) * idf[1](0.200671) (17200); score = relevance(17200); - -content: title a plan for community college computer development author medium book + + content: title a plan for community college computer development author medium book - -Washington metropolitan area rail computer feasibility study; -final report -1971 -Englund, Carl R -Railroads -"Contract DOT-UT-10003." -Washington metropolitan area rail computer feasibility study; -final report -1971 -Englund, Carl R -Railroads -"Contract DOT-UT-10003." -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -17200 - + Washington metropolitan area rail computer feasibility study; + final report + 1971 + Englund, Carl R + Railroads + "Contract DOT-UT-10003." + + Washington metropolitan area rail computer feasibility study; + final report + 1971 + Englund, Carl R + Railroads + "Contract DOT-UT-10003." + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + 17200 + computer: field=title vecf[1] += mult(6) / length(7); idf[1] = log(((1 + total(10))/termoccur(9)); computer: relevance += 100000 * vecf[1](0.857143) * idf[1](0.200671) (17200); score = relevance(17200); - -content: title washington metropolitan area rail computer feasibility study author englund carl r medium book + + content: title washington metropolitan area rail computer feasibility study author englund carl r medium book - -The Puget Sound Region -a portfolio of thematic computer maps -1974 -Mairs, John W -Cartography -Puget Sound region (Wash.) -Scale of maps ca. 1:1,000,000 -The Puget Sound Region -a portfolio of thematic computer maps -1974 -Mairs, John W -Cartography -Puget Sound region (Wash.) -Scale of maps ca. 1:1,000,000 -Bibliography: p. 4 -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -16722 - + The Puget Sound Region + a portfolio of thematic computer maps + 1974 + Mairs, John W + Cartography + Puget Sound region (Wash.) + Scale of maps ca. 1:1,000,000 + + The Puget Sound Region + a portfolio of thematic computer maps + 1974 + Mairs, John W + Cartography + Puget Sound region (Wash.) + Scale of maps ca. 1:1,000,000 + Bibliography: p. 4 + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + 16722 + computer: field=title-remainder vecf[1] += mult(5) / length(6); idf[1] = log(((1 + total(10))/termoccur(9)); computer: relevance += 100000 * vecf[1](0.833333) * idf[1](0.200671) (16722); score = relevance(16722); - -content: title the puget sound region author mairs john w medium book + + content: title the puget sound region author mairs john w medium book - -Computer processing of dynamic images from an Anger scintillation camera -the proceedings of a workshop -1974 -Radioisotope scanning -Scintillation cameras -Imaging systems in medicine -Includes bibliographical references and index -Computer processing of dynamic images from an Anger scintillation camera -the proceedings of a workshop -1974 -Radioisotope scanning -Scintillation cameras -Imaging systems in medicine -Includes bibliographical references and index -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -12040 - + Computer processing of dynamic images from an Anger scintillation camera + the proceedings of a workshop + 1974 + Radioisotope scanning + Scintillation cameras + Imaging systems in medicine + Includes bibliographical references and index + + Computer processing of dynamic images from an Anger scintillation camera + the proceedings of a workshop + 1974 + Radioisotope scanning + Scintillation cameras + Imaging systems in medicine + Includes bibliographical references and index + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + 12040 + computer: field=title vecf[1] += mult(6) / length(10); idf[1] = log(((1 + total(10))/termoccur(9)); computer: relevance += 100000 * vecf[1](0.600000) * idf[1](0.200671) (12040); score = relevance(12040); - -content: title computer processing of dynamic images from an anger scintillation camera author medium book + + content: title computer processing of dynamic images from an anger scintillation camera author medium book - -The use of passwords for controlled access to computer resources -1977 -Wood, Helen M -Computers -The use of passwords for controlled access to computer resources -1977 -Wood, Helen M -Computers -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -12040 - + The use of passwords for controlled access to computer resources + 1977 + Wood, Helen M + Computers + + The use of passwords for controlled access to computer resources + 1977 + Wood, Helen M + Computers + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + 12040 + computer: field=title vecf[1] += mult(6) / length(10); idf[1] = log(((1 + total(10))/termoccur(9)); computer: relevance += 100000 * vecf[1](0.600000) * idf[1](0.200671) (12040); score = relevance(12040); - -content: title the use of passwords for controlled access to computer resources author wood helen m medium book + + content: title the use of passwords for controlled access to computer resources author wood helen m medium book - -Reconstruction tomography in diagnostic radiology and nuclear medicine -proceedings of the workshop -1977 -Tomography -Includes bibliographical references and index -Reconstruction tomography in diagnostic radiology and nuclear medicine -proceedings of the workshop -1977 -Tomography -Includes bibliographical references and index -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -0 - + Reconstruction tomography in diagnostic radiology and nuclear medicine + proceedings of the workshop + 1977 + Tomography + Includes bibliographical references and index + + Reconstruction tomography in diagnostic radiology and nuclear medicine + proceedings of the workshop + 1977 + Tomography + Includes bibliographical references and index + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + 0 + idf[1] = log(((1 + total(10))/termoccur(9)); computer: relevance += 100000 * vecf[1](0.000000) * idf[1](0.200671) (0); score = relevance(0); - -content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book + + content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book \ No newline at end of file diff --git a/test/test_http_50.res b/test/test_http_50.res index 1239939..3ae7d3e 100644 --- a/test/test_http_50.res +++ b/test/test_http_50.res @@ -6,31 +6,33 @@ 0 1 - -Computer processing of dynamic images from an Anger scintillation camera -the proceedings of a workshop -1974 -Radioisotope scanning -Scintillation cameras -Imaging systems in medicine -Includes bibliographical references and index -Computer processing of dynamic images from an Anger scintillation camera -the proceedings of a workshop -1974 -Radioisotope scanning -Scintillation cameras -Imaging systems in medicine -Includes bibliographical references and index -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -0 - + Computer processing of dynamic images from an Anger scintillation camera + the proceedings of a workshop + 1974 + Radioisotope scanning + Scintillation cameras + Imaging systems in medicine + Includes bibliographical references and index + + Computer processing of dynamic images from an Anger scintillation camera + the proceedings of a workshop + 1974 + Radioisotope scanning + Scintillation cameras + Imaging systems in medicine + Includes bibliographical references and index + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + 0 + idf[1] = log(((1 + total(1))/termoccur(0)); louis: relevance += 100000 * vecf[1](0.000000) * idf[1](0.000000) (0); score = relevance(0); - -content: title computer processing of dynamic images from an anger scintillation camera author medium book + + content: title computer processing of dynamic images from an anger scintillation camera author medium book \ No newline at end of file diff --git a/test/test_http_6.res b/test/test_http_6.res index 5a33609..f2f5103 100644 --- a/test/test_http_6.res +++ b/test/test_http_6.res @@ -1,28 +1,30 @@ -content: title how to program a computer author jack collins medium book -content: title computer science technology author medium book -0 - -How to program a computer -Jack Collins -11224466 -11224467 -How to program a computer -Jack Collins -11224467 -11224467 -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY - -How to program a computer -Jack Collins -11224466 -11224466 -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY + content: title how to program a computer author jack collins medium book + content: title computer science technology author medium book + 0 + How to program a computer + Jack Collins + 11224466 + 11224467 + + How to program a computer + Jack Collins + 11224467 + 11224467 + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + + How to program a computer + Jack Collins + 11224466 + 11224466 + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + \ No newline at end of file diff --git a/test/test_http_60.res b/test/test_http_60.res index 32d5a8a..23d4c1d 100644 --- a/test/test_http_60.res +++ b/test/test_http_60.res @@ -6,34 +6,36 @@ 0 1 - -The religious teachers of Greece -1972 -Adam, James -Greek literature -Philosophy, Ancient -Greece -Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures -The religious teachers of Greece -1972 -Adam, James -Greek literature -Philosophy, Ancient -Greece -Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures -Includes bibliographical references -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -291121 - + The religious teachers of Greece + 1972 + Adam, James + Greek literature + Philosophy, Ancient + Greece + Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures + + The religious teachers of Greece + 1972 + Adam, James + Greek literature + Philosophy, Ancient + Greece + Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures + Includes bibliographical references + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + 291121 + greece: field=title vecf[1] += mult(6) / length(5); greece: field=subject vecf[1] += mult(3) / length(1); idf[1] = log(((1 + total(1))/termoccur(1)); greece: relevance += 100000 * vecf[1](4.200000) * idf[1](0.693147) (291121); score = relevance(291121); - -content: title the religious teachers of greece author adam james medium book + + content: title the religious teachers of greece author adam james medium book \ No newline at end of file diff --git a/test/test_http_63.res b/test/test_http_63.res index 32d5a8a..23d4c1d 100644 --- a/test/test_http_63.res +++ b/test/test_http_63.res @@ -6,34 +6,36 @@ 0 1 - -The religious teachers of Greece -1972 -Adam, James -Greek literature -Philosophy, Ancient -Greece -Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures -The religious teachers of Greece -1972 -Adam, James -Greek literature -Philosophy, Ancient -Greece -Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures -Includes bibliographical references -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -291121 - + The religious teachers of Greece + 1972 + Adam, James + Greek literature + Philosophy, Ancient + Greece + Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures + + The religious teachers of Greece + 1972 + Adam, James + Greek literature + Philosophy, Ancient + Greece + Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures + Includes bibliographical references + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + 291121 + greece: field=title vecf[1] += mult(6) / length(5); greece: field=subject vecf[1] += mult(3) / length(1); idf[1] = log(((1 + total(1))/termoccur(1)); greece: relevance += 100000 * vecf[1](4.200000) * idf[1](0.693147) (291121); score = relevance(291121); - -content: title the religious teachers of greece author adam james medium book + + content: title the religious teachers of greece author adam james medium book \ No newline at end of file diff --git a/test/test_http_66.res b/test/test_http_66.res index 32d5a8a..23d4c1d 100644 --- a/test/test_http_66.res +++ b/test/test_http_66.res @@ -6,34 +6,36 @@ 0 1 - -The religious teachers of Greece -1972 -Adam, James -Greek literature -Philosophy, Ancient -Greece -Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures -The religious teachers of Greece -1972 -Adam, James -Greek literature -Philosophy, Ancient -Greece -Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures -Includes bibliographical references -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -291121 - + The religious teachers of Greece + 1972 + Adam, James + Greek literature + Philosophy, Ancient + Greece + Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures + + The religious teachers of Greece + 1972 + Adam, James + Greek literature + Philosophy, Ancient + Greece + Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures + Includes bibliographical references + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + 291121 + greece: field=title vecf[1] += mult(6) / length(5); greece: field=subject vecf[1] += mult(3) / length(1); idf[1] = log(((1 + total(1))/termoccur(1)); greece: relevance += 100000 * vecf[1](4.200000) * idf[1](0.693147) (291121); score = relevance(291121); - -content: title the religious teachers of greece author adam james medium book + + content: title the religious teachers of greece author adam james medium book \ No newline at end of file diff --git a/test/test_http_72.res b/test/test_http_72.res index 32d5a8a..23d4c1d 100644 --- a/test/test_http_72.res +++ b/test/test_http_72.res @@ -6,34 +6,36 @@ 0 1 - -The religious teachers of Greece -1972 -Adam, James -Greek literature -Philosophy, Ancient -Greece -Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures -The religious teachers of Greece -1972 -Adam, James -Greek literature -Philosophy, Ancient -Greece -Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures -Includes bibliographical references -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -291121 - + The religious teachers of Greece + 1972 + Adam, James + Greek literature + Philosophy, Ancient + Greece + Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures + + The religious teachers of Greece + 1972 + Adam, James + Greek literature + Philosophy, Ancient + Greece + Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures + Includes bibliographical references + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + 291121 + greece: field=title vecf[1] += mult(6) / length(5); greece: field=subject vecf[1] += mult(3) / length(1); idf[1] = log(((1 + total(1))/termoccur(1)); greece: relevance += 100000 * vecf[1](4.200000) * idf[1](0.693147) (291121); score = relevance(291121); - -content: title the religious teachers of greece author adam james medium book + + content: title the religious teachers of greece author adam james medium book \ No newline at end of file diff --git a/test/test_http_74.res b/test/test_http_74.res index 64bda48..41fdbea 100644 --- a/test/test_http_74.res +++ b/test/test_http_74.res @@ -6,30 +6,32 @@ 0 1 - -Washington metropolitan area rail computer feasibility study; -final report -1971 -Englund, Carl R -Railroads -"Contract DOT-UT-10003." -Washington metropolitan area rail computer feasibility study; -final report -1971 -Englund, Carl R -Railroads -"Contract DOT-UT-10003." -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -59412 - + Washington metropolitan area rail computer feasibility study; + final report + 1971 + Englund, Carl R + Railroads + "Contract DOT-UT-10003." + + Washington metropolitan area rail computer feasibility study; + final report + 1971 + Englund, Carl R + Railroads + "Contract DOT-UT-10003." + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + 59412 + computer: field=title vecf[1] += mult(6) / length(7); idf[1] = log(((1 + total(1))/termoccur(1)); computer: relevance += 100000 * vecf[1](0.857143) * idf[1](0.693147) (59412); score = relevance(59412); - -content: title washington metropolitan area rail computer feasibility study author englund carl r medium book + + content: title washington metropolitan area rail computer feasibility study author englund carl r medium book \ No newline at end of file diff --git a/test/test_http_76.res b/test/test_http_76.res index 154ce24..368584d 100644 --- a/test/test_http_76.res +++ b/test/test_http_76.res @@ -6,99 +6,107 @@ 0 4 - -Computer science & technology -proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 -1977 -Optical pattern recognition -Computer science & technology -proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 -1977 -Optical pattern recognition -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -102165 - + Computer science & technology + proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 + 1977 + Optical pattern recognition + + Computer science & technology + proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 + 1977 + Optical pattern recognition + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + 102165 + computer: field=title vecf[1] += mult(6) / length(3); idf[1] = log(((1 + total(4))/termoccur(3)); computer: relevance += 100000 * vecf[1](2.000000) * idf[1](0.510826) (102165); score = relevance(102165); - -content: title computer science technology author medium book + + content: title computer science technology author medium book - -The Computer Bible -1973-1980 -Bible. O.T -Bible -Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates -The Computer Bible -1973-1980 -Bible. O.T -Bible -Hebrew and Greek; introductions in English -Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -102165 - + The Computer Bible + 1973-1980 + Bible. O.T + Bible + Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates + + The Computer Bible + 1973-1980 + Bible. O.T + Bible + Hebrew and Greek; introductions in English + Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + 102165 + computer: field=title vecf[1] += mult(6) / length(3); idf[1] = log(((1 + total(4))/termoccur(3)); computer: relevance += 100000 * vecf[1](2.000000) * idf[1](0.510826) (102165); score = relevance(102165); - -content: title the computer bible author medium book + + content: title the computer bible author medium book - -The use of passwords for controlled access to computer resources -1977 -Wood, Helen M -Computers -The use of passwords for controlled access to computer resources -1977 -Wood, Helen M -Computers -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -30649 - + The use of passwords for controlled access to computer resources + 1977 + Wood, Helen M + Computers + + The use of passwords for controlled access to computer resources + 1977 + Wood, Helen M + Computers + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + 30649 + computer: field=title vecf[1] += mult(6) / length(10); idf[1] = log(((1 + total(4))/termoccur(3)); computer: relevance += 100000 * vecf[1](0.600000) * idf[1](0.510826) (30649); score = relevance(30649); - -content: title the use of passwords for controlled access to computer resources author wood helen m medium book + + content: title the use of passwords for controlled access to computer resources author wood helen m medium book - -Reconstruction tomography in diagnostic radiology and nuclear medicine -proceedings of the workshop -1977 -Tomography -Includes bibliographical references and index -Reconstruction tomography in diagnostic radiology and nuclear medicine -proceedings of the workshop -1977 -Tomography -Includes bibliographical references and index -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -0 - + Reconstruction tomography in diagnostic radiology and nuclear medicine + proceedings of the workshop + 1977 + Tomography + Includes bibliographical references and index + + Reconstruction tomography in diagnostic radiology and nuclear medicine + proceedings of the workshop + 1977 + Tomography + Includes bibliographical references and index + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + 0 + idf[1] = log(((1 + total(4))/termoccur(3)); computer: relevance += 100000 * vecf[1](0.000000) * idf[1](0.510826) (0); score = relevance(0); - -content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book + + content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book \ No newline at end of file diff --git a/test/test_http_79.res b/test/test_http_79.res index 60ab8a7..3acd5ed 100644 --- a/test/test_http_79.res +++ b/test/test_http_79.res @@ -6,61 +6,65 @@ 0 2 - -The religious teachers of Greece -1972 -Adam, James -Greek literature -Philosophy, Ancient -Greece -Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures -The religious teachers of Greece -1972 -Adam, James -Greek literature -Philosophy, Ancient -Greece -Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures -Includes bibliographical references -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -60819 - + The religious teachers of Greece + 1972 + Adam, James + Greek literature + Philosophy, Ancient + Greece + Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures + + The religious teachers of Greece + 1972 + Adam, James + Greek literature + Philosophy, Ancient + Greece + Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures + Includes bibliographical references + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + 60819 + adam: field=author vecf[1] += mult(3) / length(2); idf[1] = log(((1 + total(2))/termoccur(2)); adam: relevance += 100000 * vecf[1](1.500000) * idf[1](0.405465) (60819); score = relevance(60819); - -content: title the religious teachers of greece author adam james medium book + + content: title the religious teachers of greece author adam james medium book - -Four psalms -XXIII, XXXVI, LII, CXXI -1980 -Smith, George Adam -Bible -Four psalms -XXIII, XXXVI, LII, CXXI -1980 -Smith, George Adam -Bible -Bible -Bible -Bible -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -40546 - + Four psalms + XXIII, XXXVI, LII, CXXI + 1980 + Smith, George Adam + Bible + + Four psalms + XXIII, XXXVI, LII, CXXI + 1980 + Smith, George Adam + Bible + Bible + Bible + Bible + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + 40546 + adam: field=author vecf[1] += mult(3) / length(3); idf[1] = log(((1 + total(2))/termoccur(2)); adam: relevance += 100000 * vecf[1](1.000000) * idf[1](0.405465) (40546); score = relevance(40546); - -content: title four psalms author smith george adam medium book + + content: title four psalms author smith george adam medium book \ No newline at end of file diff --git a/test/test_http_8.res b/test/test_http_8.res index 229adc5..4020735 100644 --- a/test/test_http_8.res +++ b/test/test_http_8.res @@ -6,175 +6,193 @@ 0 9 - -Washington metropolitan area rail computer feasibility study; -final report -1971 -Englund, Carl R -Railroads -"Contract DOT-UT-10003." -Washington metropolitan area rail computer feasibility study; -final report -1971 -Englund, Carl R -Railroads -"Contract DOT-UT-10003." -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -content: title washington metropolitan area rail computer feasibility study author englund carl r medium book + Washington metropolitan area rail computer feasibility study; + final report + 1971 + Englund, Carl R + Railroads + "Contract DOT-UT-10003." + + Washington metropolitan area rail computer feasibility study; + final report + 1971 + Englund, Carl R + Railroads + "Contract DOT-UT-10003." + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + content: title washington metropolitan area rail computer feasibility study author englund carl r medium book - -The use of passwords for controlled access to computer resources -1977 -Wood, Helen M -Computers -The use of passwords for controlled access to computer resources -1977 -Wood, Helen M -Computers -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -content: title the use of passwords for controlled access to computer resources author wood helen m medium book + The use of passwords for controlled access to computer resources + 1977 + Wood, Helen M + Computers + + The use of passwords for controlled access to computer resources + 1977 + Wood, Helen M + Computers + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + content: title the use of passwords for controlled access to computer resources author wood helen m medium book - -Reconstruction tomography in diagnostic radiology and nuclear medicine -proceedings of the workshop -1977 -Tomography -Includes bibliographical references and index -Reconstruction tomography in diagnostic radiology and nuclear medicine -proceedings of the workshop -1977 -Tomography -Includes bibliographical references and index -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book + Reconstruction tomography in diagnostic radiology and nuclear medicine + proceedings of the workshop + 1977 + Tomography + Includes bibliographical references and index + + Reconstruction tomography in diagnostic radiology and nuclear medicine + proceedings of the workshop + 1977 + Tomography + Includes bibliographical references and index + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book - -The Puget Sound Region -a portfolio of thematic computer maps -1974 -Mairs, John W -Cartography -Puget Sound region (Wash.) -Scale of maps ca. 1:1,000,000 -The Puget Sound Region -a portfolio of thematic computer maps -1974 -Mairs, John W -Cartography -Puget Sound region (Wash.) -Scale of maps ca. 1:1,000,000 -Bibliography: p. 4 -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -content: title the puget sound region author mairs john w medium book + The Puget Sound Region + a portfolio of thematic computer maps + 1974 + Mairs, John W + Cartography + Puget Sound region (Wash.) + Scale of maps ca. 1:1,000,000 + + The Puget Sound Region + a portfolio of thematic computer maps + 1974 + Mairs, John W + Cartography + Puget Sound region (Wash.) + Scale of maps ca. 1:1,000,000 + Bibliography: p. 4 + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + content: title the puget sound region author mairs john w medium book - -A plan for community college computer development -1971 -Universities and colleges -Community colleges -Cover title -A plan for community college computer development -1971 -Universities and colleges -Community colleges -Cover title -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -content: title a plan for community college computer development author medium book + A plan for community college computer development + 1971 + Universities and colleges + Community colleges + Cover title + + A plan for community college computer development + 1971 + Universities and colleges + Community colleges + Cover title + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + content: title a plan for community college computer development author medium book - -How to program a computer -Jack Collins -How to program a computer -Jack Collins -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY - -How to program a computer -Jack Collins -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -2 -content: title how to program a computer author jack collins medium book + How to program a computer + Jack Collins + + How to program a computer + Jack Collins + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + + How to program a computer + Jack Collins + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 2 + content: title how to program a computer author jack collins medium book - -Computer science & technology -proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 -1977 -Optical pattern recognition -Computer science & technology -proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 -1977 -Optical pattern recognition -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -content: title computer science technology author medium book + Computer science & technology + proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 + 1977 + Optical pattern recognition + + Computer science & technology + proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 + 1977 + Optical pattern recognition + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + content: title computer science technology author medium book - -Computer processing of dynamic images from an Anger scintillation camera -the proceedings of a workshop -1974 -Radioisotope scanning -Scintillation cameras -Imaging systems in medicine -Includes bibliographical references and index -Computer processing of dynamic images from an Anger scintillation camera -the proceedings of a workshop -1974 -Radioisotope scanning -Scintillation cameras -Imaging systems in medicine -Includes bibliographical references and index -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -content: title computer processing of dynamic images from an anger scintillation camera author medium book + Computer processing of dynamic images from an Anger scintillation camera + the proceedings of a workshop + 1974 + Radioisotope scanning + Scintillation cameras + Imaging systems in medicine + Includes bibliographical references and index + + Computer processing of dynamic images from an Anger scintillation camera + the proceedings of a workshop + 1974 + Radioisotope scanning + Scintillation cameras + Imaging systems in medicine + Includes bibliographical references and index + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + content: title computer processing of dynamic images from an anger scintillation camera author medium book - -The Computer Bible -1973-1980 -Bible. O.T -Bible -Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates -The Computer Bible -1973-1980 -Bible. O.T -Bible -Hebrew and Greek; introductions in English -Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -content: title the computer bible author medium book + The Computer Bible + 1973-1980 + Bible. O.T + Bible + Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates + + The Computer Bible + 1973-1980 + Bible. O.T + Bible + Hebrew and Greek; introductions in English + Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + content: title the computer bible author medium book \ No newline at end of file diff --git a/test/test_http_81.res b/test/test_http_81.res index 8d50bf8..abbdbbb 100644 --- a/test/test_http_81.res +++ b/test/test_http_81.res @@ -6,28 +6,30 @@ 0 1 - -The religious teachers of Greece -1972 -Adam, James -Greek literature -Philosophy, Ancient -Greece -Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures -The religious teachers of Greece -1972 -Adam, James -Greek literature -Philosophy, Ancient -Greece -Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures -Includes bibliographical references -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -374298 - + The religious teachers of Greece + 1972 + Adam, James + Greek literature + Philosophy, Ancient + Greece + Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures + + The religious teachers of Greece + 1972 + Adam, James + Greek literature + Philosophy, Ancient + Greece + Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures + Includes bibliographical references + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + 374298 + teachers: field=title vecf[1] += mult(6) / length(5); greece: field=title vecf[2] += mult(6) / length(5); greece: field=subject vecf[2] += mult(3) / length(1); @@ -36,7 +38,7 @@ teachers: relevance += 100000 * vecf[1](1.200000) * idf[1](0.693147) (83177); idf[2] = log(((1 + total(1))/termoccur(1)); greece: relevance += 100000 * vecf[2](4.200000) * idf[2](0.693147) (291121); score = relevance(374298); - -content: title the religious teachers of greece author adam james medium book + + content: title the religious teachers of greece author adam james medium book \ No newline at end of file diff --git a/test/test_http_9.res b/test/test_http_9.res index 91d6218..3ffbc56 100644 --- a/test/test_http_9.res +++ b/test/test_http_9.res @@ -6,175 +6,193 @@ 0 9 - -The Computer Bible -1973-1980 -Bible. O.T -Bible -Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates -The Computer Bible -1973-1980 -Bible. O.T -Bible -Hebrew and Greek; introductions in English -Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -content: title the computer bible author medium book + The Computer Bible + 1973-1980 + Bible. O.T + Bible + Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates + + The Computer Bible + 1973-1980 + Bible. O.T + Bible + Hebrew and Greek; introductions in English + Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + content: title the computer bible author medium book - -Computer processing of dynamic images from an Anger scintillation camera -the proceedings of a workshop -1974 -Radioisotope scanning -Scintillation cameras -Imaging systems in medicine -Includes bibliographical references and index -Computer processing of dynamic images from an Anger scintillation camera -the proceedings of a workshop -1974 -Radioisotope scanning -Scintillation cameras -Imaging systems in medicine -Includes bibliographical references and index -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -content: title computer processing of dynamic images from an anger scintillation camera author medium book + Computer processing of dynamic images from an Anger scintillation camera + the proceedings of a workshop + 1974 + Radioisotope scanning + Scintillation cameras + Imaging systems in medicine + Includes bibliographical references and index + + Computer processing of dynamic images from an Anger scintillation camera + the proceedings of a workshop + 1974 + Radioisotope scanning + Scintillation cameras + Imaging systems in medicine + Includes bibliographical references and index + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + content: title computer processing of dynamic images from an anger scintillation camera author medium book - -Computer science & technology -proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 -1977 -Optical pattern recognition -Computer science & technology -proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 -1977 -Optical pattern recognition -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -content: title computer science technology author medium book + Computer science & technology + proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 + 1977 + Optical pattern recognition + + Computer science & technology + proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 + 1977 + Optical pattern recognition + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + content: title computer science technology author medium book - -How to program a computer -Jack Collins -How to program a computer -Jack Collins -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY - -How to program a computer -Jack Collins -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -2 -content: title how to program a computer author jack collins medium book + How to program a computer + Jack Collins + + How to program a computer + Jack Collins + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + + How to program a computer + Jack Collins + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 2 + content: title how to program a computer author jack collins medium book - -A plan for community college computer development -1971 -Universities and colleges -Community colleges -Cover title -A plan for community college computer development -1971 -Universities and colleges -Community colleges -Cover title -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -content: title a plan for community college computer development author medium book + A plan for community college computer development + 1971 + Universities and colleges + Community colleges + Cover title + + A plan for community college computer development + 1971 + Universities and colleges + Community colleges + Cover title + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + content: title a plan for community college computer development author medium book - -The Puget Sound Region -a portfolio of thematic computer maps -1974 -Mairs, John W -Cartography -Puget Sound region (Wash.) -Scale of maps ca. 1:1,000,000 -The Puget Sound Region -a portfolio of thematic computer maps -1974 -Mairs, John W -Cartography -Puget Sound region (Wash.) -Scale of maps ca. 1:1,000,000 -Bibliography: p. 4 -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -content: title the puget sound region author mairs john w medium book + The Puget Sound Region + a portfolio of thematic computer maps + 1974 + Mairs, John W + Cartography + Puget Sound region (Wash.) + Scale of maps ca. 1:1,000,000 + + The Puget Sound Region + a portfolio of thematic computer maps + 1974 + Mairs, John W + Cartography + Puget Sound region (Wash.) + Scale of maps ca. 1:1,000,000 + Bibliography: p. 4 + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + content: title the puget sound region author mairs john w medium book - -Reconstruction tomography in diagnostic radiology and nuclear medicine -proceedings of the workshop -1977 -Tomography -Includes bibliographical references and index -Reconstruction tomography in diagnostic radiology and nuclear medicine -proceedings of the workshop -1977 -Tomography -Includes bibliographical references and index -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book + Reconstruction tomography in diagnostic radiology and nuclear medicine + proceedings of the workshop + 1977 + Tomography + Includes bibliographical references and index + + Reconstruction tomography in diagnostic radiology and nuclear medicine + proceedings of the workshop + 1977 + Tomography + Includes bibliographical references and index + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book - -The use of passwords for controlled access to computer resources -1977 -Wood, Helen M -Computers -The use of passwords for controlled access to computer resources -1977 -Wood, Helen M -Computers -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -content: title the use of passwords for controlled access to computer resources author wood helen m medium book + The use of passwords for controlled access to computer resources + 1977 + Wood, Helen M + Computers + + The use of passwords for controlled access to computer resources + 1977 + Wood, Helen M + Computers + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + content: title the use of passwords for controlled access to computer resources author wood helen m medium book - -Washington metropolitan area rail computer feasibility study; -final report -1971 -Englund, Carl R -Railroads -"Contract DOT-UT-10003." -Washington metropolitan area rail computer feasibility study; -final report -1971 -Englund, Carl R -Railroads -"Contract DOT-UT-10003." -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -content: title washington metropolitan area rail computer feasibility study author englund carl r medium book + Washington metropolitan area rail computer feasibility study; + final report + 1971 + Englund, Carl R + Railroads + "Contract DOT-UT-10003." + + Washington metropolitan area rail computer feasibility study; + final report + 1971 + Englund, Carl R + Railroads + "Contract DOT-UT-10003." + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + content: title washington metropolitan area rail computer feasibility study author englund carl r medium book \ No newline at end of file diff --git a/test/test_icu_4.res b/test/test_icu_4.res index 30e9aff..89bbf2d 100644 --- a/test/test_icu_4.res +++ b/test/test_icu_4.res @@ -6,149 +6,167 @@ 0 9 - -Washington metropolitan area rail computer feasibility study; -final report -1971 -Englund, Carl R -"Contract DOT-UT-10003." -Washington metropolitan area rail computer feasibility study; -final report -1971 -Englund, Carl R -"Contract DOT-UT-10003." -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -content: title washington metropolitan area rail computer feasibility study author englund carl r medium book + Washington metropolitan area rail computer feasibility study; + final report + 1971 + Englund, Carl R + "Contract DOT-UT-10003." + + Washington metropolitan area rail computer feasibility study; + final report + 1971 + Englund, Carl R + "Contract DOT-UT-10003." + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + content: title washington metropolitan area rail computer feasibility study author englund carl r medium book - -The use of passwords for controlled access to computer resources -1977 -Wood, Helen M -The use of passwords for controlled access to computer resources -1977 -Wood, Helen M -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -content: title the use of passwords for controlled access to computer resources author wood helen m medium book + The use of passwords for controlled access to computer resources + 1977 + Wood, Helen M + + The use of passwords for controlled access to computer resources + 1977 + Wood, Helen M + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + content: title the use of passwords for controlled access to computer resources author wood helen m medium book - -Reconstruction tomography in diagnostic radiology and nuclear medicine -proceedings of the workshop -1977 -Includes bibliographical references and index -Reconstruction tomography in diagnostic radiology and nuclear medicine -proceedings of the workshop -1977 -Includes bibliographical references and index -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book + Reconstruction tomography in diagnostic radiology and nuclear medicine + proceedings of the workshop + 1977 + Includes bibliographical references and index + + Reconstruction tomography in diagnostic radiology and nuclear medicine + proceedings of the workshop + 1977 + Includes bibliographical references and index + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book - -The Puget Sound Region -a portfolio of thematic computer maps -1974 -Mairs, John W -Scale of maps ca. 1:1,000,000 -The Puget Sound Region -a portfolio of thematic computer maps -1974 -Mairs, John W -Scale of maps ca. 1:1,000,000 -Bibliography: p. 4 -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -content: title the puget sound region author mairs john w medium book + The Puget Sound Region + a portfolio of thematic computer maps + 1974 + Mairs, John W + Scale of maps ca. 1:1,000,000 + + The Puget Sound Region + a portfolio of thematic computer maps + 1974 + Mairs, John W + Scale of maps ca. 1:1,000,000 + Bibliography: p. 4 + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + content: title the puget sound region author mairs john w medium book - -A plan for community college computer development -1971 -Cover title -A plan for community college computer development -1971 -Cover title -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -content: title a plan for community college computer development author medium book + A plan for community college computer development + 1971 + Cover title + + A plan for community college computer development + 1971 + Cover title + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + content: title a plan for community college computer development author medium book - -How to program a computer -Jack Collins -How to program a computer -Jack Collins -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY - -How to program a computer -Jack Collins -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -2 -content: title how to program a computer author jack collins medium book + How to program a computer + Jack Collins + + How to program a computer + Jack Collins + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + + How to program a computer + Jack Collins + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 2 + content: title how to program a computer author jack collins medium book - -Computer science & technology -proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 -1977 -Computer science & technology -proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 -1977 -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -content: title computer science technology author medium book + Computer science & technology + proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 + 1977 + + Computer science & technology + proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 + 1977 + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + content: title computer science technology author medium book - -Computer processing of dynamic images from an Anger scintillation camera -the proceedings of a workshop -1974 -Includes bibliographical references and index -Computer processing of dynamic images from an Anger scintillation camera -the proceedings of a workshop -1974 -Includes bibliographical references and index -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -content: title computer processing of dynamic images from an anger scintillation camera author medium book + Computer processing of dynamic images from an Anger scintillation camera + the proceedings of a workshop + 1974 + Includes bibliographical references and index + + Computer processing of dynamic images from an Anger scintillation camera + the proceedings of a workshop + 1974 + Includes bibliographical references and index + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + content: title computer processing of dynamic images from an anger scintillation camera author medium book - -The Computer Bible -1973-1980 -Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates -The Computer Bible -1973-1980 -Hebrew and Greek; introductions in English -Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -content: title the computer bible author medium book + The Computer Bible + 1973-1980 + Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates + + The Computer Bible + 1973-1980 + Hebrew and Greek; introductions in English + Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + content: title the computer bible author medium book \ No newline at end of file diff --git a/test/test_icu_5.res b/test/test_icu_5.res index 821e962..a6a3dfb 100644 --- a/test/test_icu_5.res +++ b/test/test_icu_5.res @@ -6,149 +6,167 @@ 0 9 - -The Computer Bible -1973-1980 -Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates -The Computer Bible -1973-1980 -Hebrew and Greek; introductions in English -Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -content: title the computer bible author medium book + The Computer Bible + 1973-1980 + Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates + + The Computer Bible + 1973-1980 + Hebrew and Greek; introductions in English + Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + content: title the computer bible author medium book - -Computer processing of dynamic images from an Anger scintillation camera -the proceedings of a workshop -1974 -Includes bibliographical references and index -Computer processing of dynamic images from an Anger scintillation camera -the proceedings of a workshop -1974 -Includes bibliographical references and index -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -content: title computer processing of dynamic images from an anger scintillation camera author medium book + Computer processing of dynamic images from an Anger scintillation camera + the proceedings of a workshop + 1974 + Includes bibliographical references and index + + Computer processing of dynamic images from an Anger scintillation camera + the proceedings of a workshop + 1974 + Includes bibliographical references and index + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + content: title computer processing of dynamic images from an anger scintillation camera author medium book - -Computer science & technology -proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 -1977 -Computer science & technology -proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 -1977 -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -content: title computer science technology author medium book + Computer science & technology + proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 + 1977 + + Computer science & technology + proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 + 1977 + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + content: title computer science technology author medium book - -How to program a computer -Jack Collins -How to program a computer -Jack Collins -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY - -How to program a computer -Jack Collins -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -2 -content: title how to program a computer author jack collins medium book + How to program a computer + Jack Collins + + How to program a computer + Jack Collins + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + + How to program a computer + Jack Collins + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 2 + content: title how to program a computer author jack collins medium book - -A plan for community college computer development -1971 -Cover title -A plan for community college computer development -1971 -Cover title -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -content: title a plan for community college computer development author medium book + A plan for community college computer development + 1971 + Cover title + + A plan for community college computer development + 1971 + Cover title + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + content: title a plan for community college computer development author medium book - -The Puget Sound Region -a portfolio of thematic computer maps -1974 -Mairs, John W -Scale of maps ca. 1:1,000,000 -The Puget Sound Region -a portfolio of thematic computer maps -1974 -Mairs, John W -Scale of maps ca. 1:1,000,000 -Bibliography: p. 4 -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -content: title the puget sound region author mairs john w medium book + The Puget Sound Region + a portfolio of thematic computer maps + 1974 + Mairs, John W + Scale of maps ca. 1:1,000,000 + + The Puget Sound Region + a portfolio of thematic computer maps + 1974 + Mairs, John W + Scale of maps ca. 1:1,000,000 + Bibliography: p. 4 + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + content: title the puget sound region author mairs john w medium book - -Reconstruction tomography in diagnostic radiology and nuclear medicine -proceedings of the workshop -1977 -Includes bibliographical references and index -Reconstruction tomography in diagnostic radiology and nuclear medicine -proceedings of the workshop -1977 -Includes bibliographical references and index -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book + Reconstruction tomography in diagnostic radiology and nuclear medicine + proceedings of the workshop + 1977 + Includes bibliographical references and index + + Reconstruction tomography in diagnostic radiology and nuclear medicine + proceedings of the workshop + 1977 + Includes bibliographical references and index + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book - -The use of passwords for controlled access to computer resources -1977 -Wood, Helen M -The use of passwords for controlled access to computer resources -1977 -Wood, Helen M -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -content: title the use of passwords for controlled access to computer resources author wood helen m medium book + The use of passwords for controlled access to computer resources + 1977 + Wood, Helen M + + The use of passwords for controlled access to computer resources + 1977 + Wood, Helen M + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + content: title the use of passwords for controlled access to computer resources author wood helen m medium book - -Washington metropolitan area rail computer feasibility study; -final report -1971 -Englund, Carl R -"Contract DOT-UT-10003." -Washington metropolitan area rail computer feasibility study; -final report -1971 -Englund, Carl R -"Contract DOT-UT-10003." -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -content: title washington metropolitan area rail computer feasibility study author englund carl r medium book + Washington metropolitan area rail computer feasibility study; + final report + 1971 + Englund, Carl R + "Contract DOT-UT-10003." + + Washington metropolitan area rail computer feasibility study; + final report + 1971 + Englund, Carl R + "Contract DOT-UT-10003." + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + content: title washington metropolitan area rail computer feasibility study author englund carl r medium book \ No newline at end of file diff --git a/test/test_icu_6.res b/test/test_icu_6.res index 608c8d7..a8a5f9f 100644 --- a/test/test_icu_6.res +++ b/test/test_icu_6.res @@ -6,149 +6,167 @@ 0 9 - -The Computer Bible -1973-1980 -Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates -The Computer Bible -1973-1980 -Hebrew and Greek; introductions in English -Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -content: title the computer bible author medium book + The Computer Bible + 1973-1980 + Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates + + The Computer Bible + 1973-1980 + Hebrew and Greek; introductions in English + Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + content: title the computer bible author medium book - -Computer science & technology -proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 -1977 -Computer science & technology -proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 -1977 -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -content: title computer science technology author medium book + Computer science & technology + proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 + 1977 + + Computer science & technology + proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 + 1977 + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + content: title computer science technology author medium book - -Reconstruction tomography in diagnostic radiology and nuclear medicine -proceedings of the workshop -1977 -Includes bibliographical references and index -Reconstruction tomography in diagnostic radiology and nuclear medicine -proceedings of the workshop -1977 -Includes bibliographical references and index -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book + Reconstruction tomography in diagnostic radiology and nuclear medicine + proceedings of the workshop + 1977 + Includes bibliographical references and index + + Reconstruction tomography in diagnostic radiology and nuclear medicine + proceedings of the workshop + 1977 + Includes bibliographical references and index + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book - -The use of passwords for controlled access to computer resources -1977 -Wood, Helen M -The use of passwords for controlled access to computer resources -1977 -Wood, Helen M -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -content: title the use of passwords for controlled access to computer resources author wood helen m medium book + The use of passwords for controlled access to computer resources + 1977 + Wood, Helen M + + The use of passwords for controlled access to computer resources + 1977 + Wood, Helen M + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + content: title the use of passwords for controlled access to computer resources author wood helen m medium book - -Computer processing of dynamic images from an Anger scintillation camera -the proceedings of a workshop -1974 -Includes bibliographical references and index -Computer processing of dynamic images from an Anger scintillation camera -the proceedings of a workshop -1974 -Includes bibliographical references and index -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -content: title computer processing of dynamic images from an anger scintillation camera author medium book + Computer processing of dynamic images from an Anger scintillation camera + the proceedings of a workshop + 1974 + Includes bibliographical references and index + + Computer processing of dynamic images from an Anger scintillation camera + the proceedings of a workshop + 1974 + Includes bibliographical references and index + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + content: title computer processing of dynamic images from an anger scintillation camera author medium book - -The Puget Sound Region -a portfolio of thematic computer maps -1974 -Mairs, John W -Scale of maps ca. 1:1,000,000 -The Puget Sound Region -a portfolio of thematic computer maps -1974 -Mairs, John W -Scale of maps ca. 1:1,000,000 -Bibliography: p. 4 -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -content: title the puget sound region author mairs john w medium book + The Puget Sound Region + a portfolio of thematic computer maps + 1974 + Mairs, John W + Scale of maps ca. 1:1,000,000 + + The Puget Sound Region + a portfolio of thematic computer maps + 1974 + Mairs, John W + Scale of maps ca. 1:1,000,000 + Bibliography: p. 4 + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + content: title the puget sound region author mairs john w medium book - -A plan for community college computer development -1971 -Cover title -A plan for community college computer development -1971 -Cover title -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -content: title a plan for community college computer development author medium book + A plan for community college computer development + 1971 + Cover title + + A plan for community college computer development + 1971 + Cover title + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + content: title a plan for community college computer development author medium book - -Washington metropolitan area rail computer feasibility study; -final report -1971 -Englund, Carl R -"Contract DOT-UT-10003." -Washington metropolitan area rail computer feasibility study; -final report -1971 -Englund, Carl R -"Contract DOT-UT-10003." -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -content: title washington metropolitan area rail computer feasibility study author englund carl r medium book + Washington metropolitan area rail computer feasibility study; + final report + 1971 + Englund, Carl R + "Contract DOT-UT-10003." + + Washington metropolitan area rail computer feasibility study; + final report + 1971 + Englund, Carl R + "Contract DOT-UT-10003." + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + content: title washington metropolitan area rail computer feasibility study author englund carl r medium book - -How to program a computer -Jack Collins -How to program a computer -Jack Collins -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY - -How to program a computer -Jack Collins -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -2 -content: title how to program a computer author jack collins medium book + How to program a computer + Jack Collins + + How to program a computer + Jack Collins + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + + How to program a computer + Jack Collins + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 2 + content: title how to program a computer author jack collins medium book \ No newline at end of file diff --git a/test/test_icu_7.res b/test/test_icu_7.res index e61d6ce..67eab02 100644 --- a/test/test_icu_7.res +++ b/test/test_icu_7.res @@ -6,149 +6,167 @@ 0 9 - -A plan for community college computer development -1971 -Cover title -A plan for community college computer development -1971 -Cover title -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -content: title a plan for community college computer development author medium book + A plan for community college computer development + 1971 + Cover title + + A plan for community college computer development + 1971 + Cover title + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + content: title a plan for community college computer development author medium book - -Washington metropolitan area rail computer feasibility study; -final report -1971 -Englund, Carl R -"Contract DOT-UT-10003." -Washington metropolitan area rail computer feasibility study; -final report -1971 -Englund, Carl R -"Contract DOT-UT-10003." -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -content: title washington metropolitan area rail computer feasibility study author englund carl r medium book + Washington metropolitan area rail computer feasibility study; + final report + 1971 + Englund, Carl R + "Contract DOT-UT-10003." + + Washington metropolitan area rail computer feasibility study; + final report + 1971 + Englund, Carl R + "Contract DOT-UT-10003." + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + content: title washington metropolitan area rail computer feasibility study author englund carl r medium book - -The Computer Bible -1973-1980 -Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates -The Computer Bible -1973-1980 -Hebrew and Greek; introductions in English -Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -content: title the computer bible author medium book + The Computer Bible + 1973-1980 + Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates + + The Computer Bible + 1973-1980 + Hebrew and Greek; introductions in English + Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + content: title the computer bible author medium book - -Computer processing of dynamic images from an Anger scintillation camera -the proceedings of a workshop -1974 -Includes bibliographical references and index -Computer processing of dynamic images from an Anger scintillation camera -the proceedings of a workshop -1974 -Includes bibliographical references and index -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -content: title computer processing of dynamic images from an anger scintillation camera author medium book + Computer processing of dynamic images from an Anger scintillation camera + the proceedings of a workshop + 1974 + Includes bibliographical references and index + + Computer processing of dynamic images from an Anger scintillation camera + the proceedings of a workshop + 1974 + Includes bibliographical references and index + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + content: title computer processing of dynamic images from an anger scintillation camera author medium book - -The Puget Sound Region -a portfolio of thematic computer maps -1974 -Mairs, John W -Scale of maps ca. 1:1,000,000 -The Puget Sound Region -a portfolio of thematic computer maps -1974 -Mairs, John W -Scale of maps ca. 1:1,000,000 -Bibliography: p. 4 -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -content: title the puget sound region author mairs john w medium book + The Puget Sound Region + a portfolio of thematic computer maps + 1974 + Mairs, John W + Scale of maps ca. 1:1,000,000 + + The Puget Sound Region + a portfolio of thematic computer maps + 1974 + Mairs, John W + Scale of maps ca. 1:1,000,000 + Bibliography: p. 4 + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + content: title the puget sound region author mairs john w medium book - -Computer science & technology -proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 -1977 -Computer science & technology -proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 -1977 -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -content: title computer science technology author medium book + Computer science & technology + proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 + 1977 + + Computer science & technology + proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 + 1977 + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + content: title computer science technology author medium book - -Reconstruction tomography in diagnostic radiology and nuclear medicine -proceedings of the workshop -1977 -Includes bibliographical references and index -Reconstruction tomography in diagnostic radiology and nuclear medicine -proceedings of the workshop -1977 -Includes bibliographical references and index -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book + Reconstruction tomography in diagnostic radiology and nuclear medicine + proceedings of the workshop + 1977 + Includes bibliographical references and index + + Reconstruction tomography in diagnostic radiology and nuclear medicine + proceedings of the workshop + 1977 + Includes bibliographical references and index + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book - -The use of passwords for controlled access to computer resources -1977 -Wood, Helen M -The use of passwords for controlled access to computer resources -1977 -Wood, Helen M -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -content: title the use of passwords for controlled access to computer resources author wood helen m medium book + The use of passwords for controlled access to computer resources + 1977 + Wood, Helen M + + The use of passwords for controlled access to computer resources + 1977 + Wood, Helen M + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + content: title the use of passwords for controlled access to computer resources author wood helen m medium book - -How to program a computer -Jack Collins -How to program a computer -Jack Collins -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY - -How to program a computer -Jack Collins -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -2 -content: title how to program a computer author jack collins medium book + How to program a computer + Jack Collins + + How to program a computer + Jack Collins + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + + How to program a computer + Jack Collins + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 2 + content: title how to program a computer author jack collins medium book \ No newline at end of file diff --git a/test/test_icu_9.res b/test/test_icu_9.res index 409dc0f..8182c24 100644 --- a/test/test_icu_9.res +++ b/test/test_icu_9.res @@ -6,213 +6,231 @@ 0 9 - -The use of passwords for controlled access to computer resources -1977 -Wood, Helen M -The use of passwords for controlled access to computer resources -1977 -Wood, Helen M -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -72241 - + The use of passwords for controlled access to computer resources + 1977 + Wood, Helen M + + The use of passwords for controlled access to computer resources + 1977 + Wood, Helen M + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + 72241 + computer: field=title vecf[1] += mult(6) / length(10); computer: field=subject vecf[1] += mult(3) / length(1); idf[1] = log(((1 + total(10))/termoccur(9)); computer: relevance += 100000 * vecf[1](3.600000) * idf[1](0.200671) (72241); score = relevance(72241); - -content: title the use of passwords for controlled access to computer resources author wood helen m medium book + + content: title the use of passwords for controlled access to computer resources author wood helen m medium book - -How to program a computer -Jack Collins -How to program a computer -Jack Collins -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY - -How to program a computer -Jack Collins -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -2 -48160 - + How to program a computer + Jack Collins + + How to program a computer + Jack Collins + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + + How to program a computer + Jack Collins + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 2 + 48160 + computer: field=title vecf[1] += mult(6) / length(5); computer: field=title vecf[1] += mult(6) / length(5); idf[1] = log(((1 + total(10))/termoccur(9)); computer: relevance += 100000 * vecf[1](2.400000) * idf[1](0.200671) (48160); score = relevance(48160); - -content: title how to program a computer author jack collins medium book + + content: title how to program a computer author jack collins medium book - -The Computer Bible -1973-1980 -Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates -The Computer Bible -1973-1980 -Hebrew and Greek; introductions in English -Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -40134 - + The Computer Bible + 1973-1980 + Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates + + The Computer Bible + 1973-1980 + Hebrew and Greek; introductions in English + Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + 40134 + computer: field=title vecf[1] += mult(6) / length(3); idf[1] = log(((1 + total(10))/termoccur(9)); computer: relevance += 100000 * vecf[1](2.000000) * idf[1](0.200671) (40134); score = relevance(40134); - -content: title the computer bible author medium book + + content: title the computer bible author medium book - -Computer science & technology -proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 -1977 -Computer science & technology -proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 -1977 -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -30100 - + Computer science & technology + proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 + 1977 + + Computer science & technology + proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 + 1977 + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + 30100 + computer: field=title vecf[1] += mult(6) / length(4); idf[1] = log(((1 + total(10))/termoccur(9)); computer: relevance += 100000 * vecf[1](1.500000) * idf[1](0.200671) (30100); score = relevance(30100); - -content: title computer science technology author medium book + + content: title computer science technology author medium book - -A plan for community college computer development -1971 -Cover title -A plan for community college computer development -1971 -Cover title -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -17200 - + A plan for community college computer development + 1971 + Cover title + + A plan for community college computer development + 1971 + Cover title + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + 17200 + computer: field=title vecf[1] += mult(6) / length(7); idf[1] = log(((1 + total(10))/termoccur(9)); computer: relevance += 100000 * vecf[1](0.857143) * idf[1](0.200671) (17200); score = relevance(17200); - -content: title a plan for community college computer development author medium book + + content: title a plan for community college computer development author medium book - -Washington metropolitan area rail computer feasibility study; -final report -1971 -Englund, Carl R -"Contract DOT-UT-10003." -Washington metropolitan area rail computer feasibility study; -final report -1971 -Englund, Carl R -"Contract DOT-UT-10003." -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -17200 - + Washington metropolitan area rail computer feasibility study; + final report + 1971 + Englund, Carl R + "Contract DOT-UT-10003." + + Washington metropolitan area rail computer feasibility study; + final report + 1971 + Englund, Carl R + "Contract DOT-UT-10003." + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + 17200 + computer: field=title vecf[1] += mult(6) / length(7); idf[1] = log(((1 + total(10))/termoccur(9)); computer: relevance += 100000 * vecf[1](0.857143) * idf[1](0.200671) (17200); score = relevance(17200); - -content: title washington metropolitan area rail computer feasibility study author englund carl r medium book + + content: title washington metropolitan area rail computer feasibility study author englund carl r medium book - -The Puget Sound Region -a portfolio of thematic computer maps -1974 -Mairs, John W -Scale of maps ca. 1:1,000,000 -The Puget Sound Region -a portfolio of thematic computer maps -1974 -Mairs, John W -Scale of maps ca. 1:1,000,000 -Bibliography: p. 4 -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -16722 - + The Puget Sound Region + a portfolio of thematic computer maps + 1974 + Mairs, John W + Scale of maps ca. 1:1,000,000 + + The Puget Sound Region + a portfolio of thematic computer maps + 1974 + Mairs, John W + Scale of maps ca. 1:1,000,000 + Bibliography: p. 4 + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + 16722 + computer: field=title-remainder vecf[1] += mult(5) / length(6); idf[1] = log(((1 + total(10))/termoccur(9)); computer: relevance += 100000 * vecf[1](0.833333) * idf[1](0.200671) (16722); score = relevance(16722); - -content: title the puget sound region author mairs john w medium book + + content: title the puget sound region author mairs john w medium book - -Computer processing of dynamic images from an Anger scintillation camera -the proceedings of a workshop -1974 -Includes bibliographical references and index -Computer processing of dynamic images from an Anger scintillation camera -the proceedings of a workshop -1974 -Includes bibliographical references and index -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -12040 - + Computer processing of dynamic images from an Anger scintillation camera + the proceedings of a workshop + 1974 + Includes bibliographical references and index + + Computer processing of dynamic images from an Anger scintillation camera + the proceedings of a workshop + 1974 + Includes bibliographical references and index + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + 12040 + computer: field=title vecf[1] += mult(6) / length(10); idf[1] = log(((1 + total(10))/termoccur(9)); computer: relevance += 100000 * vecf[1](0.600000) * idf[1](0.200671) (12040); score = relevance(12040); - -content: title computer processing of dynamic images from an anger scintillation camera author medium book + + content: title computer processing of dynamic images from an anger scintillation camera author medium book - -Reconstruction tomography in diagnostic radiology and nuclear medicine -proceedings of the workshop -1977 -Includes bibliographical references and index -Reconstruction tomography in diagnostic radiology and nuclear medicine -proceedings of the workshop -1977 -Includes bibliographical references and index -XXXXXXXXXX -test-usersetting-2 data: - YYYYYYYYY -0 - + Reconstruction tomography in diagnostic radiology and nuclear medicine + proceedings of the workshop + 1977 + Includes bibliographical references and index + + Reconstruction tomography in diagnostic radiology and nuclear medicine + proceedings of the workshop + 1977 + Includes bibliographical references and index + XXXXXXXXXX + test-usersetting-2 data: + YYYYYYYYY + + 1 + 0 + idf[1] = log(((1 + total(10))/termoccur(9)); computer: relevance += 100000 * vecf[1](0.000000) * idf[1](0.200671) (0); score = relevance(0); - -content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book + + content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book \ No newline at end of file diff --git a/test/test_limit_limitmap_15.res b/test/test_limit_limitmap_15.res index c36ef7a..d048c37 100644 --- a/test/test_limit_limitmap_15.res +++ b/test/test_limit_limitmap_15.res @@ -6,25 +6,27 @@ 0 1 - -The religious teachers of Greece -1972 -Adam, James -Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures -The religious teachers of Greece -1972 -Adam, James -Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures -XXXXXXXXXX -291121 - + The religious teachers of Greece + 1972 + Adam, James + Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures + + The religious teachers of Greece + 1972 + Adam, James + Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures + XXXXXXXXXX + + 1 + 291121 + greece: field=title vecf[1] += mult(6) / length(5); greece: field=subject vecf[1] += mult(3) / length(1); idf[1] = log(((1 + total(1))/termoccur(1)); greece: relevance += 100000 * vecf[1](4.200000) * idf[1](0.693147) (291121); score = relevance(291121); - -content: title the religious teachers of greece author adam james + + content: title the religious teachers of greece author adam james \ No newline at end of file diff --git a/test/test_limit_limitmap_18.res b/test/test_limit_limitmap_18.res index c36ef7a..d048c37 100644 --- a/test/test_limit_limitmap_18.res +++ b/test/test_limit_limitmap_18.res @@ -6,25 +6,27 @@ 0 1 - -The religious teachers of Greece -1972 -Adam, James -Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures -The religious teachers of Greece -1972 -Adam, James -Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures -XXXXXXXXXX -291121 - + The religious teachers of Greece + 1972 + Adam, James + Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures + + The religious teachers of Greece + 1972 + Adam, James + Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures + XXXXXXXXXX + + 1 + 291121 + greece: field=title vecf[1] += mult(6) / length(5); greece: field=subject vecf[1] += mult(3) / length(1); idf[1] = log(((1 + total(1))/termoccur(1)); greece: relevance += 100000 * vecf[1](4.200000) * idf[1](0.693147) (291121); score = relevance(291121); - -content: title the religious teachers of greece author adam james + + content: title the religious teachers of greece author adam james \ No newline at end of file diff --git a/test/test_limit_limitmap_21.res b/test/test_limit_limitmap_21.res index c36ef7a..d048c37 100644 --- a/test/test_limit_limitmap_21.res +++ b/test/test_limit_limitmap_21.res @@ -6,25 +6,27 @@ 0 1 - -The religious teachers of Greece -1972 -Adam, James -Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures -The religious teachers of Greece -1972 -Adam, James -Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures -XXXXXXXXXX -291121 - + The religious teachers of Greece + 1972 + Adam, James + Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures + + The religious teachers of Greece + 1972 + Adam, James + Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures + XXXXXXXXXX + + 1 + 291121 + greece: field=title vecf[1] += mult(6) / length(5); greece: field=subject vecf[1] += mult(3) / length(1); idf[1] = log(((1 + total(1))/termoccur(1)); greece: relevance += 100000 * vecf[1](4.200000) * idf[1](0.693147) (291121); score = relevance(291121); - -content: title the religious teachers of greece author adam james + + content: title the religious teachers of greece author adam james \ No newline at end of file diff --git a/test/test_limit_limitmap_24.res b/test/test_limit_limitmap_24.res index 1ca64b1..23651d5 100644 --- a/test/test_limit_limitmap_24.res +++ b/test/test_limit_limitmap_24.res @@ -6,26 +6,28 @@ 0 1 - -Washington metropolitan area rail computer feasibility study; -final report -1971 -Englund, Carl R -"Contract DOT-UT-10003." -Washington metropolitan area rail computer feasibility study; -final report -1971 -Englund, Carl R -"Contract DOT-UT-10003." -XXXXXXXXXX -59412 - + Washington metropolitan area rail computer feasibility study; + final report + 1971 + Englund, Carl R + "Contract DOT-UT-10003." + + Washington metropolitan area rail computer feasibility study; + final report + 1971 + Englund, Carl R + "Contract DOT-UT-10003." + XXXXXXXXXX + + 1 + 59412 + computer: field=title vecf[1] += mult(6) / length(7); idf[1] = log(((1 + total(1))/termoccur(1)); computer: relevance += 100000 * vecf[1](0.857143) * idf[1](0.693147) (59412); score = relevance(59412); - -content: title washington metropolitan area rail computer feasibility study author englund carl r + + content: title washington metropolitan area rail computer feasibility study author englund carl r \ No newline at end of file diff --git a/test/test_limit_limitmap_26.res b/test/test_limit_limitmap_26.res index 70dbd80..4a3e3ce 100644 --- a/test/test_limit_limitmap_26.res +++ b/test/test_limit_limitmap_26.res @@ -6,79 +6,87 @@ 0 4 - -Computer science & technology -proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 -1977 -Computer science & technology -proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 -1977 -XXXXXXXXXX -102165 - + Computer science & technology + proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 + 1977 + + Computer science & technology + proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 + 1977 + XXXXXXXXXX + + 1 + 102165 + computer: field=title vecf[1] += mult(6) / length(3); idf[1] = log(((1 + total(4))/termoccur(3)); computer: relevance += 100000 * vecf[1](2.000000) * idf[1](0.510826) (102165); score = relevance(102165); - -content: title computer science technology + + content: title computer science technology - -The Computer Bible -1973-1980 -Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates -The Computer Bible -1973-1980 -Hebrew and Greek; introductions in English -Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates -XXXXXXXXXX -102165 - + The Computer Bible + 1973-1980 + Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates + + The Computer Bible + 1973-1980 + Hebrew and Greek; introductions in English + Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates + XXXXXXXXXX + + 1 + 102165 + computer: field=title vecf[1] += mult(6) / length(3); idf[1] = log(((1 + total(4))/termoccur(3)); computer: relevance += 100000 * vecf[1](2.000000) * idf[1](0.510826) (102165); score = relevance(102165); - -content: title the computer bible + + content: title the computer bible - -The use of passwords for controlled access to computer resources -1977 -Wood, Helen M -The use of passwords for controlled access to computer resources -1977 -Wood, Helen M -XXXXXXXXXX -30649 - + The use of passwords for controlled access to computer resources + 1977 + Wood, Helen M + + The use of passwords for controlled access to computer resources + 1977 + Wood, Helen M + XXXXXXXXXX + + 1 + 30649 + computer: field=title vecf[1] += mult(6) / length(10); idf[1] = log(((1 + total(4))/termoccur(3)); computer: relevance += 100000 * vecf[1](0.600000) * idf[1](0.510826) (30649); score = relevance(30649); - -content: title the use of passwords for controlled access to computer resources author wood helen m + + content: title the use of passwords for controlled access to computer resources author wood helen m - -Reconstruction tomography in diagnostic radiology and nuclear medicine -proceedings of the workshop -1977 -Reconstruction tomography in diagnostic radiology and nuclear medicine -proceedings of the workshop -1977 -XXXXXXXXXX -0 - + Reconstruction tomography in diagnostic radiology and nuclear medicine + proceedings of the workshop + 1977 + + Reconstruction tomography in diagnostic radiology and nuclear medicine + proceedings of the workshop + 1977 + XXXXXXXXXX + + 1 + 0 + idf[1] = log(((1 + total(4))/termoccur(3)); computer: relevance += 100000 * vecf[1](0.000000) * idf[1](0.510826) (0); score = relevance(0); - -content: title reconstruction tomography in diagnostic radiology and nuclear medicine + + content: title reconstruction tomography in diagnostic radiology and nuclear medicine \ No newline at end of file diff --git a/test/test_limit_limitmap_28.res b/test/test_limit_limitmap_28.res index 1a12e85..c85fa42 100644 --- a/test/test_limit_limitmap_28.res +++ b/test/test_limit_limitmap_28.res @@ -7,26 +7,28 @@ 0 1 - -Washington metropolitan area rail computer feasibility study; -final report -1971 -Englund, Carl R -"Contract DOT-UT-10003." -Washington metropolitan area rail computer feasibility study; -final report -1971 -Englund, Carl R -"Contract DOT-UT-10003." -XXXXXXXXXX -59412 - + Washington metropolitan area rail computer feasibility study; + final report + 1971 + Englund, Carl R + "Contract DOT-UT-10003." + + Washington metropolitan area rail computer feasibility study; + final report + 1971 + Englund, Carl R + "Contract DOT-UT-10003." + XXXXXXXXXX + + 1 + 59412 + computer: field=title vecf[1] += mult(6) / length(7); idf[1] = log(((1 + total(1))/termoccur(1)); computer: relevance += 100000 * vecf[1](0.857143) * idf[1](0.693147) (59412); score = relevance(59412); - -content: title washington metropolitan area rail computer feasibility study author englund carl r + + content: title washington metropolitan area rail computer feasibility study author englund carl r \ No newline at end of file diff --git a/test/test_limit_limitmap_30.res b/test/test_limit_limitmap_30.res index 4604b8b..1a093fc 100644 --- a/test/test_limit_limitmap_30.res +++ b/test/test_limit_limitmap_30.res @@ -7,79 +7,87 @@ 0 4 - -Computer science & technology -proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 -1977 -Computer science & technology -proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 -1977 -XXXXXXXXXX -102165 - + Computer science & technology + proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 + 1977 + + Computer science & technology + proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 + 1977 + XXXXXXXXXX + + 1 + 102165 + computer: field=title vecf[1] += mult(6) / length(3); idf[1] = log(((1 + total(4))/termoccur(3)); computer: relevance += 100000 * vecf[1](2.000000) * idf[1](0.510826) (102165); score = relevance(102165); - -content: title computer science technology + + content: title computer science technology - -The Computer Bible -1973-1980 -Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates -The Computer Bible -1973-1980 -Hebrew and Greek; introductions in English -Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates -XXXXXXXXXX -102165 - + The Computer Bible + 1973-1980 + Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates + + The Computer Bible + 1973-1980 + Hebrew and Greek; introductions in English + Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates + XXXXXXXXXX + + 1 + 102165 + computer: field=title vecf[1] += mult(6) / length(3); idf[1] = log(((1 + total(4))/termoccur(3)); computer: relevance += 100000 * vecf[1](2.000000) * idf[1](0.510826) (102165); score = relevance(102165); - -content: title the computer bible + + content: title the computer bible - -The use of passwords for controlled access to computer resources -1977 -Wood, Helen M -The use of passwords for controlled access to computer resources -1977 -Wood, Helen M -XXXXXXXXXX -30649 - + The use of passwords for controlled access to computer resources + 1977 + Wood, Helen M + + The use of passwords for controlled access to computer resources + 1977 + Wood, Helen M + XXXXXXXXXX + + 1 + 30649 + computer: field=title vecf[1] += mult(6) / length(10); idf[1] = log(((1 + total(4))/termoccur(3)); computer: relevance += 100000 * vecf[1](0.600000) * idf[1](0.510826) (30649); score = relevance(30649); - -content: title the use of passwords for controlled access to computer resources author wood helen m + + content: title the use of passwords for controlled access to computer resources author wood helen m - -Reconstruction tomography in diagnostic radiology and nuclear medicine -proceedings of the workshop -1977 -Reconstruction tomography in diagnostic radiology and nuclear medicine -proceedings of the workshop -1977 -XXXXXXXXXX -0 - + Reconstruction tomography in diagnostic radiology and nuclear medicine + proceedings of the workshop + 1977 + + Reconstruction tomography in diagnostic radiology and nuclear medicine + proceedings of the workshop + 1977 + XXXXXXXXXX + + 1 + 0 + idf[1] = log(((1 + total(4))/termoccur(3)); computer: relevance += 100000 * vecf[1](0.000000) * idf[1](0.510826) (0); score = relevance(0); - -content: title reconstruction tomography in diagnostic radiology and nuclear medicine + + content: title reconstruction tomography in diagnostic radiology and nuclear medicine \ No newline at end of file diff --git a/test/test_limit_limitmap_36.res b/test/test_limit_limitmap_36.res index 4604b8b..1a093fc 100644 --- a/test/test_limit_limitmap_36.res +++ b/test/test_limit_limitmap_36.res @@ -7,79 +7,87 @@ 0 4 - -Computer science & technology -proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 -1977 -Computer science & technology -proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 -1977 -XXXXXXXXXX -102165 - + Computer science & technology + proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 + 1977 + + Computer science & technology + proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 + 1977 + XXXXXXXXXX + + 1 + 102165 + computer: field=title vecf[1] += mult(6) / length(3); idf[1] = log(((1 + total(4))/termoccur(3)); computer: relevance += 100000 * vecf[1](2.000000) * idf[1](0.510826) (102165); score = relevance(102165); - -content: title computer science technology + + content: title computer science technology - -The Computer Bible -1973-1980 -Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates -The Computer Bible -1973-1980 -Hebrew and Greek; introductions in English -Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates -XXXXXXXXXX -102165 - + The Computer Bible + 1973-1980 + Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates + + The Computer Bible + 1973-1980 + Hebrew and Greek; introductions in English + Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates + XXXXXXXXXX + + 1 + 102165 + computer: field=title vecf[1] += mult(6) / length(3); idf[1] = log(((1 + total(4))/termoccur(3)); computer: relevance += 100000 * vecf[1](2.000000) * idf[1](0.510826) (102165); score = relevance(102165); - -content: title the computer bible + + content: title the computer bible - -The use of passwords for controlled access to computer resources -1977 -Wood, Helen M -The use of passwords for controlled access to computer resources -1977 -Wood, Helen M -XXXXXXXXXX -30649 - + The use of passwords for controlled access to computer resources + 1977 + Wood, Helen M + + The use of passwords for controlled access to computer resources + 1977 + Wood, Helen M + XXXXXXXXXX + + 1 + 30649 + computer: field=title vecf[1] += mult(6) / length(10); idf[1] = log(((1 + total(4))/termoccur(3)); computer: relevance += 100000 * vecf[1](0.600000) * idf[1](0.510826) (30649); score = relevance(30649); - -content: title the use of passwords for controlled access to computer resources author wood helen m + + content: title the use of passwords for controlled access to computer resources author wood helen m - -Reconstruction tomography in diagnostic radiology and nuclear medicine -proceedings of the workshop -1977 -Reconstruction tomography in diagnostic radiology and nuclear medicine -proceedings of the workshop -1977 -XXXXXXXXXX -0 - + Reconstruction tomography in diagnostic radiology and nuclear medicine + proceedings of the workshop + 1977 + + Reconstruction tomography in diagnostic radiology and nuclear medicine + proceedings of the workshop + 1977 + XXXXXXXXXX + + 1 + 0 + idf[1] = log(((1 + total(4))/termoccur(3)); computer: relevance += 100000 * vecf[1](0.000000) * idf[1](0.510826) (0); score = relevance(0); - -content: title reconstruction tomography in diagnostic radiology and nuclear medicine + + content: title reconstruction tomography in diagnostic radiology and nuclear medicine \ No newline at end of file diff --git a/test/test_limit_limitmap_4.res b/test/test_limit_limitmap_4.res index 1735d94..8ea99ae 100644 --- a/test/test_limit_limitmap_4.res +++ b/test/test_limit_limitmap_4.res @@ -6,187 +6,205 @@ 0 9 - -How to program a computer -Jack Collins -How to program a computer -Jack Collins -XXXXXXXXXX - -How to program a computer -Jack Collins -XXXXXXXXXX -2 -48160 - + How to program a computer + Jack Collins + + How to program a computer + Jack Collins + XXXXXXXXXX + + + How to program a computer + Jack Collins + XXXXXXXXXX + + 2 + 48160 + computer: field=title vecf[1] += mult(6) / length(5); computer: field=title vecf[1] += mult(6) / length(5); idf[1] = log(((1 + total(10))/termoccur(9)); computer: relevance += 100000 * vecf[1](2.400000) * idf[1](0.200671) (48160); score = relevance(48160); - -content: title how to program a computer author jack collins + + content: title how to program a computer author jack collins - -Computer science & technology -proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 -1977 -Computer science & technology -proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 -1977 -XXXXXXXXXX -40134 - + Computer science & technology + proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 + 1977 + + Computer science & technology + proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 + 1977 + XXXXXXXXXX + + 1 + 40134 + computer: field=title vecf[1] += mult(6) / length(3); idf[1] = log(((1 + total(10))/termoccur(9)); computer: relevance += 100000 * vecf[1](2.000000) * idf[1](0.200671) (40134); score = relevance(40134); - -content: title computer science technology + + content: title computer science technology - -The Computer Bible -1973-1980 -Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates -The Computer Bible -1973-1980 -Hebrew and Greek; introductions in English -Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates -XXXXXXXXXX -40134 - + The Computer Bible + 1973-1980 + Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates + + The Computer Bible + 1973-1980 + Hebrew and Greek; introductions in English + Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates + XXXXXXXXXX + + 1 + 40134 + computer: field=title vecf[1] += mult(6) / length(3); idf[1] = log(((1 + total(10))/termoccur(9)); computer: relevance += 100000 * vecf[1](2.000000) * idf[1](0.200671) (40134); score = relevance(40134); - -content: title the computer bible + + content: title the computer bible - -A plan for community college computer development -1971 -Cover title -A plan for community college computer development -1971 -Cover title -XXXXXXXXXX -17200 - + A plan for community college computer development + 1971 + Cover title + + A plan for community college computer development + 1971 + Cover title + XXXXXXXXXX + + 1 + 17200 + computer: field=title vecf[1] += mult(6) / length(7); idf[1] = log(((1 + total(10))/termoccur(9)); computer: relevance += 100000 * vecf[1](0.857143) * idf[1](0.200671) (17200); score = relevance(17200); - -content: title a plan for community college computer development + + content: title a plan for community college computer development - -Washington metropolitan area rail computer feasibility study; -final report -1971 -Englund, Carl R -"Contract DOT-UT-10003." -Washington metropolitan area rail computer feasibility study; -final report -1971 -Englund, Carl R -"Contract DOT-UT-10003." -XXXXXXXXXX -17200 - + Washington metropolitan area rail computer feasibility study; + final report + 1971 + Englund, Carl R + "Contract DOT-UT-10003." + + Washington metropolitan area rail computer feasibility study; + final report + 1971 + Englund, Carl R + "Contract DOT-UT-10003." + XXXXXXXXXX + + 1 + 17200 + computer: field=title vecf[1] += mult(6) / length(7); idf[1] = log(((1 + total(10))/termoccur(9)); computer: relevance += 100000 * vecf[1](0.857143) * idf[1](0.200671) (17200); score = relevance(17200); - -content: title washington metropolitan area rail computer feasibility study author englund carl r + + content: title washington metropolitan area rail computer feasibility study author englund carl r - -The Puget Sound Region -a portfolio of thematic computer maps -1974 -Mairs, John W -Scale of maps ca. 1:1,000,000 -The Puget Sound Region -a portfolio of thematic computer maps -1974 -Mairs, John W -Scale of maps ca. 1:1,000,000 -XXXXXXXXXX -16722 - + The Puget Sound Region + a portfolio of thematic computer maps + 1974 + Mairs, John W + Scale of maps ca. 1:1,000,000 + + The Puget Sound Region + a portfolio of thematic computer maps + 1974 + Mairs, John W + Scale of maps ca. 1:1,000,000 + XXXXXXXXXX + + 1 + 16722 + computer: field=title-remainder vecf[1] += mult(5) / length(6); idf[1] = log(((1 + total(10))/termoccur(9)); computer: relevance += 100000 * vecf[1](0.833333) * idf[1](0.200671) (16722); score = relevance(16722); - -content: title the puget sound region author mairs john w + + content: title the puget sound region author mairs john w - -Computer processing of dynamic images from an Anger scintillation camera -the proceedings of a workshop -1974 -Computer processing of dynamic images from an Anger scintillation camera -the proceedings of a workshop -1974 -XXXXXXXXXX -12040 - + Computer processing of dynamic images from an Anger scintillation camera + the proceedings of a workshop + 1974 + + Computer processing of dynamic images from an Anger scintillation camera + the proceedings of a workshop + 1974 + XXXXXXXXXX + + 1 + 12040 + computer: field=title vecf[1] += mult(6) / length(10); idf[1] = log(((1 + total(10))/termoccur(9)); computer: relevance += 100000 * vecf[1](0.600000) * idf[1](0.200671) (12040); score = relevance(12040); - -content: title computer processing of dynamic images from an anger scintillation camera + + content: title computer processing of dynamic images from an anger scintillation camera - -The use of passwords for controlled access to computer resources -1977 -Wood, Helen M -The use of passwords for controlled access to computer resources -1977 -Wood, Helen M -XXXXXXXXXX -12040 - + The use of passwords for controlled access to computer resources + 1977 + Wood, Helen M + + The use of passwords for controlled access to computer resources + 1977 + Wood, Helen M + XXXXXXXXXX + + 1 + 12040 + computer: field=title vecf[1] += mult(6) / length(10); idf[1] = log(((1 + total(10))/termoccur(9)); computer: relevance += 100000 * vecf[1](0.600000) * idf[1](0.200671) (12040); score = relevance(12040); - -content: title the use of passwords for controlled access to computer resources author wood helen m + + content: title the use of passwords for controlled access to computer resources author wood helen m - -Reconstruction tomography in diagnostic radiology and nuclear medicine -proceedings of the workshop -1977 -Reconstruction tomography in diagnostic radiology and nuclear medicine -proceedings of the workshop -1977 -XXXXXXXXXX -0 - + Reconstruction tomography in diagnostic radiology and nuclear medicine + proceedings of the workshop + 1977 + + Reconstruction tomography in diagnostic radiology and nuclear medicine + proceedings of the workshop + 1977 + XXXXXXXXXX + + 1 + 0 + idf[1] = log(((1 + total(10))/termoccur(9)); computer: relevance += 100000 * vecf[1](0.000000) * idf[1](0.200671) (0); score = relevance(0); - -content: title reconstruction tomography in diagnostic radiology and nuclear medicine + + content: title reconstruction tomography in diagnostic radiology and nuclear medicine \ No newline at end of file diff --git a/test/test_limit_limitmap_42.res b/test/test_limit_limitmap_42.res index 4604b8b..1a093fc 100644 --- a/test/test_limit_limitmap_42.res +++ b/test/test_limit_limitmap_42.res @@ -7,79 +7,87 @@ 0 4 - -Computer science & technology -proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 -1977 -Computer science & technology -proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 -1977 -XXXXXXXXXX -102165 - + Computer science & technology + proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 + 1977 + + Computer science & technology + proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 + 1977 + XXXXXXXXXX + + 1 + 102165 + computer: field=title vecf[1] += mult(6) / length(3); idf[1] = log(((1 + total(4))/termoccur(3)); computer: relevance += 100000 * vecf[1](2.000000) * idf[1](0.510826) (102165); score = relevance(102165); - -content: title computer science technology + + content: title computer science technology - -The Computer Bible -1973-1980 -Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates -The Computer Bible -1973-1980 -Hebrew and Greek; introductions in English -Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates -XXXXXXXXXX -102165 - + The Computer Bible + 1973-1980 + Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates + + The Computer Bible + 1973-1980 + Hebrew and Greek; introductions in English + Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates + XXXXXXXXXX + + 1 + 102165 + computer: field=title vecf[1] += mult(6) / length(3); idf[1] = log(((1 + total(4))/termoccur(3)); computer: relevance += 100000 * vecf[1](2.000000) * idf[1](0.510826) (102165); score = relevance(102165); - -content: title the computer bible + + content: title the computer bible - -The use of passwords for controlled access to computer resources -1977 -Wood, Helen M -The use of passwords for controlled access to computer resources -1977 -Wood, Helen M -XXXXXXXXXX -30649 - + The use of passwords for controlled access to computer resources + 1977 + Wood, Helen M + + The use of passwords for controlled access to computer resources + 1977 + Wood, Helen M + XXXXXXXXXX + + 1 + 30649 + computer: field=title vecf[1] += mult(6) / length(10); idf[1] = log(((1 + total(4))/termoccur(3)); computer: relevance += 100000 * vecf[1](0.600000) * idf[1](0.510826) (30649); score = relevance(30649); - -content: title the use of passwords for controlled access to computer resources author wood helen m + + content: title the use of passwords for controlled access to computer resources author wood helen m - -Reconstruction tomography in diagnostic radiology and nuclear medicine -proceedings of the workshop -1977 -Reconstruction tomography in diagnostic radiology and nuclear medicine -proceedings of the workshop -1977 -XXXXXXXXXX -0 - + Reconstruction tomography in diagnostic radiology and nuclear medicine + proceedings of the workshop + 1977 + + Reconstruction tomography in diagnostic radiology and nuclear medicine + proceedings of the workshop + 1977 + XXXXXXXXXX + + 1 + 0 + idf[1] = log(((1 + total(4))/termoccur(3)); computer: relevance += 100000 * vecf[1](0.000000) * idf[1](0.510826) (0); score = relevance(0); - -content: title reconstruction tomography in diagnostic radiology and nuclear medicine + + content: title reconstruction tomography in diagnostic radiology and nuclear medicine \ No newline at end of file diff --git a/test/test_limit_limitmap_9.res b/test/test_limit_limitmap_9.res index aae7890..daca1d6 100644 --- a/test/test_limit_limitmap_9.res +++ b/test/test_limit_limitmap_9.res @@ -6,36 +6,40 @@ 0 20 - -Adobe Illustrator for the Mac -fast & easy -2001 -Woodward, C. Michael -Adobe Illustrator for the Mac -fast & easy -2001 -Woodward, C. Michael -50734 - + Adobe Illustrator for the Mac + fast & easy + 2001 + Woodward, C. Michael + + Adobe Illustrator for the Mac + fast & easy + 2001 + Woodward, C. Michael + + 1 + 50734 + computer: field=subject vecf[1] += mult(3) / length(2); computer: field=subject vecf[1] += mult(3) / length(2); computer: field=subject vecf[1] += mult(3) / length(1); idf[1] = log(((1 + total(110))/termoccur(102)); computer: relevance += 100000 * vecf[1](6.000000) * idf[1](0.084557) (50734); score = relevance(50734); - -content: title adobe illustrator for the mac author woodward c michael + + content: title adobe illustrator for the mac author woodward c michael - -Advanced computer performance modeling and simulation -1998 -Advanced computer performance modeling and simulation -1998 -50734 - + Advanced computer performance modeling and simulation + 1998 + + Advanced computer performance modeling and simulation + 1998 + + 1 + 50734 + computer: field=subject vecf[1] += mult(3) / length(2); computer: field=subject vecf[1] += mult(3) / length(2); computer: field=subject vecf[1] += mult(3) / length(3); @@ -44,24 +48,26 @@ computer: field=title vecf[1] += mult(6) / length(6); idf[1] = log(((1 + total(110))/termoccur(102)); computer: relevance += 100000 * vecf[1](6.000000) * idf[1](0.084557) (50734); score = relevance(50734); - -content: title advanced computer performance modeling and simulation + + content: title advanced computer performance modeling and simulation - -Cyberterrorism and computer crimes -issues surrounding the establishment of an international regime -2000 -Aldrich, Richard W -"April 2000." -Cyberterrorism and computer crimes -issues surrounding the establishment of an international regime -2000 -Aldrich, Richard W -"April 2000." -50734 - + Cyberterrorism and computer crimes + issues surrounding the establishment of an international regime + 2000 + Aldrich, Richard W + "April 2000." + + Cyberterrorism and computer crimes + issues surrounding the establishment of an international regime + 2000 + Aldrich, Richard W + "April 2000." + + 1 + 50734 + computer: field=subject vecf[1] += mult(3) / length(2); computer: field=subject vecf[1] += mult(3) / length(2); computer: field=subject vecf[1] += mult(3) / length(2); @@ -69,22 +75,24 @@ computer: field=title vecf[1] += mult(6) / length(4); idf[1] = log(((1 + total(110))/termoccur(102)); computer: relevance += 100000 * vecf[1](6.000000) * idf[1](0.084557) (50734); score = relevance(50734); - -content: title cyberterrorism and computer crimes author aldrich richard w + + content: title cyberterrorism and computer crimes author aldrich richard w - -Software design and usability -talks with Bonnie Nardi, Jakob Nielsen, David Smith, Austin Henderson & Jed Harris, Terry Winograd, Stephanie Rosenbaum -2000 -Kaasgaard, Klaus -Software design and usability -talks with Bonnie Nardi, Jakob Nielsen, David Smith, Austin Henderson & Jed Harris, Terry Winograd, Stephanie Rosenbaum -2000 -Kaasgaard, Klaus -46506 - + Software design and usability + talks with Bonnie Nardi, Jakob Nielsen, David Smith, Austin Henderson & Jed Harris, Terry Winograd, Stephanie Rosenbaum + 2000 + Kaasgaard, Klaus + + Software design and usability + talks with Bonnie Nardi, Jakob Nielsen, David Smith, Austin Henderson & Jed Harris, Terry Winograd, Stephanie Rosenbaum + 2000 + Kaasgaard, Klaus + + 1 + 46506 + computer: field=subject vecf[1] += mult(3) / length(2); computer: field=subject vecf[1] += mult(3) / length(2); computer: field=subject vecf[1] += mult(3) / length(3); @@ -92,22 +100,24 @@ computer: field=subject vecf[1] += mult(3) / length(2); idf[1] = log(((1 + total(110))/termoccur(102)); computer: relevance += 100000 * vecf[1](5.500000) * idf[1](0.084557) (46506); score = relevance(46506); - -content: title software design and usability author kaasgaard klaus + + content: title software design and usability author kaasgaard klaus - -Everything you need to know about the dangers of computer hacking -2000 -Knittel, John -Explains what computer hacking is, who does it, and how dangerous it can be -Everything you need to know about the dangers of computer hacking -2000 -Knittel, John -Explains what computer hacking is, who does it, and how dangerous it can be -44474 - + Everything you need to know about the dangers of computer hacking + 2000 + Knittel, John + Explains what computer hacking is, who does it, and how dangerous it can be + + Everything you need to know about the dangers of computer hacking + 2000 + Knittel, John + Explains what computer hacking is, who does it, and how dangerous it can be + + 1 + 44474 + computer: field=description vecf[1] += mult(3) / length(14); computer: field=subject vecf[1] += mult(3) / length(2); computer: field=subject vecf[1] += mult(3) / length(2); @@ -116,41 +126,45 @@ computer: field=title vecf[1] += mult(6) / length(11); idf[1] = log(((1 + total(110))/termoccur(102)); computer: relevance += 100000 * vecf[1](5.259740) * idf[1](0.084557) (44474); score = relevance(44474); - -content: title everything you need to know about the dangers of computer hacking author knittel john + + content: title everything you need to know about the dangers of computer hacking author knittel john - -Computer peripherals -1995 -Cook, Barry M -Computer peripherals -1995 -Cook, Barry M -44392 - + Computer peripherals + 1995 + Cook, Barry M + + Computer peripherals + 1995 + Cook, Barry M + + 1 + 44392 + computer: field=subject vecf[1] += mult(3) / length(4); computer: field=subject vecf[1] += mult(3) / length(2); computer: field=title vecf[1] += mult(6) / length(2); idf[1] = log(((1 + total(110))/termoccur(102)); computer: relevance += 100000 * vecf[1](5.250000) * idf[1](0.084557) (44392); score = relevance(44392); - -content: title computer peripherals author cook barry m + + content: title computer peripherals author cook barry m - -Kids' computer book -1994 -Discusses a variety of educational and game software for children with suggestions for setting up a computer system. Includes a 3 1/2 in. disk with 6 shareware programs for children -Kids' computer book -1994 -"For kids and their parents"--Cover -Discusses a variety of educational and game software for children with suggestions for setting up a computer system. Includes a 3 1/2 in. disk with 6 shareware programs for children -38990 - + Kids' computer book + 1994 + Discusses a variety of educational and game software for children with suggestions for setting up a computer system. Includes a 3 1/2 in. disk with 6 shareware programs for children + + Kids' computer book + 1994 + "For kids and their parents"--Cover + Discusses a variety of educational and game software for children with suggestions for setting up a computer system. Includes a 3 1/2 in. disk with 6 shareware programs for children + + 1 + 38990 + computer: field=description vecf[1] += mult(3) / length(27); computer: field=subject vecf[1] += mult(3) / length(2); computer: field=subject vecf[1] += mult(3) / length(3); @@ -158,169 +172,185 @@ computer: field=title vecf[1] += mult(6) / length(3); idf[1] = log(((1 + total(110))/termoccur(102)); computer: relevance += 100000 * vecf[1](4.611111) * idf[1](0.084557) (38990); score = relevance(38990); - -content: title kids computer book + + content: title kids computer book - -Computer friendly -1999 -Steinbacher, Raymond -Computer friendly -1999 -Steinbacher, Raymond -38050 - + Computer friendly + 1999 + Steinbacher, Raymond + + Computer friendly + 1999 + Steinbacher, Raymond + + 1 + 38050 + computer: field=subject vecf[1] += mult(3) / length(2); computer: field=title vecf[1] += mult(6) / length(2); idf[1] = log(((1 + total(110))/termoccur(102)); computer: relevance += 100000 * vecf[1](4.500000) * idf[1](0.084557) (38050); score = relevance(38050); - -content: title computer friendly author steinbacher raymond + + content: title computer friendly author steinbacher raymond - -Computer misuse -1999 -"Also published as Parliamentary Paper E 31AO"--T.p. verso -Computer misuse -1999 -"May 1999." -"NZLC R54"--T.p. verso -"Also published as Parliamentary Paper E 31AO"--T.p. verso -38050 - + Computer misuse + 1999 + "Also published as Parliamentary Paper E 31AO"--T.p. verso + + Computer misuse + 1999 + "May 1999." + "NZLC R54"--T.p. verso + "Also published as Parliamentary Paper E 31AO"--T.p. verso + + 1 + 38050 + computer: field=subject vecf[1] += mult(3) / length(2); computer: field=title vecf[1] += mult(6) / length(2); idf[1] = log(((1 + total(110))/termoccur(102)); computer: relevance += 100000 * vecf[1](4.500000) * idf[1](0.084557) (38050); score = relevance(38050); - -content: title computer misuse + + content: title computer misuse - -Computer networking -a top-down approach featuring the Internet -2001 -Ross, Keith W -Computer networking -a top-down approach featuring the Internet -2001 -Ross, Keith W -38050 - + Computer networking + a top-down approach featuring the Internet + 2001 + Ross, Keith W + + Computer networking + a top-down approach featuring the Internet + 2001 + Ross, Keith W + + 1 + 38050 + computer: field=subject vecf[1] += mult(3) / length(2); computer: field=title vecf[1] += mult(6) / length(2); idf[1] = log(((1 + total(110))/termoccur(102)); computer: relevance += 100000 * vecf[1](4.500000) * idf[1](0.084557) (38050); score = relevance(38050); - -content: title computer networking author ross keith w + + content: title computer networking author ross keith w - -CorelDRAW 8 for Windows -1998 -Davis, Phyllis -Includes index -CorelDRAW 8 for Windows -1998 -Davis, Phyllis -Includes index -38050 - + CorelDRAW 8 for Windows + 1998 + Davis, Phyllis + Includes index + + CorelDRAW 8 for Windows + 1998 + Davis, Phyllis + Includes index + + 1 + 38050 + computer: field=subject vecf[1] += mult(3) / length(2); computer: field=subject vecf[1] += mult(3) / length(2); computer: field=subject vecf[1] += mult(3) / length(2); idf[1] = log(((1 + total(110))/termoccur(102)); computer: relevance += 100000 * vecf[1](4.500000) * idf[1](0.084557) (38050); score = relevance(38050); - -content: title coreldraw for windows author davis phyllis + + content: title coreldraw for windows author davis phyllis - -Quicken 2000 for the Mac -the official guide -2000 -Langer, Maria -"Covers Quicken deluxe 2000 for the Mac"--Cover -Quicken 2000 for the Mac -the official guide -2000 -Langer, Maria -Includes index -"Covers Quicken deluxe 2000 for the Mac"--Cover -38050 - + Quicken 2000 for the Mac + the official guide + 2000 + Langer, Maria + "Covers Quicken deluxe 2000 for the Mac"--Cover + + Quicken 2000 for the Mac + the official guide + 2000 + Langer, Maria + Includes index + "Covers Quicken deluxe 2000 for the Mac"--Cover + + 1 + 38050 + computer: field=subject vecf[1] += mult(3) / length(2); computer: field=subject vecf[1] += mult(3) / length(1); idf[1] = log(((1 + total(110))/termoccur(102)); computer: relevance += 100000 * vecf[1](4.500000) * idf[1](0.084557) (38050); score = relevance(38050); - -content: title quicken for the mac author langer maria + + content: title quicken for the mac author langer maria - -Sicherheit und Schutz im Netz -1998 -Sicherheit und Schutz im Netz -1998 -38050 - + Sicherheit und Schutz im Netz + 1998 + + Sicherheit und Schutz im Netz + 1998 + + 1 + 38050 + computer: field=subject vecf[1] += mult(3) / length(2); computer: field=subject vecf[1] += mult(3) / length(2); computer: field=subject vecf[1] += mult(3) / length(2); idf[1] = log(((1 + total(110))/termoccur(102)); computer: relevance += 100000 * vecf[1](4.500000) * idf[1](0.084557) (38050); score = relevance(38050); - -content: title sicherheit und schutz im netz + + content: title sicherheit und schutz im netz - -Unix Secure Shell -1999 -Carasik, Anne H -Includes index -Unix Secure Shell -1999 -Carasik, Anne H -Includes index -38050 - + Unix Secure Shell + 1999 + Carasik, Anne H + Includes index + + Unix Secure Shell + 1999 + Carasik, Anne H + Includes index + + 1 + 38050 + computer: field=subject vecf[1] += mult(3) / length(2); computer: field=subject vecf[1] += mult(3) / length(2); computer: field=subject vecf[1] += mult(3) / length(2); idf[1] = log(((1 + total(110))/termoccur(102)); computer: relevance += 100000 * vecf[1](4.500000) * idf[1](0.084557) (38050); score = relevance(38050); - -content: title unix secure shell author carasik anne h + + content: title unix secure shell author carasik anne h - -Eight International Conference on Computer Communications and Networks -proceedings, 11-13 October 1999, Boston, Massachusetts -1999 -"IEEE catalog number 99EX370"--T.p. verso -Eight International Conference on Computer Communications and Networks -proceedings, 11-13 October 1999, Boston, Massachusetts -1999 -"IEEE catalog number 99EX370"--T.p. verso -35936 - + Eight International Conference on Computer Communications and Networks + proceedings, 11-13 October 1999, Boston, Massachusetts + 1999 + "IEEE catalog number 99EX370"--T.p. verso + + Eight International Conference on Computer Communications and Networks + proceedings, 11-13 October 1999, Boston, Massachusetts + 1999 + "IEEE catalog number 99EX370"--T.p. verso + + 1 + 35936 + computer: field=subject vecf[1] += mult(3) / length(2); computer: field=subject vecf[1] += mult(3) / length(3); computer: field=subject vecf[1] += mult(3) / length(3); @@ -328,116 +358,126 @@ computer: field=title vecf[1] += mult(6) / length(8); idf[1] = log(((1 + total(110))/termoccur(102)); computer: relevance += 100000 * vecf[1](4.250000) * idf[1](0.084557) (35936); score = relevance(35936); - -content: title eight international conference on computer communications and networks + + content: title eight international conference on computer communications and networks - -Building storage networks -2000 -Farley, Marc -Includes index -Building storage networks -2000 -Farley, Marc -Includes index -33822 - + Building storage networks + 2000 + Farley, Marc + Includes index + + Building storage networks + 2000 + Farley, Marc + Includes index + + 1 + 33822 + computer: field=subject vecf[1] += mult(3) / length(2); computer: field=subject vecf[1] += mult(3) / length(2); computer: field=subject vecf[1] += mult(3) / length(3); idf[1] = log(((1 + total(110))/termoccur(102)); computer: relevance += 100000 * vecf[1](4.000000) * idf[1](0.084557) (33822); score = relevance(33822); - -content: title building storage networks author farley marc + + content: title building storage networks author farley marc - -Complete CL -the definitive control language programming guide -1999 -Malaga, Ernie -Includes index -Complete CL -the definitive control language programming guide -1999 -Malaga, Ernie -Includes index -33822 - + Complete CL + the definitive control language programming guide + 1999 + Malaga, Ernie + Includes index + + Complete CL + the definitive control language programming guide + 1999 + Malaga, Ernie + Includes index + + 1 + 33822 + computer: field=subject vecf[1] += mult(3) / length(1); computer: field=subject vecf[1] += mult(3) / length(3); idf[1] = log(((1 + total(110))/termoccur(102)); computer: relevance += 100000 * vecf[1](4.000000) * idf[1](0.084557) (33822); score = relevance(33822); - -content: title complete cl author malaga ernie + + content: title complete cl author malaga ernie - -3D games -real-time rendering and software technology -2001 -Watt, Alan H -3D games -real-time rendering and software technology -2001 -Watt, Alan H -33822 - + 3D games + real-time rendering and software technology + 2001 + Watt, Alan H + + 3D games + real-time rendering and software technology + 2001 + Watt, Alan H + + 1 + 33822 + computer: field=subject vecf[1] += mult(3) / length(2); computer: field=subject vecf[1] += mult(3) / length(2); computer: field=subject vecf[1] += mult(3) / length(3); idf[1] = log(((1 + total(110))/termoccur(102)); computer: relevance += 100000 * vecf[1](4.000000) * idf[1](0.084557) (33822); score = relevance(33822); - -content: title d games author watt alan h + + content: title d games author watt alan h - -Java applications strategies for the AS/400 -1999 -Denoncourt, Don -Java applications strategies for the AS/400 -1999 -Denoncourt, Don -33822 - + Java applications strategies for the AS/400 + 1999 + Denoncourt, Don + + Java applications strategies for the AS/400 + 1999 + Denoncourt, Don + + 1 + 33822 + computer: field=subject vecf[1] += mult(3) / length(3); computer: field=subject vecf[1] += mult(3) / length(1); idf[1] = log(((1 + total(110))/termoccur(102)); computer: relevance += 100000 * vecf[1](4.000000) * idf[1](0.084557) (33822); score = relevance(33822); - -content: title java applications strategies for the as author denoncourt don + + content: title java applications strategies for the as author denoncourt don - -Mastering algorithms with C -1999 -Loudon, Kyle -"Useful techniques from sorting to encryption"--Cover -Mastering algorithms with C -1999 -Loudon, Kyle -"Useful techniques from sorting to encryption"--Cover -Includes index -33822 - + Mastering algorithms with C + 1999 + Loudon, Kyle + "Useful techniques from sorting to encryption"--Cover + + Mastering algorithms with C + 1999 + Loudon, Kyle + "Useful techniques from sorting to encryption"--Cover + Includes index + + 1 + 33822 + computer: field=subject vecf[1] += mult(3) / length(3); computer: field=subject vecf[1] += mult(3) / length(2); computer: field=subject vecf[1] += mult(3) / length(2); idf[1] = log(((1 + total(110))/termoccur(102)); computer: relevance += 100000 * vecf[1](4.000000) * idf[1](0.084557) (33822); score = relevance(33822); - -content: title mastering algorithms with c author loudon kyle + + content: title mastering algorithms with c author loudon kyle \ No newline at end of file diff --git a/test/test_post_10.res b/test/test_post_10.res index 2def561..af6f2b4 100644 --- a/test/test_post_10.res +++ b/test/test_post_10.res @@ -6,168 +6,186 @@ 0 9 - -How to program a computer -Jack Collins -How to program a computer -Jack Collins - -How to program a computer -Jack Collins -2 -48160 - + How to program a computer + Jack Collins + + How to program a computer + Jack Collins + + + How to program a computer + Jack Collins + + 2 + 48160 + computer: field=title vecf[1] += mult(6) / length(5); computer: field=title vecf[1] += mult(6) / length(5); idf[1] = log(((1 + total(10))/termoccur(9)); computer: relevance += 100000 * vecf[1](2.400000) * idf[1](0.200671) (48160); score = relevance(48160); - -content: title how to program a computer author jack collins medium book + + content: title how to program a computer author jack collins medium book - -Computer science & technology -proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 -1977 -Computer science & technology -proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 -1977 -40134 - + Computer science & technology + proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 + 1977 + + Computer science & technology + proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 + 1977 + + 1 + 40134 + computer: field=title vecf[1] += mult(6) / length(3); idf[1] = log(((1 + total(10))/termoccur(9)); computer: relevance += 100000 * vecf[1](2.000000) * idf[1](0.200671) (40134); score = relevance(40134); - -content: title computer science technology author medium book + + content: title computer science technology author medium book - -The Computer Bible -1973-1980 -The Computer Bible -1973-1980 -40134 - + The Computer Bible + 1973-1980 + + The Computer Bible + 1973-1980 + + 1 + 40134 + computer: field=title vecf[1] += mult(6) / length(3); idf[1] = log(((1 + total(10))/termoccur(9)); computer: relevance += 100000 * vecf[1](2.000000) * idf[1](0.200671) (40134); score = relevance(40134); - -content: title the computer bible author medium book + + content: title the computer bible author medium book - -A plan for community college computer development -1971 -A plan for community college computer development -1971 -17200 - + A plan for community college computer development + 1971 + + A plan for community college computer development + 1971 + + 1 + 17200 + computer: field=title vecf[1] += mult(6) / length(7); idf[1] = log(((1 + total(10))/termoccur(9)); computer: relevance += 100000 * vecf[1](0.857143) * idf[1](0.200671) (17200); score = relevance(17200); - -content: title a plan for community college computer development author medium book + + content: title a plan for community college computer development author medium book - -Washington metropolitan area rail computer feasibility study; -final report -1971 -Englund, Carl R -Washington metropolitan area rail computer feasibility study; -final report -1971 -Englund, Carl R -17200 - + Washington metropolitan area rail computer feasibility study; + final report + 1971 + Englund, Carl R + + Washington metropolitan area rail computer feasibility study; + final report + 1971 + Englund, Carl R + + 1 + 17200 + computer: field=title vecf[1] += mult(6) / length(7); idf[1] = log(((1 + total(10))/termoccur(9)); computer: relevance += 100000 * vecf[1](0.857143) * idf[1](0.200671) (17200); score = relevance(17200); - -content: title washington metropolitan area rail computer feasibility study author englund carl r medium book + + content: title washington metropolitan area rail computer feasibility study author englund carl r medium book - -The Puget Sound Region -a portfolio of thematic computer maps -1974 -Mairs, John W -The Puget Sound Region -a portfolio of thematic computer maps -1974 -Mairs, John W -16722 - + The Puget Sound Region + a portfolio of thematic computer maps + 1974 + Mairs, John W + + The Puget Sound Region + a portfolio of thematic computer maps + 1974 + Mairs, John W + + 1 + 16722 + computer: field=title-remainder vecf[1] += mult(5) / length(6); idf[1] = log(((1 + total(10))/termoccur(9)); computer: relevance += 100000 * vecf[1](0.833333) * idf[1](0.200671) (16722); score = relevance(16722); - -content: title the puget sound region author mairs john w medium book + + content: title the puget sound region author mairs john w medium book - -Computer processing of dynamic images from an Anger scintillation camera -the proceedings of a workshop -1974 -Computer processing of dynamic images from an Anger scintillation camera -the proceedings of a workshop -1974 -12040 - + Computer processing of dynamic images from an Anger scintillation camera + the proceedings of a workshop + 1974 + + Computer processing of dynamic images from an Anger scintillation camera + the proceedings of a workshop + 1974 + + 1 + 12040 + computer: field=title vecf[1] += mult(6) / length(10); idf[1] = log(((1 + total(10))/termoccur(9)); computer: relevance += 100000 * vecf[1](0.600000) * idf[1](0.200671) (12040); score = relevance(12040); - -content: title computer processing of dynamic images from an anger scintillation camera author medium book + + content: title computer processing of dynamic images from an anger scintillation camera author medium book - -The use of passwords for controlled access to computer resources -1977 -Wood, Helen M -The use of passwords for controlled access to computer resources -1977 -Wood, Helen M -12040 - + The use of passwords for controlled access to computer resources + 1977 + Wood, Helen M + + The use of passwords for controlled access to computer resources + 1977 + Wood, Helen M + + 1 + 12040 + computer: field=title vecf[1] += mult(6) / length(10); idf[1] = log(((1 + total(10))/termoccur(9)); computer: relevance += 100000 * vecf[1](0.600000) * idf[1](0.200671) (12040); score = relevance(12040); - -content: title the use of passwords for controlled access to computer resources author wood helen m medium book + + content: title the use of passwords for controlled access to computer resources author wood helen m medium book - -Reconstruction tomography in diagnostic radiology and nuclear medicine -proceedings of the workshop -1977 -Reconstruction tomography in diagnostic radiology and nuclear medicine -proceedings of the workshop -1977 -0 - + Reconstruction tomography in diagnostic radiology and nuclear medicine + proceedings of the workshop + 1977 + + Reconstruction tomography in diagnostic radiology and nuclear medicine + proceedings of the workshop + 1977 + + 1 + 0 + idf[1] = log(((1 + total(10))/termoccur(9)); computer: relevance += 100000 * vecf[1](0.000000) * idf[1](0.200671) (0); score = relevance(0); - -content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book + + content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book \ No newline at end of file diff --git a/test/test_post_8.res b/test/test_post_8.res index 2def561..af6f2b4 100644 --- a/test/test_post_8.res +++ b/test/test_post_8.res @@ -6,168 +6,186 @@ 0 9 - -How to program a computer -Jack Collins -How to program a computer -Jack Collins - -How to program a computer -Jack Collins -2 -48160 - + How to program a computer + Jack Collins + + How to program a computer + Jack Collins + + + How to program a computer + Jack Collins + + 2 + 48160 + computer: field=title vecf[1] += mult(6) / length(5); computer: field=title vecf[1] += mult(6) / length(5); idf[1] = log(((1 + total(10))/termoccur(9)); computer: relevance += 100000 * vecf[1](2.400000) * idf[1](0.200671) (48160); score = relevance(48160); - -content: title how to program a computer author jack collins medium book + + content: title how to program a computer author jack collins medium book - -Computer science & technology -proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 -1977 -Computer science & technology -proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 -1977 -40134 - + Computer science & technology + proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 + 1977 + + Computer science & technology + proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 + 1977 + + 1 + 40134 + computer: field=title vecf[1] += mult(6) / length(3); idf[1] = log(((1 + total(10))/termoccur(9)); computer: relevance += 100000 * vecf[1](2.000000) * idf[1](0.200671) (40134); score = relevance(40134); - -content: title computer science technology author medium book + + content: title computer science technology author medium book - -The Computer Bible -1973-1980 -The Computer Bible -1973-1980 -40134 - + The Computer Bible + 1973-1980 + + The Computer Bible + 1973-1980 + + 1 + 40134 + computer: field=title vecf[1] += mult(6) / length(3); idf[1] = log(((1 + total(10))/termoccur(9)); computer: relevance += 100000 * vecf[1](2.000000) * idf[1](0.200671) (40134); score = relevance(40134); - -content: title the computer bible author medium book + + content: title the computer bible author medium book - -A plan for community college computer development -1971 -A plan for community college computer development -1971 -17200 - + A plan for community college computer development + 1971 + + A plan for community college computer development + 1971 + + 1 + 17200 + computer: field=title vecf[1] += mult(6) / length(7); idf[1] = log(((1 + total(10))/termoccur(9)); computer: relevance += 100000 * vecf[1](0.857143) * idf[1](0.200671) (17200); score = relevance(17200); - -content: title a plan for community college computer development author medium book + + content: title a plan for community college computer development author medium book - -Washington metropolitan area rail computer feasibility study; -final report -1971 -Englund, Carl R -Washington metropolitan area rail computer feasibility study; -final report -1971 -Englund, Carl R -17200 - + Washington metropolitan area rail computer feasibility study; + final report + 1971 + Englund, Carl R + + Washington metropolitan area rail computer feasibility study; + final report + 1971 + Englund, Carl R + + 1 + 17200 + computer: field=title vecf[1] += mult(6) / length(7); idf[1] = log(((1 + total(10))/termoccur(9)); computer: relevance += 100000 * vecf[1](0.857143) * idf[1](0.200671) (17200); score = relevance(17200); - -content: title washington metropolitan area rail computer feasibility study author englund carl r medium book + + content: title washington metropolitan area rail computer feasibility study author englund carl r medium book - -The Puget Sound Region -a portfolio of thematic computer maps -1974 -Mairs, John W -The Puget Sound Region -a portfolio of thematic computer maps -1974 -Mairs, John W -16722 - + The Puget Sound Region + a portfolio of thematic computer maps + 1974 + Mairs, John W + + The Puget Sound Region + a portfolio of thematic computer maps + 1974 + Mairs, John W + + 1 + 16722 + computer: field=title-remainder vecf[1] += mult(5) / length(6); idf[1] = log(((1 + total(10))/termoccur(9)); computer: relevance += 100000 * vecf[1](0.833333) * idf[1](0.200671) (16722); score = relevance(16722); - -content: title the puget sound region author mairs john w medium book + + content: title the puget sound region author mairs john w medium book - -Computer processing of dynamic images from an Anger scintillation camera -the proceedings of a workshop -1974 -Computer processing of dynamic images from an Anger scintillation camera -the proceedings of a workshop -1974 -12040 - + Computer processing of dynamic images from an Anger scintillation camera + the proceedings of a workshop + 1974 + + Computer processing of dynamic images from an Anger scintillation camera + the proceedings of a workshop + 1974 + + 1 + 12040 + computer: field=title vecf[1] += mult(6) / length(10); idf[1] = log(((1 + total(10))/termoccur(9)); computer: relevance += 100000 * vecf[1](0.600000) * idf[1](0.200671) (12040); score = relevance(12040); - -content: title computer processing of dynamic images from an anger scintillation camera author medium book + + content: title computer processing of dynamic images from an anger scintillation camera author medium book - -The use of passwords for controlled access to computer resources -1977 -Wood, Helen M -The use of passwords for controlled access to computer resources -1977 -Wood, Helen M -12040 - + The use of passwords for controlled access to computer resources + 1977 + Wood, Helen M + + The use of passwords for controlled access to computer resources + 1977 + Wood, Helen M + + 1 + 12040 + computer: field=title vecf[1] += mult(6) / length(10); idf[1] = log(((1 + total(10))/termoccur(9)); computer: relevance += 100000 * vecf[1](0.600000) * idf[1](0.200671) (12040); score = relevance(12040); - -content: title the use of passwords for controlled access to computer resources author wood helen m medium book + + content: title the use of passwords for controlled access to computer resources author wood helen m medium book - -Reconstruction tomography in diagnostic radiology and nuclear medicine -proceedings of the workshop -1977 -Reconstruction tomography in diagnostic radiology and nuclear medicine -proceedings of the workshop -1977 -0 - + Reconstruction tomography in diagnostic radiology and nuclear medicine + proceedings of the workshop + 1977 + + Reconstruction tomography in diagnostic radiology and nuclear medicine + proceedings of the workshop + 1977 + + 1 + 0 + idf[1] = log(((1 + total(10))/termoccur(9)); computer: relevance += 100000 * vecf[1](0.000000) * idf[1](0.200671) (0); score = relevance(0); - -content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book + + content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book \ No newline at end of file diff --git a/test/test_post_9.res b/test/test_post_9.res index a6cb644..5eeb215 100644 --- a/test/test_post_9.res +++ b/test/test_post_9.res @@ -6,42 +6,48 @@ 0 3 - -BIBLIOGRAPHY OF MAINE GEOLOGY -BIBLIOGRAPHY OF MAINE GEOLOGY -0 - + BIBLIOGRAPHY OF MAINE GEOLOGY + + BIBLIOGRAPHY OF MAINE GEOLOGY + + 1 + 0 + idf[1] = log(((1 + total(3))/termoccur(0)); computer: relevance += 100000 * vecf[1](0.000000) * idf[1](0.000000) (0); score = relevance(0); - -content: title bibliography of maine geology author medium book + + content: title bibliography of maine geology author medium book - -GROUNDWATER RESOURCE MAPS - COUNTY SERIES -GROUNDWATER RESOURCE MAPS - COUNTY SERIES -0 - + GROUNDWATER RESOURCE MAPS - COUNTY SERIES + + GROUNDWATER RESOURCE MAPS - COUNTY SERIES + + 1 + 0 + idf[1] = log(((1 + total(3))/termoccur(0)); computer: relevance += 100000 * vecf[1](0.000000) * idf[1](0.000000) (0); score = relevance(0); - -content: title groundwater resource maps county series author medium book + + content: title groundwater resource maps county series author medium book - -OIL/GAS DRILLING -OIL/GAS DRILLING -0 - + OIL/GAS DRILLING + + OIL/GAS DRILLING + + 1 + 0 + idf[1] = log(((1 + total(3))/termoccur(0)); computer: relevance += 100000 * vecf[1](0.000000) * idf[1](0.000000) (0); score = relevance(0); - -content: title oil gas drilling author medium book + + content: title oil gas drilling author medium book \ No newline at end of file diff --git a/test/test_solr_13.res b/test/test_solr_13.res index 44a0bc6..6749c16 100644 --- a/test/test_solr_13.res +++ b/test/test_solr_13.res @@ -6,18 +6,20 @@ 0 20 - -Water -1999 -De Villiers, Marq -book -Water -1999 -De Villiers, Marq -book -34675 - + Water + 1999 + De Villiers, Marq + book + + Water + 1999 + De Villiers, Marq + book + + 1 + 34675 + water: field=subject vecf[1] += mult(3) / length(2); water: field=subject vecf[1] += mult(3) / length(1); water: field=subject vecf[1] += mult(3) / length(3); @@ -25,29 +27,31 @@ water: field=title vecf[1] += mult(6) / length(1); idf[1] = log(((1 + total(100))/termoccur(98)); water: relevance += 100000 * vecf[1](11.500000) * idf[1](0.030153) (34675); score = relevance(34675); - -content: title water author de villiers marq medium book + + content: title water author de villiers marq medium book - -Potable water and methods of detecting impurities -1899-1906 -Baker, M. N -book -Potable water and methods of detecting impurities -1906 -Baker, M. N -book - -Potable water and methods of detecting impurities -1899 -Baker, M. N -book -2 -32306 - + Potable water and methods of detecting impurities + 1899-1906 + Baker, M. N + book + + Potable water and methods of detecting impurities + 1906 + Baker, M. N + book + + + Potable water and methods of detecting impurities + 1899 + Baker, M. N + book + + 2 + 32306 + water: field=subject vecf[1] += mult(3) / length(2); water: field=subject vecf[1] += mult(3) / length(1); water: field=title vecf[1] += mult(6) / length(7); @@ -57,24 +61,26 @@ water: field=title vecf[1] += mult(6) / length(7); idf[1] = log(((1 + total(100))/termoccur(98)); water: relevance += 100000 * vecf[1](10.714286) * idf[1](0.030153) (32306); score = relevance(32306); - -content: title potable water and methods of detecting impurities author baker m n medium book + + content: title potable water and methods of detecting impurities author baker m n medium book - -Water -2000 -Majeed, Abdul -"Balochistan conservation strategy background paper"--T.p -book -Water -2000 -Majeed, Abdul -"Balochistan conservation strategy background paper"--T.p -book -30153 - + Water + 2000 + Majeed, Abdul + "Balochistan conservation strategy background paper"--T.p + book + + Water + 2000 + Majeed, Abdul + "Balochistan conservation strategy background paper"--T.p + book + + 1 + 30153 + water: field=subject vecf[1] += mult(3) / length(2); water: field=subject vecf[1] += mult(3) / length(2); water: field=subject vecf[1] += mult(3) / length(3); @@ -82,49 +88,53 @@ water: field=title vecf[1] += mult(6) / length(1); idf[1] = log(((1 + total(100))/termoccur(98)); water: relevance += 100000 * vecf[1](10.000000) * idf[1](0.030153) (30153); score = relevance(30153); - -content: title water author majeed abdul medium book + + content: title water author majeed abdul medium book - -Water -2000 -Grant, Pamela -Examines major environmental issues surrounding water, giving examples of attempts to solve global problems and sources for more information -book -Water -2000 -Grant, Pamela -Includes index -Examines major environmental issues surrounding water, giving examples of attempts to solve global problems and sources for more information -book -27613 - + Water + 2000 + Grant, Pamela + Examines major environmental issues surrounding water, giving examples of attempts to solve global problems and sources for more information + book + + Water + 2000 + Grant, Pamela + Includes index + Examines major environmental issues surrounding water, giving examples of attempts to solve global problems and sources for more information + book + + 1 + 27613 + water: field=description vecf[1] += mult(3) / length(19); water: field=subject vecf[1] += mult(3) / length(1); water: field=title vecf[1] += mult(6) / length(1); idf[1] = log(((1 + total(100))/termoccur(98)); water: relevance += 100000 * vecf[1](9.157894) * idf[1](0.030153) (27613); score = relevance(27613); - -content: title water author grant pamela medium book + + content: title water author grant pamela medium book - -Water law -2000 -Fisher, D. E -Includes index -book -Water law -2000 -Fisher, D. E -Includes index -book -27137 - + Water law + 2000 + Fisher, D. E + Includes index + book + + Water law + 2000 + Fisher, D. E + Includes index + book + + 1 + 27137 + water: field=subject vecf[1] += mult(3) / length(1); water: field=subject vecf[1] += mult(3) / length(2); water: field=subject vecf[1] += mult(3) / length(2); @@ -132,25 +142,27 @@ water: field=title vecf[1] += mult(6) / length(2); idf[1] = log(((1 + total(100))/termoccur(98)); water: relevance += 100000 * vecf[1](9.000000) * idf[1](0.030153) (27137); score = relevance(27137); - -content: title water law author fisher d e medium book + + content: title water law author fisher d e medium book - -A Primer on fresh water -questions and answers -2000 -Issued also in French under title: Notions élémentaires sur l'eau douce : questions et réponses -book -A Primer on fresh water -questions and answers -2000 -Issued also in French under title: Notions élémentaires sur l'eau douce : questions et réponses -Includes index -book -26233 - + A Primer on fresh water + questions and answers + 2000 + Issued also in French under title: Notions élémentaires sur l'eau douce : questions et réponses + book + + A Primer on fresh water + questions and answers + 2000 + Issued also in French under title: Notions élémentaires sur l'eau douce : questions et réponses + Includes index + book + + 1 + 26233 + water: field=subject vecf[1] += mult(3) / length(1); water: field=subject vecf[1] += mult(3) / length(2); water: field=subject vecf[1] += mult(3) / length(2); @@ -159,53 +171,57 @@ water: field=title vecf[1] += mult(6) / length(5); idf[1] = log(((1 + total(100))/termoccur(98)); water: relevance += 100000 * vecf[1](8.700000) * idf[1](0.030153) (26233); score = relevance(26233); - -content: title a primer on fresh water medium book + + content: title a primer on fresh water medium book - -Water and water supplies -1901 -Thresh, John Clough -book -Water and water supplies -1901 -Thresh, John Clough -book -22614 - + Water and water supplies + 1901 + Thresh, John Clough + book + + Water and water supplies + 1901 + Thresh, John Clough + book + + 1 + 22614 + water: field=subject vecf[1] += mult(3) / length(1); water: field=subject vecf[1] += mult(3) / length(2); water: field=title vecf[1] += mult(12) / length(4); idf[1] = log(((1 + total(100))/termoccur(98)); water: relevance += 100000 * vecf[1](7.500000) * idf[1](0.030153) (22614); score = relevance(22614); - -content: title water and water supplies author thresh john clough medium book + + content: title water and water supplies author thresh john clough medium book - -Water quality assessment of the State Water Project, 1996-97 -1999-2000 -"September 1999." -book -Water quality assessment of the State Water Project, 1998-99 -2000 -Cover title -"July 2000." -book - -Water quality assessment of the State Water Project, 1996-97 -1999 -Cover title -"September 1999." -book -2 -22614 - + Water quality assessment of the State Water Project, 1996-97 + 1999-2000 + "September 1999." + book + + Water quality assessment of the State Water Project, 1998-99 + 2000 + Cover title + "July 2000." + book + + + Water quality assessment of the State Water Project, 1996-97 + 1999 + Cover title + "September 1999." + book + + 2 + 22614 + water: field=subject vecf[1] += mult(3) / length(4); water: field=subject vecf[1] += mult(3) / length(2); water: field=title vecf[1] += mult(12) / length(8); @@ -215,48 +231,52 @@ water: field=title vecf[1] += mult(12) / length(8); idf[1] = log(((1 + total(100))/termoccur(98)); water: relevance += 100000 * vecf[1](7.500000) * idf[1](0.030153) (22614); score = relevance(22614); - -content: title water quality assessment of the state water project medium book + + content: title water quality assessment of the state water project medium book - -Water-supply -(Considered principally from a sanitary standpoint.) -1896 -Mason, William Pitt -book -Water-supply -(Considered principally from a sanitary standpoint.) -1896 -Mason, William Pitt -book -22614 - + Water-supply + (Considered principally from a sanitary standpoint.) + 1896 + Mason, William Pitt + book + + Water-supply + (Considered principally from a sanitary standpoint.) + 1896 + Mason, William Pitt + book + + 1 + 22614 + water: field=subject vecf[1] += mult(3) / length(2); water: field=subject vecf[1] += mult(3) / length(1); water: field=title vecf[1] += mult(6) / length(2); idf[1] = log(((1 + total(100))/termoccur(98)); water: relevance += 100000 * vecf[1](7.500000) * idf[1](0.030153) (22614); score = relevance(22614); - -content: title water supply author mason william pitt medium book + + content: title water supply author mason william pitt medium book - -The law of waters and water rights -international, national, state, municipal, and individual, including irrigation, drainage, and municipal water supply -1904 -Farnham, Henry P -book -The law of waters and water rights -international, national, state, municipal, and individual, including irrigation, drainage, and municipal water supply -1904 -Farnham, Henry P -book -21836 - + The law of waters and water rights + international, national, state, municipal, and individual, including irrigation, drainage, and municipal water supply + 1904 + Farnham, Henry P + book + + The law of waters and water rights + international, national, state, municipal, and individual, including irrigation, drainage, and municipal water supply + 1904 + Farnham, Henry P + book + + 1 + 21836 + water: field=subject vecf[1] += mult(3) / length(2); water: field=subject vecf[1] += mult(3) / length(1); water: field=subject vecf[1] += mult(3) / length(2); @@ -265,33 +285,35 @@ water: field=title-remainder vecf[1] += mult(5) / length(13); idf[1] = log(((1 + total(100))/termoccur(98)); water: relevance += 100000 * vecf[1](7.241758) * idf[1](0.030153) (21836); score = relevance(21836); - -content: title the law of waters and water rights author farnham henry p medium book + + content: title the law of waters and water rights author farnham henry p medium book - -Water, in press, 1998 -an index of news items on water resources selected from leading news papers -1998-1999 -With reference to India -book -Water, in press, 1998 -an index to news items on water resources selected from leading news papers -1999 -Includes index -book - -Water in press, 1997 -an index of news items on water resources selected from leading news papers -1998 -Includes index -With reference to India -book -2 -20411 - + Water, in press, 1998 + an index of news items on water resources selected from leading news papers + 1998-1999 + With reference to India + book + + Water, in press, 1998 + an index to news items on water resources selected from leading news papers + 1999 + Includes index + book + + + Water in press, 1997 + an index of news items on water resources selected from leading news papers + 1998 + Includes index + With reference to India + book + + 2 + 20411 + water: field=subject vecf[1] += mult(3) / length(3); water: field=title vecf[1] += mult(6) / length(3); water: field=title-remainder vecf[1] += mult(5) / length(13); @@ -301,24 +323,26 @@ water: field=title-remainder vecf[1] += mult(5) / length(13); idf[1] = log(((1 + total(100))/termoccur(98)); water: relevance += 100000 * vecf[1](6.769231) * idf[1](0.030153) (20411); score = relevance(20411); - -content: title water in press medium book + + content: title water in press medium book - -Regulations on the disposal of arsenic residuals from drinking water treatment plants -2000 -"EPA Contract 68-C7-0011, work assignment 0-38." -book -Regulations on the disposal of arsenic residuals from drinking water treatment plants -2000 -"May 2000." -"EPA/600/R-00/025." -"EPA Contract 68-C7-0011, work assignment 0-38." -book -20353 - + Regulations on the disposal of arsenic residuals from drinking water treatment plants + 2000 + "EPA Contract 68-C7-0011, work assignment 0-38." + book + + Regulations on the disposal of arsenic residuals from drinking water treatment plants + 2000 + "May 2000." + "EPA/600/R-00/025." + "EPA Contract 68-C7-0011, work assignment 0-38." + book + + 1 + 20353 + water: field=subject vecf[1] += mult(3) / length(1); water: field=subject vecf[1] += mult(3) / length(4); water: field=subject vecf[1] += mult(3) / length(3); @@ -327,24 +351,26 @@ water: field=title vecf[1] += mult(6) / length(12); idf[1] = log(((1 + total(100))/termoccur(98)); water: relevance += 100000 * vecf[1](6.750000) * idf[1](0.030153) (20353); score = relevance(20353); - -content: title regulations on the disposal of arsenic residuals from drinking water treatment plants medium book + + content: title regulations on the disposal of arsenic residuals from drinking water treatment plants medium book - -A guide to Montana water quality regulation -1997 -Bryan, Michelle -"A joint publication of Legislative Environmental Policy Office, Environmental Quality Council [and] Montana University System, Water Center" -book -A guide to Montana water quality regulation -1997 -Bryan, Michelle -"A joint publication of Legislative Environmental Policy Office, Environmental Quality Council [and] Montana University System, Water Center" -book -19700 - + A guide to Montana water quality regulation + 1997 + Bryan, Michelle + "A joint publication of Legislative Environmental Policy Office, Environmental Quality Council [and] Montana University System, Water Center" + book + + A guide to Montana water quality regulation + 1997 + Bryan, Michelle + "A joint publication of Legislative Environmental Policy Office, Environmental Quality Council [and] Montana University System, Water Center" + book + + 1 + 19700 + water: field=description vecf[1] += mult(3) / length(17); water: field=subject vecf[1] += mult(3) / length(1); water: field=subject vecf[1] += mult(3) / length(3); @@ -353,22 +379,24 @@ water: field=title vecf[1] += mult(6) / length(7); idf[1] = log(((1 + total(100))/termoccur(98)); water: relevance += 100000 * vecf[1](6.533614) * idf[1](0.030153) (19700); score = relevance(19700); - -content: title a guide to montana water quality regulation author bryan michelle medium book + + content: title a guide to montana water quality regulation author bryan michelle medium book - -Water technology management -2001 -Collection of articles with reference to India -book -Water technology management -2001 -Collection of articles with reference to India -book -19599 - + Water technology management + 2001 + Collection of articles with reference to India + book + + Water technology management + 2001 + Collection of articles with reference to India + book + + 1 + 19599 + water: field=subject vecf[1] += mult(3) / length(2); water: field=subject vecf[1] += mult(3) / length(2); water: field=subject vecf[1] += mult(3) / length(2); @@ -376,24 +404,26 @@ water: field=title vecf[1] += mult(6) / length(3); idf[1] = log(((1 + total(100))/termoccur(98)); water: relevance += 100000 * vecf[1](6.500000) * idf[1](0.030153) (19599); score = relevance(19599); - -content: title water technology management medium book + + content: title water technology management medium book - -Aquatic habitat indicators and their application to water quality objectives within the Clean Water Act -1999 -Bauer, Steve -"This document was developed for US Environmental Protection Agency, Region 10, Seattle Washington, with the Idaho Water Resources Institute, University of Idaho." -book -Aquatic habitat indicators and their application to water quality objectives within the Clean Water Act -1999 -Bauer, Steve -"This document was developed for US Environmental Protection Agency, Region 10, Seattle Washington, with the Idaho Water Resources Institute, University of Idaho." -book -19427 - + Aquatic habitat indicators and their application to water quality objectives within the Clean Water Act + 1999 + Bauer, Steve + "This document was developed for US Environmental Protection Agency, Region 10, Seattle Washington, with the Idaho Water Resources Institute, University of Idaho." + book + + Aquatic habitat indicators and their application to water quality objectives within the Clean Water Act + 1999 + Bauer, Steve + "This document was developed for US Environmental Protection Agency, Region 10, Seattle Washington, with the Idaho Water Resources Institute, University of Idaho." + book + + 1 + 19427 + water: field=description vecf[1] += mult(3) / length(21); water: field=subject vecf[1] += mult(3) / length(3); water: field=subject vecf[1] += mult(3) / length(2); @@ -402,24 +432,26 @@ water: field=title vecf[1] += mult(12) / length(15); idf[1] = log(((1 + total(100))/termoccur(98)); water: relevance += 100000 * vecf[1](6.442857) * idf[1](0.030153) (19427); score = relevance(19427); - -content: title aquatic habitat indicators and their application to water quality objectives within the clean water act author bauer steve medium book + + content: title aquatic habitat indicators and their application to water quality objectives within the clean water act author bauer steve medium book - -An empirical analysis of water temperature and dissolved oxygen conditions in the Red Deer River -1997 -Saffran, Karen Anita -"March 1997." -book -An empirical analysis of water temperature and dissolved oxygen conditions in the Red Deer River -1997 -Saffran, Karen Anita -"March 1997." -book -19297 - + An empirical analysis of water temperature and dissolved oxygen conditions in the Red Deer River + 1997 + Saffran, Karen Anita + "March 1997." + book + + An empirical analysis of water temperature and dissolved oxygen conditions in the Red Deer River + 1997 + Saffran, Karen Anita + "March 1997." + book + + 1 + 19297 + water: field=subject vecf[1] += mult(3) / length(2); water: field=subject vecf[1] += mult(3) / length(1); water: field=subject vecf[1] += mult(3) / length(2); @@ -427,23 +459,25 @@ water: field=title vecf[1] += mult(6) / length(15); idf[1] = log(((1 + total(100))/termoccur(98)); water: relevance += 100000 * vecf[1](6.400000) * idf[1](0.030153) (19297); score = relevance(19297); - -content: title an empirical analysis of water temperature and dissolved oxygen conditions in the red deer river author saffran karen anita medium book + + content: title an empirical analysis of water temperature and dissolved oxygen conditions in the red deer river author saffran karen anita medium book - -Surface water quality monitoring procedures manual -1999 -"GI-252"--Cover -book -Surface water quality monitoring procedures manual -1999 -"June 1999." -"GI-252"--Cover -book -18845 - + Surface water quality monitoring procedures manual + 1999 + "GI-252"--Cover + book + + Surface water quality monitoring procedures manual + 1999 + "June 1999." + "GI-252"--Cover + book + + 1 + 18845 + water: field=subject vecf[1] += mult(3) / length(2); water: field=subject vecf[1] += mult(3) / length(1); water: field=subject vecf[1] += mult(3) / length(4); @@ -451,22 +485,24 @@ water: field=title vecf[1] += mult(6) / length(6); idf[1] = log(((1 + total(100))/termoccur(98)); water: relevance += 100000 * vecf[1](6.250000) * idf[1](0.030153) (18845); score = relevance(18845); - -content: title surface water quality monitoring procedures manual medium book + + content: title surface water quality monitoring procedures manual medium book - -International Conference on Management of Drinking Water Resources, Chennai, December 3-5, 1997 -proceedings -1997 -book -International Conference on Management of Drinking Water Resources, Chennai, December 3-5, 1997 -proceedings -1997 -book -18393 - + International Conference on Management of Drinking Water Resources, Chennai, December 3-5, 1997 + proceedings + 1997 + book + + International Conference on Management of Drinking Water Resources, Chennai, December 3-5, 1997 + proceedings + 1997 + book + + 1 + 18393 + water: field=subject vecf[1] += mult(3) / length(2); water: field=subject vecf[1] += mult(3) / length(3); water: field=subject vecf[1] += mult(3) / length(2); @@ -475,46 +511,50 @@ water: field=title vecf[1] += mult(6) / length(10); idf[1] = log(((1 + total(100))/termoccur(98)); water: relevance += 100000 * vecf[1](6.100000) * idf[1](0.030153) (18393); score = relevance(18393); - -content: title international conference on management of drinking water resources chennai december medium book + + content: title international conference on management of drinking water resources chennai december medium book - -Mercados e instituciones de aguas en Bolivia -1998 -book -Mercados e instituciones de aguas en Bolivia -1998 -book -18091 - + Mercados e instituciones de aguas en Bolivia + 1998 + book + + Mercados e instituciones de aguas en Bolivia + 1998 + book + + 1 + 18091 + water: field=subject vecf[1] += mult(3) / length(2); water: field=subject vecf[1] += mult(3) / length(2); water: field=subject vecf[1] += mult(3) / length(1); idf[1] = log(((1 + total(100))/termoccur(98)); water: relevance += 100000 * vecf[1](6.000000) * idf[1](0.030153) (18091); score = relevance(18091); - -content: title mercados e instituciones de aguas en bolivia medium book + + content: title mercados e instituciones de aguas en bolivia medium book - -Water law -2000 -book -Water law -2000 -book -18091 - + Water law + 2000 + book + + Water law + 2000 + book + + 1 + 18091 + water: field=subject vecf[1] += mult(3) / length(1); water: field=title vecf[1] += mult(6) / length(2); idf[1] = log(((1 + total(100))/termoccur(98)); water: relevance += 100000 * vecf[1](6.000000) * idf[1](0.030153) (18091); score = relevance(18091); - -content: title water law medium book + + content: title water law medium book \ No newline at end of file diff --git a/test/test_solr_18.res b/test/test_solr_18.res index bff62f2..2c6aec3 100644 --- a/test/test_solr_18.res +++ b/test/test_solr_18.res @@ -6,18 +6,20 @@ 0 20 - -Water -1999 -De Villiers, Marq -book -Water -1999 -De Villiers, Marq -book -34851 - + Water + 1999 + De Villiers, Marq + book + + Water + 1999 + De Villiers, Marq + book + + 1 + 34851 + water: field=subject vecf[1] += mult(3) / length(2); water: field=subject vecf[1] += mult(3) / length(1); water: field=subject vecf[1] += mult(3) / length(3); @@ -25,29 +27,31 @@ water: field=title vecf[1] += mult(6) / length(1); idf[1] = log(((1 + total(200))/termoccur(195)); water: relevance += 100000 * vecf[1](11.500000) * idf[1](0.030305) (34851); score = relevance(34851); - -content: title water author de villiers marq medium book + + content: title water author de villiers marq medium book - -Potable water and methods of detecting impurities -1899-1906 -Baker, M. N -book -Potable water and methods of detecting impurities -1906 -Baker, M. N -book - -Potable water and methods of detecting impurities -1899 -Baker, M. N -book -2 -32470 - + Potable water and methods of detecting impurities + 1899-1906 + Baker, M. N + book + + Potable water and methods of detecting impurities + 1906 + Baker, M. N + book + + + Potable water and methods of detecting impurities + 1899 + Baker, M. N + book + + 2 + 32470 + water: field=subject vecf[1] += mult(3) / length(2); water: field=subject vecf[1] += mult(3) / length(1); water: field=title vecf[1] += mult(6) / length(7); @@ -57,24 +61,26 @@ water: field=title vecf[1] += mult(6) / length(7); idf[1] = log(((1 + total(200))/termoccur(195)); water: relevance += 100000 * vecf[1](10.714286) * idf[1](0.030305) (32470); score = relevance(32470); - -content: title potable water and methods of detecting impurities author baker m n medium book + + content: title potable water and methods of detecting impurities author baker m n medium book - -Water -2000 -Majeed, Abdul -"Balochistan conservation strategy background paper"--T.p -book -Water -2000 -Majeed, Abdul -"Balochistan conservation strategy background paper"--T.p -book -30305 - + Water + 2000 + Majeed, Abdul + "Balochistan conservation strategy background paper"--T.p + book + + Water + 2000 + Majeed, Abdul + "Balochistan conservation strategy background paper"--T.p + book + + 1 + 30305 + water: field=subject vecf[1] += mult(3) / length(2); water: field=subject vecf[1] += mult(3) / length(2); water: field=subject vecf[1] += mult(3) / length(3); @@ -82,49 +88,53 @@ water: field=title vecf[1] += mult(6) / length(1); idf[1] = log(((1 + total(200))/termoccur(195)); water: relevance += 100000 * vecf[1](10.000000) * idf[1](0.030305) (30305); score = relevance(30305); - -content: title water author majeed abdul medium book + + content: title water author majeed abdul medium book - -Water -2000 -Grant, Pamela -Examines major environmental issues surrounding water, giving examples of attempts to solve global problems and sources for more information -book -Water -2000 -Grant, Pamela -Includes index -Examines major environmental issues surrounding water, giving examples of attempts to solve global problems and sources for more information -book -27753 - + Water + 2000 + Grant, Pamela + Examines major environmental issues surrounding water, giving examples of attempts to solve global problems and sources for more information + book + + Water + 2000 + Grant, Pamela + Includes index + Examines major environmental issues surrounding water, giving examples of attempts to solve global problems and sources for more information + book + + 1 + 27753 + water: field=description vecf[1] += mult(3) / length(19); water: field=subject vecf[1] += mult(3) / length(1); water: field=title vecf[1] += mult(6) / length(1); idf[1] = log(((1 + total(200))/termoccur(195)); water: relevance += 100000 * vecf[1](9.157894) * idf[1](0.030305) (27753); score = relevance(27753); - -content: title water author grant pamela medium book + + content: title water author grant pamela medium book - -Water law -2000 -Fisher, D. E -Includes index -book -Water law -2000 -Fisher, D. E -Includes index -book -27274 - + Water law + 2000 + Fisher, D. E + Includes index + book + + Water law + 2000 + Fisher, D. E + Includes index + book + + 1 + 27274 + water: field=subject vecf[1] += mult(3) / length(1); water: field=subject vecf[1] += mult(3) / length(2); water: field=subject vecf[1] += mult(3) / length(2); @@ -132,25 +142,27 @@ water: field=title vecf[1] += mult(6) / length(2); idf[1] = log(((1 + total(200))/termoccur(195)); water: relevance += 100000 * vecf[1](9.000000) * idf[1](0.030305) (27274); score = relevance(27274); - -content: title water law author fisher d e medium book + + content: title water law author fisher d e medium book - -A Primer on fresh water -questions and answers -2000 -Issued also in French under title: Notions élémentaires sur l'eau douce : questions et réponses -book -A Primer on fresh water -questions and answers -2000 -Issued also in French under title: Notions élémentaires sur l'eau douce : questions et réponses -Includes index -book -26365 - + A Primer on fresh water + questions and answers + 2000 + Issued also in French under title: Notions élémentaires sur l'eau douce : questions et réponses + book + + A Primer on fresh water + questions and answers + 2000 + Issued also in French under title: Notions élémentaires sur l'eau douce : questions et réponses + Includes index + book + + 1 + 26365 + water: field=subject vecf[1] += mult(3) / length(1); water: field=subject vecf[1] += mult(3) / length(2); water: field=subject vecf[1] += mult(3) / length(2); @@ -159,53 +171,57 @@ water: field=title vecf[1] += mult(6) / length(5); idf[1] = log(((1 + total(200))/termoccur(195)); water: relevance += 100000 * vecf[1](8.700000) * idf[1](0.030305) (26365); score = relevance(26365); - -content: title a primer on fresh water medium book + + content: title a primer on fresh water medium book - -Water and water supplies -1901 -Thresh, John Clough -book -Water and water supplies -1901 -Thresh, John Clough -book -22729 - + Water and water supplies + 1901 + Thresh, John Clough + book + + Water and water supplies + 1901 + Thresh, John Clough + book + + 1 + 22729 + water: field=subject vecf[1] += mult(3) / length(1); water: field=subject vecf[1] += mult(3) / length(2); water: field=title vecf[1] += mult(12) / length(4); idf[1] = log(((1 + total(200))/termoccur(195)); water: relevance += 100000 * vecf[1](7.500000) * idf[1](0.030305) (22729); score = relevance(22729); - -content: title water and water supplies author thresh john clough medium book + + content: title water and water supplies author thresh john clough medium book - -Water quality assessment of the State Water Project, 1996-97 -1999-2000 -"September 1999." -book -Water quality assessment of the State Water Project, 1998-99 -2000 -Cover title -"July 2000." -book - -Water quality assessment of the State Water Project, 1996-97 -1999 -Cover title -"September 1999." -book -2 -22729 - + Water quality assessment of the State Water Project, 1996-97 + 1999-2000 + "September 1999." + book + + Water quality assessment of the State Water Project, 1998-99 + 2000 + Cover title + "July 2000." + book + + + Water quality assessment of the State Water Project, 1996-97 + 1999 + Cover title + "September 1999." + book + + 2 + 22729 + water: field=subject vecf[1] += mult(3) / length(4); water: field=subject vecf[1] += mult(3) / length(2); water: field=title vecf[1] += mult(12) / length(8); @@ -215,48 +231,52 @@ water: field=title vecf[1] += mult(12) / length(8); idf[1] = log(((1 + total(200))/termoccur(195)); water: relevance += 100000 * vecf[1](7.500000) * idf[1](0.030305) (22729); score = relevance(22729); - -content: title water quality assessment of the state water project medium book + + content: title water quality assessment of the state water project medium book - -Water-supply -(Considered principally from a sanitary standpoint.) -1896 -Mason, William Pitt -book -Water-supply -(Considered principally from a sanitary standpoint.) -1896 -Mason, William Pitt -book -22729 - + Water-supply + (Considered principally from a sanitary standpoint.) + 1896 + Mason, William Pitt + book + + Water-supply + (Considered principally from a sanitary standpoint.) + 1896 + Mason, William Pitt + book + + 1 + 22729 + water: field=subject vecf[1] += mult(3) / length(2); water: field=subject vecf[1] += mult(3) / length(1); water: field=title vecf[1] += mult(6) / length(2); idf[1] = log(((1 + total(200))/termoccur(195)); water: relevance += 100000 * vecf[1](7.500000) * idf[1](0.030305) (22729); score = relevance(22729); - -content: title water supply author mason william pitt medium book + + content: title water supply author mason william pitt medium book - -The law of waters and water rights -international, national, state, municipal, and individual, including irrigation, drainage, and municipal water supply -1904 -Farnham, Henry P -book -The law of waters and water rights -international, national, state, municipal, and individual, including irrigation, drainage, and municipal water supply -1904 -Farnham, Henry P -book -21946 - + The law of waters and water rights + international, national, state, municipal, and individual, including irrigation, drainage, and municipal water supply + 1904 + Farnham, Henry P + book + + The law of waters and water rights + international, national, state, municipal, and individual, including irrigation, drainage, and municipal water supply + 1904 + Farnham, Henry P + book + + 1 + 21946 + water: field=subject vecf[1] += mult(3) / length(2); water: field=subject vecf[1] += mult(3) / length(1); water: field=subject vecf[1] += mult(3) / length(2); @@ -265,33 +285,35 @@ water: field=title-remainder vecf[1] += mult(5) / length(13); idf[1] = log(((1 + total(200))/termoccur(195)); water: relevance += 100000 * vecf[1](7.241758) * idf[1](0.030305) (21946); score = relevance(21946); - -content: title the law of waters and water rights author farnham henry p medium book + + content: title the law of waters and water rights author farnham henry p medium book - -Water, in press, 1998 -an index of news items on water resources selected from leading news papers -1998-1999 -With reference to India -book -Water, in press, 1998 -an index to news items on water resources selected from leading news papers -1999 -Includes index -book - -Water in press, 1997 -an index of news items on water resources selected from leading news papers -1998 -Includes index -With reference to India -book -2 -20514 - + Water, in press, 1998 + an index of news items on water resources selected from leading news papers + 1998-1999 + With reference to India + book + + Water, in press, 1998 + an index to news items on water resources selected from leading news papers + 1999 + Includes index + book + + + Water in press, 1997 + an index of news items on water resources selected from leading news papers + 1998 + Includes index + With reference to India + book + + 2 + 20514 + water: field=subject vecf[1] += mult(3) / length(3); water: field=title vecf[1] += mult(6) / length(3); water: field=title-remainder vecf[1] += mult(5) / length(13); @@ -301,34 +323,36 @@ water: field=title-remainder vecf[1] += mult(5) / length(13); idf[1] = log(((1 + total(200))/termoccur(195)); water: relevance += 100000 * vecf[1](6.769231) * idf[1](0.030305) (20514); score = relevance(20514); - -content: title water in press medium book + + content: title water in press medium book - -Water-power -an outline of the development and application of the energy of flowing water -1900-1901 -Frizell, Joseph P -Original imprint 1901, corrected to 1900 -book -Water-power -an outline of the development and application of the energy of flowing water -1901 -Frizell, Joseph P -book - -Water-power -an outline of the development and application of the energy of flowing water -1900 -Frizell, Joseph P -Original imprint 1901, corrected to 1900 -book -2 -20514 - + Water-power + an outline of the development and application of the energy of flowing water + 1900-1901 + Frizell, Joseph P + Original imprint 1901, corrected to 1900 + book + + Water-power + an outline of the development and application of the energy of flowing water + 1901 + Frizell, Joseph P + book + + + Water-power + an outline of the development and application of the energy of flowing water + 1900 + Frizell, Joseph P + Original imprint 1901, corrected to 1900 + book + + 2 + 20514 + water: field=title vecf[1] += mult(6) / length(2); water: field=title-remainder vecf[1] += mult(5) / length(13); water: field=title vecf[1] += mult(6) / length(2); @@ -336,32 +360,34 @@ water: field=title-remainder vecf[1] += mult(5) / length(13); idf[1] = log(((1 + total(200))/termoccur(195)); water: relevance += 100000 * vecf[1](6.769231) * idf[1](0.030305) (20514); score = relevance(20514); - -content: title water power author frizell joseph p medium book + + content: title water power author frizell joseph p medium book - -Water-supply engineering -The designing, construction, and maintenance of water-supply systems, both city and irrigation -1903-1909 -Folwell, Amory Prescott -book -Water-supply engineering -The designing, construction, and maintenance of water-supply systems, both city and irrigation -1909 -Folwell, Amory Prescott -book - -Water-supply engineering -The designing, construction, and maintenance of water-supply systems, both city and irrigation -1903 -Folwell, Amory Prescott -book -2 -20514 - + Water-supply engineering + The designing, construction, and maintenance of water-supply systems, both city and irrigation + 1903-1909 + Folwell, Amory Prescott + book + + Water-supply engineering + The designing, construction, and maintenance of water-supply systems, both city and irrigation + 1909 + Folwell, Amory Prescott + book + + + Water-supply engineering + The designing, construction, and maintenance of water-supply systems, both city and irrigation + 1903 + Folwell, Amory Prescott + book + + 2 + 20514 + water: field=subject vecf[1] += mult(3) / length(3); water: field=title vecf[1] += mult(6) / length(3); water: field=title-remainder vecf[1] += mult(5) / length(13); @@ -371,24 +397,26 @@ water: field=title-remainder vecf[1] += mult(5) / length(13); idf[1] = log(((1 + total(200))/termoccur(195)); water: relevance += 100000 * vecf[1](6.769231) * idf[1](0.030305) (20514); score = relevance(20514); - -content: title water supply engineering author folwell amory prescott medium book + + content: title water supply engineering author folwell amory prescott medium book - -Regulations on the disposal of arsenic residuals from drinking water treatment plants -2000 -"EPA Contract 68-C7-0011, work assignment 0-38." -book -Regulations on the disposal of arsenic residuals from drinking water treatment plants -2000 -"May 2000." -"EPA/600/R-00/025." -"EPA Contract 68-C7-0011, work assignment 0-38." -book -20456 - + Regulations on the disposal of arsenic residuals from drinking water treatment plants + 2000 + "EPA Contract 68-C7-0011, work assignment 0-38." + book + + Regulations on the disposal of arsenic residuals from drinking water treatment plants + 2000 + "May 2000." + "EPA/600/R-00/025." + "EPA Contract 68-C7-0011, work assignment 0-38." + book + + 1 + 20456 + water: field=subject vecf[1] += mult(3) / length(1); water: field=subject vecf[1] += mult(3) / length(4); water: field=subject vecf[1] += mult(3) / length(3); @@ -397,24 +425,26 @@ water: field=title vecf[1] += mult(6) / length(12); idf[1] = log(((1 + total(200))/termoccur(195)); water: relevance += 100000 * vecf[1](6.750000) * idf[1](0.030305) (20456); score = relevance(20456); - -content: title regulations on the disposal of arsenic residuals from drinking water treatment plants medium book + + content: title regulations on the disposal of arsenic residuals from drinking water treatment plants medium book - -A guide to Montana water quality regulation -1997 -Bryan, Michelle -"A joint publication of Legislative Environmental Policy Office, Environmental Quality Council [and] Montana University System, Water Center" -book -A guide to Montana water quality regulation -1997 -Bryan, Michelle -"A joint publication of Legislative Environmental Policy Office, Environmental Quality Council [and] Montana University System, Water Center" -book -19800 - + A guide to Montana water quality regulation + 1997 + Bryan, Michelle + "A joint publication of Legislative Environmental Policy Office, Environmental Quality Council [and] Montana University System, Water Center" + book + + A guide to Montana water quality regulation + 1997 + Bryan, Michelle + "A joint publication of Legislative Environmental Policy Office, Environmental Quality Council [and] Montana University System, Water Center" + book + + 1 + 19800 + water: field=description vecf[1] += mult(3) / length(17); water: field=subject vecf[1] += mult(3) / length(1); water: field=subject vecf[1] += mult(3) / length(3); @@ -423,22 +453,24 @@ water: field=title vecf[1] += mult(6) / length(7); idf[1] = log(((1 + total(200))/termoccur(195)); water: relevance += 100000 * vecf[1](6.533614) * idf[1](0.030305) (19800); score = relevance(19800); - -content: title a guide to montana water quality regulation author bryan michelle medium book + + content: title a guide to montana water quality regulation author bryan michelle medium book - -Water technology management -2001 -Collection of articles with reference to India -book -Water technology management -2001 -Collection of articles with reference to India -book -19698 - + Water technology management + 2001 + Collection of articles with reference to India + book + + Water technology management + 2001 + Collection of articles with reference to India + book + + 1 + 19698 + water: field=subject vecf[1] += mult(3) / length(2); water: field=subject vecf[1] += mult(3) / length(2); water: field=subject vecf[1] += mult(3) / length(2); @@ -446,24 +478,26 @@ water: field=title vecf[1] += mult(6) / length(3); idf[1] = log(((1 + total(200))/termoccur(195)); water: relevance += 100000 * vecf[1](6.500000) * idf[1](0.030305) (19698); score = relevance(19698); - -content: title water technology management medium book + + content: title water technology management medium book - -Aquatic habitat indicators and their application to water quality objectives within the Clean Water Act -1999 -Bauer, Steve -"This document was developed for US Environmental Protection Agency, Region 10, Seattle Washington, with the Idaho Water Resources Institute, University of Idaho." -book -Aquatic habitat indicators and their application to water quality objectives within the Clean Water Act -1999 -Bauer, Steve -"This document was developed for US Environmental Protection Agency, Region 10, Seattle Washington, with the Idaho Water Resources Institute, University of Idaho." -book -19525 - + Aquatic habitat indicators and their application to water quality objectives within the Clean Water Act + 1999 + Bauer, Steve + "This document was developed for US Environmental Protection Agency, Region 10, Seattle Washington, with the Idaho Water Resources Institute, University of Idaho." + book + + Aquatic habitat indicators and their application to water quality objectives within the Clean Water Act + 1999 + Bauer, Steve + "This document was developed for US Environmental Protection Agency, Region 10, Seattle Washington, with the Idaho Water Resources Institute, University of Idaho." + book + + 1 + 19525 + water: field=description vecf[1] += mult(3) / length(21); water: field=subject vecf[1] += mult(3) / length(3); water: field=subject vecf[1] += mult(3) / length(2); @@ -472,24 +506,26 @@ water: field=title vecf[1] += mult(12) / length(15); idf[1] = log(((1 + total(200))/termoccur(195)); water: relevance += 100000 * vecf[1](6.442857) * idf[1](0.030305) (19525); score = relevance(19525); - -content: title aquatic habitat indicators and their application to water quality objectives within the clean water act author bauer steve medium book + + content: title aquatic habitat indicators and their application to water quality objectives within the clean water act author bauer steve medium book - -An empirical analysis of water temperature and dissolved oxygen conditions in the Red Deer River -1997 -Saffran, Karen Anita -"March 1997." -book -An empirical analysis of water temperature and dissolved oxygen conditions in the Red Deer River -1997 -Saffran, Karen Anita -"March 1997." -book -19395 - + An empirical analysis of water temperature and dissolved oxygen conditions in the Red Deer River + 1997 + Saffran, Karen Anita + "March 1997." + book + + An empirical analysis of water temperature and dissolved oxygen conditions in the Red Deer River + 1997 + Saffran, Karen Anita + "March 1997." + book + + 1 + 19395 + water: field=subject vecf[1] += mult(3) / length(2); water: field=subject vecf[1] += mult(3) / length(1); water: field=subject vecf[1] += mult(3) / length(2); @@ -497,23 +533,25 @@ water: field=title vecf[1] += mult(6) / length(15); idf[1] = log(((1 + total(200))/termoccur(195)); water: relevance += 100000 * vecf[1](6.400000) * idf[1](0.030305) (19395); score = relevance(19395); - -content: title an empirical analysis of water temperature and dissolved oxygen conditions in the red deer river author saffran karen anita medium book + + content: title an empirical analysis of water temperature and dissolved oxygen conditions in the red deer river author saffran karen anita medium book - -Surface water quality monitoring procedures manual -1999 -"GI-252"--Cover -book -Surface water quality monitoring procedures manual -1999 -"June 1999." -"GI-252"--Cover -book -18940 - + Surface water quality monitoring procedures manual + 1999 + "GI-252"--Cover + book + + Surface water quality monitoring procedures manual + 1999 + "June 1999." + "GI-252"--Cover + book + + 1 + 18940 + water: field=subject vecf[1] += mult(3) / length(2); water: field=subject vecf[1] += mult(3) / length(1); water: field=subject vecf[1] += mult(3) / length(4); @@ -521,22 +559,24 @@ water: field=title vecf[1] += mult(6) / length(6); idf[1] = log(((1 + total(200))/termoccur(195)); water: relevance += 100000 * vecf[1](6.250000) * idf[1](0.030305) (18940); score = relevance(18940); - -content: title surface water quality monitoring procedures manual medium book + + content: title surface water quality monitoring procedures manual medium book - -International Conference on Management of Drinking Water Resources, Chennai, December 3-5, 1997 -proceedings -1997 -book -International Conference on Management of Drinking Water Resources, Chennai, December 3-5, 1997 -proceedings -1997 -book -18486 - + International Conference on Management of Drinking Water Resources, Chennai, December 3-5, 1997 + proceedings + 1997 + book + + International Conference on Management of Drinking Water Resources, Chennai, December 3-5, 1997 + proceedings + 1997 + book + + 1 + 18486 + water: field=subject vecf[1] += mult(3) / length(2); water: field=subject vecf[1] += mult(3) / length(3); water: field=subject vecf[1] += mult(3) / length(2); @@ -545,7 +585,7 @@ water: field=title vecf[1] += mult(6) / length(10); idf[1] = log(((1 + total(200))/termoccur(195)); water: relevance += 100000 * vecf[1](6.100000) * idf[1](0.030305) (18486); score = relevance(18486); - -content: title international conference on management of drinking water resources chennai december medium book + + content: title international conference on management of drinking water resources chennai december medium book \ No newline at end of file diff --git a/test/test_solr_22.res b/test/test_solr_22.res index d62cbdc..50639e8 100644 --- a/test/test_solr_22.res +++ b/test/test_solr_22.res @@ -6,44 +6,48 @@ 0 2 - -The nitrogen permitting and trading plan for Long Island Sound -2000 -"In response to Special Act No. 99-6." -book -The nitrogen permitting and trading plan for Long Island Sound -2000 -Title from cover -"January 2000." -"In response to Special Act No. 99-6." -book -121639 - + The nitrogen permitting and trading plan for Long Island Sound + 2000 + "In response to Special Act No. 99-6." + book + + The nitrogen permitting and trading plan for Long Island Sound + 2000 + Title from cover + "January 2000." + "In response to Special Act No. 99-6." + book + + 1 + 121639 + water: field=subject vecf[1] += mult(3) / length(1); idf[1] = log(((1 + total(2))/termoccur(2)); water: relevance += 100000 * vecf[1](3.000000) * idf[1](0.405465) (121639); score = relevance(121639); - -content: title the nitrogen permitting and trading plan for long island sound medium book + + content: title the nitrogen permitting and trading plan for long island sound medium book - -Report of the Water commissioners to the Common council of the city of Albany; -1872 -book -Report of the Water commissioners to the Common council of the city of Albany; -1872 -book -78196 - + Report of the Water commissioners to the Common council of the city of Albany; + 1872 + book + + Report of the Water commissioners to the Common council of the city of Albany; + 1872 + book + + 1 + 78196 + water: field=subject vecf[1] += mult(3) / length(2); water: field=title vecf[1] += mult(6) / length(14); idf[1] = log(((1 + total(2))/termoccur(2)); water: relevance += 100000 * vecf[1](1.928571) * idf[1](0.405465) (78196); score = relevance(78196); - -content: title report of the water commissioners to the common council of the city of albany medium book + + content: title report of the water commissioners to the common council of the city of albany medium book \ No newline at end of file diff --git a/test/test_solr_25.res b/test/test_solr_25.res index 44a0bc6..6749c16 100644 --- a/test/test_solr_25.res +++ b/test/test_solr_25.res @@ -6,18 +6,20 @@ 0 20 - -Water -1999 -De Villiers, Marq -book -Water -1999 -De Villiers, Marq -book -34675 - + Water + 1999 + De Villiers, Marq + book + + Water + 1999 + De Villiers, Marq + book + + 1 + 34675 + water: field=subject vecf[1] += mult(3) / length(2); water: field=subject vecf[1] += mult(3) / length(1); water: field=subject vecf[1] += mult(3) / length(3); @@ -25,29 +27,31 @@ water: field=title vecf[1] += mult(6) / length(1); idf[1] = log(((1 + total(100))/termoccur(98)); water: relevance += 100000 * vecf[1](11.500000) * idf[1](0.030153) (34675); score = relevance(34675); - -content: title water author de villiers marq medium book + + content: title water author de villiers marq medium book - -Potable water and methods of detecting impurities -1899-1906 -Baker, M. N -book -Potable water and methods of detecting impurities -1906 -Baker, M. N -book - -Potable water and methods of detecting impurities -1899 -Baker, M. N -book -2 -32306 - + Potable water and methods of detecting impurities + 1899-1906 + Baker, M. N + book + + Potable water and methods of detecting impurities + 1906 + Baker, M. N + book + + + Potable water and methods of detecting impurities + 1899 + Baker, M. N + book + + 2 + 32306 + water: field=subject vecf[1] += mult(3) / length(2); water: field=subject vecf[1] += mult(3) / length(1); water: field=title vecf[1] += mult(6) / length(7); @@ -57,24 +61,26 @@ water: field=title vecf[1] += mult(6) / length(7); idf[1] = log(((1 + total(100))/termoccur(98)); water: relevance += 100000 * vecf[1](10.714286) * idf[1](0.030153) (32306); score = relevance(32306); - -content: title potable water and methods of detecting impurities author baker m n medium book + + content: title potable water and methods of detecting impurities author baker m n medium book - -Water -2000 -Majeed, Abdul -"Balochistan conservation strategy background paper"--T.p -book -Water -2000 -Majeed, Abdul -"Balochistan conservation strategy background paper"--T.p -book -30153 - + Water + 2000 + Majeed, Abdul + "Balochistan conservation strategy background paper"--T.p + book + + Water + 2000 + Majeed, Abdul + "Balochistan conservation strategy background paper"--T.p + book + + 1 + 30153 + water: field=subject vecf[1] += mult(3) / length(2); water: field=subject vecf[1] += mult(3) / length(2); water: field=subject vecf[1] += mult(3) / length(3); @@ -82,49 +88,53 @@ water: field=title vecf[1] += mult(6) / length(1); idf[1] = log(((1 + total(100))/termoccur(98)); water: relevance += 100000 * vecf[1](10.000000) * idf[1](0.030153) (30153); score = relevance(30153); - -content: title water author majeed abdul medium book + + content: title water author majeed abdul medium book - -Water -2000 -Grant, Pamela -Examines major environmental issues surrounding water, giving examples of attempts to solve global problems and sources for more information -book -Water -2000 -Grant, Pamela -Includes index -Examines major environmental issues surrounding water, giving examples of attempts to solve global problems and sources for more information -book -27613 - + Water + 2000 + Grant, Pamela + Examines major environmental issues surrounding water, giving examples of attempts to solve global problems and sources for more information + book + + Water + 2000 + Grant, Pamela + Includes index + Examines major environmental issues surrounding water, giving examples of attempts to solve global problems and sources for more information + book + + 1 + 27613 + water: field=description vecf[1] += mult(3) / length(19); water: field=subject vecf[1] += mult(3) / length(1); water: field=title vecf[1] += mult(6) / length(1); idf[1] = log(((1 + total(100))/termoccur(98)); water: relevance += 100000 * vecf[1](9.157894) * idf[1](0.030153) (27613); score = relevance(27613); - -content: title water author grant pamela medium book + + content: title water author grant pamela medium book - -Water law -2000 -Fisher, D. E -Includes index -book -Water law -2000 -Fisher, D. E -Includes index -book -27137 - + Water law + 2000 + Fisher, D. E + Includes index + book + + Water law + 2000 + Fisher, D. E + Includes index + book + + 1 + 27137 + water: field=subject vecf[1] += mult(3) / length(1); water: field=subject vecf[1] += mult(3) / length(2); water: field=subject vecf[1] += mult(3) / length(2); @@ -132,25 +142,27 @@ water: field=title vecf[1] += mult(6) / length(2); idf[1] = log(((1 + total(100))/termoccur(98)); water: relevance += 100000 * vecf[1](9.000000) * idf[1](0.030153) (27137); score = relevance(27137); - -content: title water law author fisher d e medium book + + content: title water law author fisher d e medium book - -A Primer on fresh water -questions and answers -2000 -Issued also in French under title: Notions élémentaires sur l'eau douce : questions et réponses -book -A Primer on fresh water -questions and answers -2000 -Issued also in French under title: Notions élémentaires sur l'eau douce : questions et réponses -Includes index -book -26233 - + A Primer on fresh water + questions and answers + 2000 + Issued also in French under title: Notions élémentaires sur l'eau douce : questions et réponses + book + + A Primer on fresh water + questions and answers + 2000 + Issued also in French under title: Notions élémentaires sur l'eau douce : questions et réponses + Includes index + book + + 1 + 26233 + water: field=subject vecf[1] += mult(3) / length(1); water: field=subject vecf[1] += mult(3) / length(2); water: field=subject vecf[1] += mult(3) / length(2); @@ -159,53 +171,57 @@ water: field=title vecf[1] += mult(6) / length(5); idf[1] = log(((1 + total(100))/termoccur(98)); water: relevance += 100000 * vecf[1](8.700000) * idf[1](0.030153) (26233); score = relevance(26233); - -content: title a primer on fresh water medium book + + content: title a primer on fresh water medium book - -Water and water supplies -1901 -Thresh, John Clough -book -Water and water supplies -1901 -Thresh, John Clough -book -22614 - + Water and water supplies + 1901 + Thresh, John Clough + book + + Water and water supplies + 1901 + Thresh, John Clough + book + + 1 + 22614 + water: field=subject vecf[1] += mult(3) / length(1); water: field=subject vecf[1] += mult(3) / length(2); water: field=title vecf[1] += mult(12) / length(4); idf[1] = log(((1 + total(100))/termoccur(98)); water: relevance += 100000 * vecf[1](7.500000) * idf[1](0.030153) (22614); score = relevance(22614); - -content: title water and water supplies author thresh john clough medium book + + content: title water and water supplies author thresh john clough medium book - -Water quality assessment of the State Water Project, 1996-97 -1999-2000 -"September 1999." -book -Water quality assessment of the State Water Project, 1998-99 -2000 -Cover title -"July 2000." -book - -Water quality assessment of the State Water Project, 1996-97 -1999 -Cover title -"September 1999." -book -2 -22614 - + Water quality assessment of the State Water Project, 1996-97 + 1999-2000 + "September 1999." + book + + Water quality assessment of the State Water Project, 1998-99 + 2000 + Cover title + "July 2000." + book + + + Water quality assessment of the State Water Project, 1996-97 + 1999 + Cover title + "September 1999." + book + + 2 + 22614 + water: field=subject vecf[1] += mult(3) / length(4); water: field=subject vecf[1] += mult(3) / length(2); water: field=title vecf[1] += mult(12) / length(8); @@ -215,48 +231,52 @@ water: field=title vecf[1] += mult(12) / length(8); idf[1] = log(((1 + total(100))/termoccur(98)); water: relevance += 100000 * vecf[1](7.500000) * idf[1](0.030153) (22614); score = relevance(22614); - -content: title water quality assessment of the state water project medium book + + content: title water quality assessment of the state water project medium book - -Water-supply -(Considered principally from a sanitary standpoint.) -1896 -Mason, William Pitt -book -Water-supply -(Considered principally from a sanitary standpoint.) -1896 -Mason, William Pitt -book -22614 - + Water-supply + (Considered principally from a sanitary standpoint.) + 1896 + Mason, William Pitt + book + + Water-supply + (Considered principally from a sanitary standpoint.) + 1896 + Mason, William Pitt + book + + 1 + 22614 + water: field=subject vecf[1] += mult(3) / length(2); water: field=subject vecf[1] += mult(3) / length(1); water: field=title vecf[1] += mult(6) / length(2); idf[1] = log(((1 + total(100))/termoccur(98)); water: relevance += 100000 * vecf[1](7.500000) * idf[1](0.030153) (22614); score = relevance(22614); - -content: title water supply author mason william pitt medium book + + content: title water supply author mason william pitt medium book - -The law of waters and water rights -international, national, state, municipal, and individual, including irrigation, drainage, and municipal water supply -1904 -Farnham, Henry P -book -The law of waters and water rights -international, national, state, municipal, and individual, including irrigation, drainage, and municipal water supply -1904 -Farnham, Henry P -book -21836 - + The law of waters and water rights + international, national, state, municipal, and individual, including irrigation, drainage, and municipal water supply + 1904 + Farnham, Henry P + book + + The law of waters and water rights + international, national, state, municipal, and individual, including irrigation, drainage, and municipal water supply + 1904 + Farnham, Henry P + book + + 1 + 21836 + water: field=subject vecf[1] += mult(3) / length(2); water: field=subject vecf[1] += mult(3) / length(1); water: field=subject vecf[1] += mult(3) / length(2); @@ -265,33 +285,35 @@ water: field=title-remainder vecf[1] += mult(5) / length(13); idf[1] = log(((1 + total(100))/termoccur(98)); water: relevance += 100000 * vecf[1](7.241758) * idf[1](0.030153) (21836); score = relevance(21836); - -content: title the law of waters and water rights author farnham henry p medium book + + content: title the law of waters and water rights author farnham henry p medium book - -Water, in press, 1998 -an index of news items on water resources selected from leading news papers -1998-1999 -With reference to India -book -Water, in press, 1998 -an index to news items on water resources selected from leading news papers -1999 -Includes index -book - -Water in press, 1997 -an index of news items on water resources selected from leading news papers -1998 -Includes index -With reference to India -book -2 -20411 - + Water, in press, 1998 + an index of news items on water resources selected from leading news papers + 1998-1999 + With reference to India + book + + Water, in press, 1998 + an index to news items on water resources selected from leading news papers + 1999 + Includes index + book + + + Water in press, 1997 + an index of news items on water resources selected from leading news papers + 1998 + Includes index + With reference to India + book + + 2 + 20411 + water: field=subject vecf[1] += mult(3) / length(3); water: field=title vecf[1] += mult(6) / length(3); water: field=title-remainder vecf[1] += mult(5) / length(13); @@ -301,24 +323,26 @@ water: field=title-remainder vecf[1] += mult(5) / length(13); idf[1] = log(((1 + total(100))/termoccur(98)); water: relevance += 100000 * vecf[1](6.769231) * idf[1](0.030153) (20411); score = relevance(20411); - -content: title water in press medium book + + content: title water in press medium book - -Regulations on the disposal of arsenic residuals from drinking water treatment plants -2000 -"EPA Contract 68-C7-0011, work assignment 0-38." -book -Regulations on the disposal of arsenic residuals from drinking water treatment plants -2000 -"May 2000." -"EPA/600/R-00/025." -"EPA Contract 68-C7-0011, work assignment 0-38." -book -20353 - + Regulations on the disposal of arsenic residuals from drinking water treatment plants + 2000 + "EPA Contract 68-C7-0011, work assignment 0-38." + book + + Regulations on the disposal of arsenic residuals from drinking water treatment plants + 2000 + "May 2000." + "EPA/600/R-00/025." + "EPA Contract 68-C7-0011, work assignment 0-38." + book + + 1 + 20353 + water: field=subject vecf[1] += mult(3) / length(1); water: field=subject vecf[1] += mult(3) / length(4); water: field=subject vecf[1] += mult(3) / length(3); @@ -327,24 +351,26 @@ water: field=title vecf[1] += mult(6) / length(12); idf[1] = log(((1 + total(100))/termoccur(98)); water: relevance += 100000 * vecf[1](6.750000) * idf[1](0.030153) (20353); score = relevance(20353); - -content: title regulations on the disposal of arsenic residuals from drinking water treatment plants medium book + + content: title regulations on the disposal of arsenic residuals from drinking water treatment plants medium book - -A guide to Montana water quality regulation -1997 -Bryan, Michelle -"A joint publication of Legislative Environmental Policy Office, Environmental Quality Council [and] Montana University System, Water Center" -book -A guide to Montana water quality regulation -1997 -Bryan, Michelle -"A joint publication of Legislative Environmental Policy Office, Environmental Quality Council [and] Montana University System, Water Center" -book -19700 - + A guide to Montana water quality regulation + 1997 + Bryan, Michelle + "A joint publication of Legislative Environmental Policy Office, Environmental Quality Council [and] Montana University System, Water Center" + book + + A guide to Montana water quality regulation + 1997 + Bryan, Michelle + "A joint publication of Legislative Environmental Policy Office, Environmental Quality Council [and] Montana University System, Water Center" + book + + 1 + 19700 + water: field=description vecf[1] += mult(3) / length(17); water: field=subject vecf[1] += mult(3) / length(1); water: field=subject vecf[1] += mult(3) / length(3); @@ -353,22 +379,24 @@ water: field=title vecf[1] += mult(6) / length(7); idf[1] = log(((1 + total(100))/termoccur(98)); water: relevance += 100000 * vecf[1](6.533614) * idf[1](0.030153) (19700); score = relevance(19700); - -content: title a guide to montana water quality regulation author bryan michelle medium book + + content: title a guide to montana water quality regulation author bryan michelle medium book - -Water technology management -2001 -Collection of articles with reference to India -book -Water technology management -2001 -Collection of articles with reference to India -book -19599 - + Water technology management + 2001 + Collection of articles with reference to India + book + + Water technology management + 2001 + Collection of articles with reference to India + book + + 1 + 19599 + water: field=subject vecf[1] += mult(3) / length(2); water: field=subject vecf[1] += mult(3) / length(2); water: field=subject vecf[1] += mult(3) / length(2); @@ -376,24 +404,26 @@ water: field=title vecf[1] += mult(6) / length(3); idf[1] = log(((1 + total(100))/termoccur(98)); water: relevance += 100000 * vecf[1](6.500000) * idf[1](0.030153) (19599); score = relevance(19599); - -content: title water technology management medium book + + content: title water technology management medium book - -Aquatic habitat indicators and their application to water quality objectives within the Clean Water Act -1999 -Bauer, Steve -"This document was developed for US Environmental Protection Agency, Region 10, Seattle Washington, with the Idaho Water Resources Institute, University of Idaho." -book -Aquatic habitat indicators and their application to water quality objectives within the Clean Water Act -1999 -Bauer, Steve -"This document was developed for US Environmental Protection Agency, Region 10, Seattle Washington, with the Idaho Water Resources Institute, University of Idaho." -book -19427 - + Aquatic habitat indicators and their application to water quality objectives within the Clean Water Act + 1999 + Bauer, Steve + "This document was developed for US Environmental Protection Agency, Region 10, Seattle Washington, with the Idaho Water Resources Institute, University of Idaho." + book + + Aquatic habitat indicators and their application to water quality objectives within the Clean Water Act + 1999 + Bauer, Steve + "This document was developed for US Environmental Protection Agency, Region 10, Seattle Washington, with the Idaho Water Resources Institute, University of Idaho." + book + + 1 + 19427 + water: field=description vecf[1] += mult(3) / length(21); water: field=subject vecf[1] += mult(3) / length(3); water: field=subject vecf[1] += mult(3) / length(2); @@ -402,24 +432,26 @@ water: field=title vecf[1] += mult(12) / length(15); idf[1] = log(((1 + total(100))/termoccur(98)); water: relevance += 100000 * vecf[1](6.442857) * idf[1](0.030153) (19427); score = relevance(19427); - -content: title aquatic habitat indicators and their application to water quality objectives within the clean water act author bauer steve medium book + + content: title aquatic habitat indicators and their application to water quality objectives within the clean water act author bauer steve medium book - -An empirical analysis of water temperature and dissolved oxygen conditions in the Red Deer River -1997 -Saffran, Karen Anita -"March 1997." -book -An empirical analysis of water temperature and dissolved oxygen conditions in the Red Deer River -1997 -Saffran, Karen Anita -"March 1997." -book -19297 - + An empirical analysis of water temperature and dissolved oxygen conditions in the Red Deer River + 1997 + Saffran, Karen Anita + "March 1997." + book + + An empirical analysis of water temperature and dissolved oxygen conditions in the Red Deer River + 1997 + Saffran, Karen Anita + "March 1997." + book + + 1 + 19297 + water: field=subject vecf[1] += mult(3) / length(2); water: field=subject vecf[1] += mult(3) / length(1); water: field=subject vecf[1] += mult(3) / length(2); @@ -427,23 +459,25 @@ water: field=title vecf[1] += mult(6) / length(15); idf[1] = log(((1 + total(100))/termoccur(98)); water: relevance += 100000 * vecf[1](6.400000) * idf[1](0.030153) (19297); score = relevance(19297); - -content: title an empirical analysis of water temperature and dissolved oxygen conditions in the red deer river author saffran karen anita medium book + + content: title an empirical analysis of water temperature and dissolved oxygen conditions in the red deer river author saffran karen anita medium book - -Surface water quality monitoring procedures manual -1999 -"GI-252"--Cover -book -Surface water quality monitoring procedures manual -1999 -"June 1999." -"GI-252"--Cover -book -18845 - + Surface water quality monitoring procedures manual + 1999 + "GI-252"--Cover + book + + Surface water quality monitoring procedures manual + 1999 + "June 1999." + "GI-252"--Cover + book + + 1 + 18845 + water: field=subject vecf[1] += mult(3) / length(2); water: field=subject vecf[1] += mult(3) / length(1); water: field=subject vecf[1] += mult(3) / length(4); @@ -451,22 +485,24 @@ water: field=title vecf[1] += mult(6) / length(6); idf[1] = log(((1 + total(100))/termoccur(98)); water: relevance += 100000 * vecf[1](6.250000) * idf[1](0.030153) (18845); score = relevance(18845); - -content: title surface water quality monitoring procedures manual medium book + + content: title surface water quality monitoring procedures manual medium book - -International Conference on Management of Drinking Water Resources, Chennai, December 3-5, 1997 -proceedings -1997 -book -International Conference on Management of Drinking Water Resources, Chennai, December 3-5, 1997 -proceedings -1997 -book -18393 - + International Conference on Management of Drinking Water Resources, Chennai, December 3-5, 1997 + proceedings + 1997 + book + + International Conference on Management of Drinking Water Resources, Chennai, December 3-5, 1997 + proceedings + 1997 + book + + 1 + 18393 + water: field=subject vecf[1] += mult(3) / length(2); water: field=subject vecf[1] += mult(3) / length(3); water: field=subject vecf[1] += mult(3) / length(2); @@ -475,46 +511,50 @@ water: field=title vecf[1] += mult(6) / length(10); idf[1] = log(((1 + total(100))/termoccur(98)); water: relevance += 100000 * vecf[1](6.100000) * idf[1](0.030153) (18393); score = relevance(18393); - -content: title international conference on management of drinking water resources chennai december medium book + + content: title international conference on management of drinking water resources chennai december medium book - -Mercados e instituciones de aguas en Bolivia -1998 -book -Mercados e instituciones de aguas en Bolivia -1998 -book -18091 - + Mercados e instituciones de aguas en Bolivia + 1998 + book + + Mercados e instituciones de aguas en Bolivia + 1998 + book + + 1 + 18091 + water: field=subject vecf[1] += mult(3) / length(2); water: field=subject vecf[1] += mult(3) / length(2); water: field=subject vecf[1] += mult(3) / length(1); idf[1] = log(((1 + total(100))/termoccur(98)); water: relevance += 100000 * vecf[1](6.000000) * idf[1](0.030153) (18091); score = relevance(18091); - -content: title mercados e instituciones de aguas en bolivia medium book + + content: title mercados e instituciones de aguas en bolivia medium book - -Water law -2000 -book -Water law -2000 -book -18091 - + Water law + 2000 + book + + Water law + 2000 + book + + 1 + 18091 + water: field=subject vecf[1] += mult(3) / length(1); water: field=title vecf[1] += mult(6) / length(2); idf[1] = log(((1 + total(100))/termoccur(98)); water: relevance += 100000 * vecf[1](6.000000) * idf[1](0.030153) (18091); score = relevance(18091); - -content: title water law medium book + + content: title water law medium book \ No newline at end of file diff --git a/test/test_solr_29.res b/test/test_solr_29.res index d62cbdc..50639e8 100644 --- a/test/test_solr_29.res +++ b/test/test_solr_29.res @@ -6,44 +6,48 @@ 0 2 - -The nitrogen permitting and trading plan for Long Island Sound -2000 -"In response to Special Act No. 99-6." -book -The nitrogen permitting and trading plan for Long Island Sound -2000 -Title from cover -"January 2000." -"In response to Special Act No. 99-6." -book -121639 - + The nitrogen permitting and trading plan for Long Island Sound + 2000 + "In response to Special Act No. 99-6." + book + + The nitrogen permitting and trading plan for Long Island Sound + 2000 + Title from cover + "January 2000." + "In response to Special Act No. 99-6." + book + + 1 + 121639 + water: field=subject vecf[1] += mult(3) / length(1); idf[1] = log(((1 + total(2))/termoccur(2)); water: relevance += 100000 * vecf[1](3.000000) * idf[1](0.405465) (121639); score = relevance(121639); - -content: title the nitrogen permitting and trading plan for long island sound medium book + + content: title the nitrogen permitting and trading plan for long island sound medium book - -Report of the Water commissioners to the Common council of the city of Albany; -1872 -book -Report of the Water commissioners to the Common council of the city of Albany; -1872 -book -78196 - + Report of the Water commissioners to the Common council of the city of Albany; + 1872 + book + + Report of the Water commissioners to the Common council of the city of Albany; + 1872 + book + + 1 + 78196 + water: field=subject vecf[1] += mult(3) / length(2); water: field=title vecf[1] += mult(6) / length(14); idf[1] = log(((1 + total(2))/termoccur(2)); water: relevance += 100000 * vecf[1](1.928571) * idf[1](0.405465) (78196); score = relevance(78196); - -content: title report of the water commissioners to the common council of the city of albany medium book + + content: title report of the water commissioners to the common council of the city of albany medium book \ No newline at end of file diff --git a/test/test_solr_4.res b/test/test_solr_4.res index 44a0bc6..6749c16 100644 --- a/test/test_solr_4.res +++ b/test/test_solr_4.res @@ -6,18 +6,20 @@ 0 20 - -Water -1999 -De Villiers, Marq -book -Water -1999 -De Villiers, Marq -book -34675 - + Water + 1999 + De Villiers, Marq + book + + Water + 1999 + De Villiers, Marq + book + + 1 + 34675 + water: field=subject vecf[1] += mult(3) / length(2); water: field=subject vecf[1] += mult(3) / length(1); water: field=subject vecf[1] += mult(3) / length(3); @@ -25,29 +27,31 @@ water: field=title vecf[1] += mult(6) / length(1); idf[1] = log(((1 + total(100))/termoccur(98)); water: relevance += 100000 * vecf[1](11.500000) * idf[1](0.030153) (34675); score = relevance(34675); - -content: title water author de villiers marq medium book + + content: title water author de villiers marq medium book - -Potable water and methods of detecting impurities -1899-1906 -Baker, M. N -book -Potable water and methods of detecting impurities -1906 -Baker, M. N -book - -Potable water and methods of detecting impurities -1899 -Baker, M. N -book -2 -32306 - + Potable water and methods of detecting impurities + 1899-1906 + Baker, M. N + book + + Potable water and methods of detecting impurities + 1906 + Baker, M. N + book + + + Potable water and methods of detecting impurities + 1899 + Baker, M. N + book + + 2 + 32306 + water: field=subject vecf[1] += mult(3) / length(2); water: field=subject vecf[1] += mult(3) / length(1); water: field=title vecf[1] += mult(6) / length(7); @@ -57,24 +61,26 @@ water: field=title vecf[1] += mult(6) / length(7); idf[1] = log(((1 + total(100))/termoccur(98)); water: relevance += 100000 * vecf[1](10.714286) * idf[1](0.030153) (32306); score = relevance(32306); - -content: title potable water and methods of detecting impurities author baker m n medium book + + content: title potable water and methods of detecting impurities author baker m n medium book - -Water -2000 -Majeed, Abdul -"Balochistan conservation strategy background paper"--T.p -book -Water -2000 -Majeed, Abdul -"Balochistan conservation strategy background paper"--T.p -book -30153 - + Water + 2000 + Majeed, Abdul + "Balochistan conservation strategy background paper"--T.p + book + + Water + 2000 + Majeed, Abdul + "Balochistan conservation strategy background paper"--T.p + book + + 1 + 30153 + water: field=subject vecf[1] += mult(3) / length(2); water: field=subject vecf[1] += mult(3) / length(2); water: field=subject vecf[1] += mult(3) / length(3); @@ -82,49 +88,53 @@ water: field=title vecf[1] += mult(6) / length(1); idf[1] = log(((1 + total(100))/termoccur(98)); water: relevance += 100000 * vecf[1](10.000000) * idf[1](0.030153) (30153); score = relevance(30153); - -content: title water author majeed abdul medium book + + content: title water author majeed abdul medium book - -Water -2000 -Grant, Pamela -Examines major environmental issues surrounding water, giving examples of attempts to solve global problems and sources for more information -book -Water -2000 -Grant, Pamela -Includes index -Examines major environmental issues surrounding water, giving examples of attempts to solve global problems and sources for more information -book -27613 - + Water + 2000 + Grant, Pamela + Examines major environmental issues surrounding water, giving examples of attempts to solve global problems and sources for more information + book + + Water + 2000 + Grant, Pamela + Includes index + Examines major environmental issues surrounding water, giving examples of attempts to solve global problems and sources for more information + book + + 1 + 27613 + water: field=description vecf[1] += mult(3) / length(19); water: field=subject vecf[1] += mult(3) / length(1); water: field=title vecf[1] += mult(6) / length(1); idf[1] = log(((1 + total(100))/termoccur(98)); water: relevance += 100000 * vecf[1](9.157894) * idf[1](0.030153) (27613); score = relevance(27613); - -content: title water author grant pamela medium book + + content: title water author grant pamela medium book - -Water law -2000 -Fisher, D. E -Includes index -book -Water law -2000 -Fisher, D. E -Includes index -book -27137 - + Water law + 2000 + Fisher, D. E + Includes index + book + + Water law + 2000 + Fisher, D. E + Includes index + book + + 1 + 27137 + water: field=subject vecf[1] += mult(3) / length(1); water: field=subject vecf[1] += mult(3) / length(2); water: field=subject vecf[1] += mult(3) / length(2); @@ -132,25 +142,27 @@ water: field=title vecf[1] += mult(6) / length(2); idf[1] = log(((1 + total(100))/termoccur(98)); water: relevance += 100000 * vecf[1](9.000000) * idf[1](0.030153) (27137); score = relevance(27137); - -content: title water law author fisher d e medium book + + content: title water law author fisher d e medium book - -A Primer on fresh water -questions and answers -2000 -Issued also in French under title: Notions élémentaires sur l'eau douce : questions et réponses -book -A Primer on fresh water -questions and answers -2000 -Issued also in French under title: Notions élémentaires sur l'eau douce : questions et réponses -Includes index -book -26233 - + A Primer on fresh water + questions and answers + 2000 + Issued also in French under title: Notions élémentaires sur l'eau douce : questions et réponses + book + + A Primer on fresh water + questions and answers + 2000 + Issued also in French under title: Notions élémentaires sur l'eau douce : questions et réponses + Includes index + book + + 1 + 26233 + water: field=subject vecf[1] += mult(3) / length(1); water: field=subject vecf[1] += mult(3) / length(2); water: field=subject vecf[1] += mult(3) / length(2); @@ -159,53 +171,57 @@ water: field=title vecf[1] += mult(6) / length(5); idf[1] = log(((1 + total(100))/termoccur(98)); water: relevance += 100000 * vecf[1](8.700000) * idf[1](0.030153) (26233); score = relevance(26233); - -content: title a primer on fresh water medium book + + content: title a primer on fresh water medium book - -Water and water supplies -1901 -Thresh, John Clough -book -Water and water supplies -1901 -Thresh, John Clough -book -22614 - + Water and water supplies + 1901 + Thresh, John Clough + book + + Water and water supplies + 1901 + Thresh, John Clough + book + + 1 + 22614 + water: field=subject vecf[1] += mult(3) / length(1); water: field=subject vecf[1] += mult(3) / length(2); water: field=title vecf[1] += mult(12) / length(4); idf[1] = log(((1 + total(100))/termoccur(98)); water: relevance += 100000 * vecf[1](7.500000) * idf[1](0.030153) (22614); score = relevance(22614); - -content: title water and water supplies author thresh john clough medium book + + content: title water and water supplies author thresh john clough medium book - -Water quality assessment of the State Water Project, 1996-97 -1999-2000 -"September 1999." -book -Water quality assessment of the State Water Project, 1998-99 -2000 -Cover title -"July 2000." -book - -Water quality assessment of the State Water Project, 1996-97 -1999 -Cover title -"September 1999." -book -2 -22614 - + Water quality assessment of the State Water Project, 1996-97 + 1999-2000 + "September 1999." + book + + Water quality assessment of the State Water Project, 1998-99 + 2000 + Cover title + "July 2000." + book + + + Water quality assessment of the State Water Project, 1996-97 + 1999 + Cover title + "September 1999." + book + + 2 + 22614 + water: field=subject vecf[1] += mult(3) / length(4); water: field=subject vecf[1] += mult(3) / length(2); water: field=title vecf[1] += mult(12) / length(8); @@ -215,48 +231,52 @@ water: field=title vecf[1] += mult(12) / length(8); idf[1] = log(((1 + total(100))/termoccur(98)); water: relevance += 100000 * vecf[1](7.500000) * idf[1](0.030153) (22614); score = relevance(22614); - -content: title water quality assessment of the state water project medium book + + content: title water quality assessment of the state water project medium book - -Water-supply -(Considered principally from a sanitary standpoint.) -1896 -Mason, William Pitt -book -Water-supply -(Considered principally from a sanitary standpoint.) -1896 -Mason, William Pitt -book -22614 - + Water-supply + (Considered principally from a sanitary standpoint.) + 1896 + Mason, William Pitt + book + + Water-supply + (Considered principally from a sanitary standpoint.) + 1896 + Mason, William Pitt + book + + 1 + 22614 + water: field=subject vecf[1] += mult(3) / length(2); water: field=subject vecf[1] += mult(3) / length(1); water: field=title vecf[1] += mult(6) / length(2); idf[1] = log(((1 + total(100))/termoccur(98)); water: relevance += 100000 * vecf[1](7.500000) * idf[1](0.030153) (22614); score = relevance(22614); - -content: title water supply author mason william pitt medium book + + content: title water supply author mason william pitt medium book - -The law of waters and water rights -international, national, state, municipal, and individual, including irrigation, drainage, and municipal water supply -1904 -Farnham, Henry P -book -The law of waters and water rights -international, national, state, municipal, and individual, including irrigation, drainage, and municipal water supply -1904 -Farnham, Henry P -book -21836 - + The law of waters and water rights + international, national, state, municipal, and individual, including irrigation, drainage, and municipal water supply + 1904 + Farnham, Henry P + book + + The law of waters and water rights + international, national, state, municipal, and individual, including irrigation, drainage, and municipal water supply + 1904 + Farnham, Henry P + book + + 1 + 21836 + water: field=subject vecf[1] += mult(3) / length(2); water: field=subject vecf[1] += mult(3) / length(1); water: field=subject vecf[1] += mult(3) / length(2); @@ -265,33 +285,35 @@ water: field=title-remainder vecf[1] += mult(5) / length(13); idf[1] = log(((1 + total(100))/termoccur(98)); water: relevance += 100000 * vecf[1](7.241758) * idf[1](0.030153) (21836); score = relevance(21836); - -content: title the law of waters and water rights author farnham henry p medium book + + content: title the law of waters and water rights author farnham henry p medium book - -Water, in press, 1998 -an index of news items on water resources selected from leading news papers -1998-1999 -With reference to India -book -Water, in press, 1998 -an index to news items on water resources selected from leading news papers -1999 -Includes index -book - -Water in press, 1997 -an index of news items on water resources selected from leading news papers -1998 -Includes index -With reference to India -book -2 -20411 - + Water, in press, 1998 + an index of news items on water resources selected from leading news papers + 1998-1999 + With reference to India + book + + Water, in press, 1998 + an index to news items on water resources selected from leading news papers + 1999 + Includes index + book + + + Water in press, 1997 + an index of news items on water resources selected from leading news papers + 1998 + Includes index + With reference to India + book + + 2 + 20411 + water: field=subject vecf[1] += mult(3) / length(3); water: field=title vecf[1] += mult(6) / length(3); water: field=title-remainder vecf[1] += mult(5) / length(13); @@ -301,24 +323,26 @@ water: field=title-remainder vecf[1] += mult(5) / length(13); idf[1] = log(((1 + total(100))/termoccur(98)); water: relevance += 100000 * vecf[1](6.769231) * idf[1](0.030153) (20411); score = relevance(20411); - -content: title water in press medium book + + content: title water in press medium book - -Regulations on the disposal of arsenic residuals from drinking water treatment plants -2000 -"EPA Contract 68-C7-0011, work assignment 0-38." -book -Regulations on the disposal of arsenic residuals from drinking water treatment plants -2000 -"May 2000." -"EPA/600/R-00/025." -"EPA Contract 68-C7-0011, work assignment 0-38." -book -20353 - + Regulations on the disposal of arsenic residuals from drinking water treatment plants + 2000 + "EPA Contract 68-C7-0011, work assignment 0-38." + book + + Regulations on the disposal of arsenic residuals from drinking water treatment plants + 2000 + "May 2000." + "EPA/600/R-00/025." + "EPA Contract 68-C7-0011, work assignment 0-38." + book + + 1 + 20353 + water: field=subject vecf[1] += mult(3) / length(1); water: field=subject vecf[1] += mult(3) / length(4); water: field=subject vecf[1] += mult(3) / length(3); @@ -327,24 +351,26 @@ water: field=title vecf[1] += mult(6) / length(12); idf[1] = log(((1 + total(100))/termoccur(98)); water: relevance += 100000 * vecf[1](6.750000) * idf[1](0.030153) (20353); score = relevance(20353); - -content: title regulations on the disposal of arsenic residuals from drinking water treatment plants medium book + + content: title regulations on the disposal of arsenic residuals from drinking water treatment plants medium book - -A guide to Montana water quality regulation -1997 -Bryan, Michelle -"A joint publication of Legislative Environmental Policy Office, Environmental Quality Council [and] Montana University System, Water Center" -book -A guide to Montana water quality regulation -1997 -Bryan, Michelle -"A joint publication of Legislative Environmental Policy Office, Environmental Quality Council [and] Montana University System, Water Center" -book -19700 - + A guide to Montana water quality regulation + 1997 + Bryan, Michelle + "A joint publication of Legislative Environmental Policy Office, Environmental Quality Council [and] Montana University System, Water Center" + book + + A guide to Montana water quality regulation + 1997 + Bryan, Michelle + "A joint publication of Legislative Environmental Policy Office, Environmental Quality Council [and] Montana University System, Water Center" + book + + 1 + 19700 + water: field=description vecf[1] += mult(3) / length(17); water: field=subject vecf[1] += mult(3) / length(1); water: field=subject vecf[1] += mult(3) / length(3); @@ -353,22 +379,24 @@ water: field=title vecf[1] += mult(6) / length(7); idf[1] = log(((1 + total(100))/termoccur(98)); water: relevance += 100000 * vecf[1](6.533614) * idf[1](0.030153) (19700); score = relevance(19700); - -content: title a guide to montana water quality regulation author bryan michelle medium book + + content: title a guide to montana water quality regulation author bryan michelle medium book - -Water technology management -2001 -Collection of articles with reference to India -book -Water technology management -2001 -Collection of articles with reference to India -book -19599 - + Water technology management + 2001 + Collection of articles with reference to India + book + + Water technology management + 2001 + Collection of articles with reference to India + book + + 1 + 19599 + water: field=subject vecf[1] += mult(3) / length(2); water: field=subject vecf[1] += mult(3) / length(2); water: field=subject vecf[1] += mult(3) / length(2); @@ -376,24 +404,26 @@ water: field=title vecf[1] += mult(6) / length(3); idf[1] = log(((1 + total(100))/termoccur(98)); water: relevance += 100000 * vecf[1](6.500000) * idf[1](0.030153) (19599); score = relevance(19599); - -content: title water technology management medium book + + content: title water technology management medium book - -Aquatic habitat indicators and their application to water quality objectives within the Clean Water Act -1999 -Bauer, Steve -"This document was developed for US Environmental Protection Agency, Region 10, Seattle Washington, with the Idaho Water Resources Institute, University of Idaho." -book -Aquatic habitat indicators and their application to water quality objectives within the Clean Water Act -1999 -Bauer, Steve -"This document was developed for US Environmental Protection Agency, Region 10, Seattle Washington, with the Idaho Water Resources Institute, University of Idaho." -book -19427 - + Aquatic habitat indicators and their application to water quality objectives within the Clean Water Act + 1999 + Bauer, Steve + "This document was developed for US Environmental Protection Agency, Region 10, Seattle Washington, with the Idaho Water Resources Institute, University of Idaho." + book + + Aquatic habitat indicators and their application to water quality objectives within the Clean Water Act + 1999 + Bauer, Steve + "This document was developed for US Environmental Protection Agency, Region 10, Seattle Washington, with the Idaho Water Resources Institute, University of Idaho." + book + + 1 + 19427 + water: field=description vecf[1] += mult(3) / length(21); water: field=subject vecf[1] += mult(3) / length(3); water: field=subject vecf[1] += mult(3) / length(2); @@ -402,24 +432,26 @@ water: field=title vecf[1] += mult(12) / length(15); idf[1] = log(((1 + total(100))/termoccur(98)); water: relevance += 100000 * vecf[1](6.442857) * idf[1](0.030153) (19427); score = relevance(19427); - -content: title aquatic habitat indicators and their application to water quality objectives within the clean water act author bauer steve medium book + + content: title aquatic habitat indicators and their application to water quality objectives within the clean water act author bauer steve medium book - -An empirical analysis of water temperature and dissolved oxygen conditions in the Red Deer River -1997 -Saffran, Karen Anita -"March 1997." -book -An empirical analysis of water temperature and dissolved oxygen conditions in the Red Deer River -1997 -Saffran, Karen Anita -"March 1997." -book -19297 - + An empirical analysis of water temperature and dissolved oxygen conditions in the Red Deer River + 1997 + Saffran, Karen Anita + "March 1997." + book + + An empirical analysis of water temperature and dissolved oxygen conditions in the Red Deer River + 1997 + Saffran, Karen Anita + "March 1997." + book + + 1 + 19297 + water: field=subject vecf[1] += mult(3) / length(2); water: field=subject vecf[1] += mult(3) / length(1); water: field=subject vecf[1] += mult(3) / length(2); @@ -427,23 +459,25 @@ water: field=title vecf[1] += mult(6) / length(15); idf[1] = log(((1 + total(100))/termoccur(98)); water: relevance += 100000 * vecf[1](6.400000) * idf[1](0.030153) (19297); score = relevance(19297); - -content: title an empirical analysis of water temperature and dissolved oxygen conditions in the red deer river author saffran karen anita medium book + + content: title an empirical analysis of water temperature and dissolved oxygen conditions in the red deer river author saffran karen anita medium book - -Surface water quality monitoring procedures manual -1999 -"GI-252"--Cover -book -Surface water quality monitoring procedures manual -1999 -"June 1999." -"GI-252"--Cover -book -18845 - + Surface water quality monitoring procedures manual + 1999 + "GI-252"--Cover + book + + Surface water quality monitoring procedures manual + 1999 + "June 1999." + "GI-252"--Cover + book + + 1 + 18845 + water: field=subject vecf[1] += mult(3) / length(2); water: field=subject vecf[1] += mult(3) / length(1); water: field=subject vecf[1] += mult(3) / length(4); @@ -451,22 +485,24 @@ water: field=title vecf[1] += mult(6) / length(6); idf[1] = log(((1 + total(100))/termoccur(98)); water: relevance += 100000 * vecf[1](6.250000) * idf[1](0.030153) (18845); score = relevance(18845); - -content: title surface water quality monitoring procedures manual medium book + + content: title surface water quality monitoring procedures manual medium book - -International Conference on Management of Drinking Water Resources, Chennai, December 3-5, 1997 -proceedings -1997 -book -International Conference on Management of Drinking Water Resources, Chennai, December 3-5, 1997 -proceedings -1997 -book -18393 - + International Conference on Management of Drinking Water Resources, Chennai, December 3-5, 1997 + proceedings + 1997 + book + + International Conference on Management of Drinking Water Resources, Chennai, December 3-5, 1997 + proceedings + 1997 + book + + 1 + 18393 + water: field=subject vecf[1] += mult(3) / length(2); water: field=subject vecf[1] += mult(3) / length(3); water: field=subject vecf[1] += mult(3) / length(2); @@ -475,46 +511,50 @@ water: field=title vecf[1] += mult(6) / length(10); idf[1] = log(((1 + total(100))/termoccur(98)); water: relevance += 100000 * vecf[1](6.100000) * idf[1](0.030153) (18393); score = relevance(18393); - -content: title international conference on management of drinking water resources chennai december medium book + + content: title international conference on management of drinking water resources chennai december medium book - -Mercados e instituciones de aguas en Bolivia -1998 -book -Mercados e instituciones de aguas en Bolivia -1998 -book -18091 - + Mercados e instituciones de aguas en Bolivia + 1998 + book + + Mercados e instituciones de aguas en Bolivia + 1998 + book + + 1 + 18091 + water: field=subject vecf[1] += mult(3) / length(2); water: field=subject vecf[1] += mult(3) / length(2); water: field=subject vecf[1] += mult(3) / length(1); idf[1] = log(((1 + total(100))/termoccur(98)); water: relevance += 100000 * vecf[1](6.000000) * idf[1](0.030153) (18091); score = relevance(18091); - -content: title mercados e instituciones de aguas en bolivia medium book + + content: title mercados e instituciones de aguas en bolivia medium book - -Water law -2000 -book -Water law -2000 -book -18091 - + Water law + 2000 + book + + Water law + 2000 + book + + 1 + 18091 + water: field=subject vecf[1] += mult(3) / length(1); water: field=title vecf[1] += mult(6) / length(2); idf[1] = log(((1 + total(100))/termoccur(98)); water: relevance += 100000 * vecf[1](6.000000) * idf[1](0.030153) (18091); score = relevance(18091); - -content: title water law medium book + + content: title water law medium book \ No newline at end of file diff --git a/test/test_solr_9.res b/test/test_solr_9.res index 44a0bc6..6749c16 100644 --- a/test/test_solr_9.res +++ b/test/test_solr_9.res @@ -6,18 +6,20 @@ 0 20 - -Water -1999 -De Villiers, Marq -book -Water -1999 -De Villiers, Marq -book -34675 - + Water + 1999 + De Villiers, Marq + book + + Water + 1999 + De Villiers, Marq + book + + 1 + 34675 + water: field=subject vecf[1] += mult(3) / length(2); water: field=subject vecf[1] += mult(3) / length(1); water: field=subject vecf[1] += mult(3) / length(3); @@ -25,29 +27,31 @@ water: field=title vecf[1] += mult(6) / length(1); idf[1] = log(((1 + total(100))/termoccur(98)); water: relevance += 100000 * vecf[1](11.500000) * idf[1](0.030153) (34675); score = relevance(34675); - -content: title water author de villiers marq medium book + + content: title water author de villiers marq medium book - -Potable water and methods of detecting impurities -1899-1906 -Baker, M. N -book -Potable water and methods of detecting impurities -1906 -Baker, M. N -book - -Potable water and methods of detecting impurities -1899 -Baker, M. N -book -2 -32306 - + Potable water and methods of detecting impurities + 1899-1906 + Baker, M. N + book + + Potable water and methods of detecting impurities + 1906 + Baker, M. N + book + + + Potable water and methods of detecting impurities + 1899 + Baker, M. N + book + + 2 + 32306 + water: field=subject vecf[1] += mult(3) / length(2); water: field=subject vecf[1] += mult(3) / length(1); water: field=title vecf[1] += mult(6) / length(7); @@ -57,24 +61,26 @@ water: field=title vecf[1] += mult(6) / length(7); idf[1] = log(((1 + total(100))/termoccur(98)); water: relevance += 100000 * vecf[1](10.714286) * idf[1](0.030153) (32306); score = relevance(32306); - -content: title potable water and methods of detecting impurities author baker m n medium book + + content: title potable water and methods of detecting impurities author baker m n medium book - -Water -2000 -Majeed, Abdul -"Balochistan conservation strategy background paper"--T.p -book -Water -2000 -Majeed, Abdul -"Balochistan conservation strategy background paper"--T.p -book -30153 - + Water + 2000 + Majeed, Abdul + "Balochistan conservation strategy background paper"--T.p + book + + Water + 2000 + Majeed, Abdul + "Balochistan conservation strategy background paper"--T.p + book + + 1 + 30153 + water: field=subject vecf[1] += mult(3) / length(2); water: field=subject vecf[1] += mult(3) / length(2); water: field=subject vecf[1] += mult(3) / length(3); @@ -82,49 +88,53 @@ water: field=title vecf[1] += mult(6) / length(1); idf[1] = log(((1 + total(100))/termoccur(98)); water: relevance += 100000 * vecf[1](10.000000) * idf[1](0.030153) (30153); score = relevance(30153); - -content: title water author majeed abdul medium book + + content: title water author majeed abdul medium book - -Water -2000 -Grant, Pamela -Examines major environmental issues surrounding water, giving examples of attempts to solve global problems and sources for more information -book -Water -2000 -Grant, Pamela -Includes index -Examines major environmental issues surrounding water, giving examples of attempts to solve global problems and sources for more information -book -27613 - + Water + 2000 + Grant, Pamela + Examines major environmental issues surrounding water, giving examples of attempts to solve global problems and sources for more information + book + + Water + 2000 + Grant, Pamela + Includes index + Examines major environmental issues surrounding water, giving examples of attempts to solve global problems and sources for more information + book + + 1 + 27613 + water: field=description vecf[1] += mult(3) / length(19); water: field=subject vecf[1] += mult(3) / length(1); water: field=title vecf[1] += mult(6) / length(1); idf[1] = log(((1 + total(100))/termoccur(98)); water: relevance += 100000 * vecf[1](9.157894) * idf[1](0.030153) (27613); score = relevance(27613); - -content: title water author grant pamela medium book + + content: title water author grant pamela medium book - -Water law -2000 -Fisher, D. E -Includes index -book -Water law -2000 -Fisher, D. E -Includes index -book -27137 - + Water law + 2000 + Fisher, D. E + Includes index + book + + Water law + 2000 + Fisher, D. E + Includes index + book + + 1 + 27137 + water: field=subject vecf[1] += mult(3) / length(1); water: field=subject vecf[1] += mult(3) / length(2); water: field=subject vecf[1] += mult(3) / length(2); @@ -132,25 +142,27 @@ water: field=title vecf[1] += mult(6) / length(2); idf[1] = log(((1 + total(100))/termoccur(98)); water: relevance += 100000 * vecf[1](9.000000) * idf[1](0.030153) (27137); score = relevance(27137); - -content: title water law author fisher d e medium book + + content: title water law author fisher d e medium book - -A Primer on fresh water -questions and answers -2000 -Issued also in French under title: Notions élémentaires sur l'eau douce : questions et réponses -book -A Primer on fresh water -questions and answers -2000 -Issued also in French under title: Notions élémentaires sur l'eau douce : questions et réponses -Includes index -book -26233 - + A Primer on fresh water + questions and answers + 2000 + Issued also in French under title: Notions élémentaires sur l'eau douce : questions et réponses + book + + A Primer on fresh water + questions and answers + 2000 + Issued also in French under title: Notions élémentaires sur l'eau douce : questions et réponses + Includes index + book + + 1 + 26233 + water: field=subject vecf[1] += mult(3) / length(1); water: field=subject vecf[1] += mult(3) / length(2); water: field=subject vecf[1] += mult(3) / length(2); @@ -159,53 +171,57 @@ water: field=title vecf[1] += mult(6) / length(5); idf[1] = log(((1 + total(100))/termoccur(98)); water: relevance += 100000 * vecf[1](8.700000) * idf[1](0.030153) (26233); score = relevance(26233); - -content: title a primer on fresh water medium book + + content: title a primer on fresh water medium book - -Water and water supplies -1901 -Thresh, John Clough -book -Water and water supplies -1901 -Thresh, John Clough -book -22614 - + Water and water supplies + 1901 + Thresh, John Clough + book + + Water and water supplies + 1901 + Thresh, John Clough + book + + 1 + 22614 + water: field=subject vecf[1] += mult(3) / length(1); water: field=subject vecf[1] += mult(3) / length(2); water: field=title vecf[1] += mult(12) / length(4); idf[1] = log(((1 + total(100))/termoccur(98)); water: relevance += 100000 * vecf[1](7.500000) * idf[1](0.030153) (22614); score = relevance(22614); - -content: title water and water supplies author thresh john clough medium book + + content: title water and water supplies author thresh john clough medium book - -Water quality assessment of the State Water Project, 1996-97 -1999-2000 -"September 1999." -book -Water quality assessment of the State Water Project, 1998-99 -2000 -Cover title -"July 2000." -book - -Water quality assessment of the State Water Project, 1996-97 -1999 -Cover title -"September 1999." -book -2 -22614 - + Water quality assessment of the State Water Project, 1996-97 + 1999-2000 + "September 1999." + book + + Water quality assessment of the State Water Project, 1998-99 + 2000 + Cover title + "July 2000." + book + + + Water quality assessment of the State Water Project, 1996-97 + 1999 + Cover title + "September 1999." + book + + 2 + 22614 + water: field=subject vecf[1] += mult(3) / length(4); water: field=subject vecf[1] += mult(3) / length(2); water: field=title vecf[1] += mult(12) / length(8); @@ -215,48 +231,52 @@ water: field=title vecf[1] += mult(12) / length(8); idf[1] = log(((1 + total(100))/termoccur(98)); water: relevance += 100000 * vecf[1](7.500000) * idf[1](0.030153) (22614); score = relevance(22614); - -content: title water quality assessment of the state water project medium book + + content: title water quality assessment of the state water project medium book - -Water-supply -(Considered principally from a sanitary standpoint.) -1896 -Mason, William Pitt -book -Water-supply -(Considered principally from a sanitary standpoint.) -1896 -Mason, William Pitt -book -22614 - + Water-supply + (Considered principally from a sanitary standpoint.) + 1896 + Mason, William Pitt + book + + Water-supply + (Considered principally from a sanitary standpoint.) + 1896 + Mason, William Pitt + book + + 1 + 22614 + water: field=subject vecf[1] += mult(3) / length(2); water: field=subject vecf[1] += mult(3) / length(1); water: field=title vecf[1] += mult(6) / length(2); idf[1] = log(((1 + total(100))/termoccur(98)); water: relevance += 100000 * vecf[1](7.500000) * idf[1](0.030153) (22614); score = relevance(22614); - -content: title water supply author mason william pitt medium book + + content: title water supply author mason william pitt medium book - -The law of waters and water rights -international, national, state, municipal, and individual, including irrigation, drainage, and municipal water supply -1904 -Farnham, Henry P -book -The law of waters and water rights -international, national, state, municipal, and individual, including irrigation, drainage, and municipal water supply -1904 -Farnham, Henry P -book -21836 - + The law of waters and water rights + international, national, state, municipal, and individual, including irrigation, drainage, and municipal water supply + 1904 + Farnham, Henry P + book + + The law of waters and water rights + international, national, state, municipal, and individual, including irrigation, drainage, and municipal water supply + 1904 + Farnham, Henry P + book + + 1 + 21836 + water: field=subject vecf[1] += mult(3) / length(2); water: field=subject vecf[1] += mult(3) / length(1); water: field=subject vecf[1] += mult(3) / length(2); @@ -265,33 +285,35 @@ water: field=title-remainder vecf[1] += mult(5) / length(13); idf[1] = log(((1 + total(100))/termoccur(98)); water: relevance += 100000 * vecf[1](7.241758) * idf[1](0.030153) (21836); score = relevance(21836); - -content: title the law of waters and water rights author farnham henry p medium book + + content: title the law of waters and water rights author farnham henry p medium book - -Water, in press, 1998 -an index of news items on water resources selected from leading news papers -1998-1999 -With reference to India -book -Water, in press, 1998 -an index to news items on water resources selected from leading news papers -1999 -Includes index -book - -Water in press, 1997 -an index of news items on water resources selected from leading news papers -1998 -Includes index -With reference to India -book -2 -20411 - + Water, in press, 1998 + an index of news items on water resources selected from leading news papers + 1998-1999 + With reference to India + book + + Water, in press, 1998 + an index to news items on water resources selected from leading news papers + 1999 + Includes index + book + + + Water in press, 1997 + an index of news items on water resources selected from leading news papers + 1998 + Includes index + With reference to India + book + + 2 + 20411 + water: field=subject vecf[1] += mult(3) / length(3); water: field=title vecf[1] += mult(6) / length(3); water: field=title-remainder vecf[1] += mult(5) / length(13); @@ -301,24 +323,26 @@ water: field=title-remainder vecf[1] += mult(5) / length(13); idf[1] = log(((1 + total(100))/termoccur(98)); water: relevance += 100000 * vecf[1](6.769231) * idf[1](0.030153) (20411); score = relevance(20411); - -content: title water in press medium book + + content: title water in press medium book - -Regulations on the disposal of arsenic residuals from drinking water treatment plants -2000 -"EPA Contract 68-C7-0011, work assignment 0-38." -book -Regulations on the disposal of arsenic residuals from drinking water treatment plants -2000 -"May 2000." -"EPA/600/R-00/025." -"EPA Contract 68-C7-0011, work assignment 0-38." -book -20353 - + Regulations on the disposal of arsenic residuals from drinking water treatment plants + 2000 + "EPA Contract 68-C7-0011, work assignment 0-38." + book + + Regulations on the disposal of arsenic residuals from drinking water treatment plants + 2000 + "May 2000." + "EPA/600/R-00/025." + "EPA Contract 68-C7-0011, work assignment 0-38." + book + + 1 + 20353 + water: field=subject vecf[1] += mult(3) / length(1); water: field=subject vecf[1] += mult(3) / length(4); water: field=subject vecf[1] += mult(3) / length(3); @@ -327,24 +351,26 @@ water: field=title vecf[1] += mult(6) / length(12); idf[1] = log(((1 + total(100))/termoccur(98)); water: relevance += 100000 * vecf[1](6.750000) * idf[1](0.030153) (20353); score = relevance(20353); - -content: title regulations on the disposal of arsenic residuals from drinking water treatment plants medium book + + content: title regulations on the disposal of arsenic residuals from drinking water treatment plants medium book - -A guide to Montana water quality regulation -1997 -Bryan, Michelle -"A joint publication of Legislative Environmental Policy Office, Environmental Quality Council [and] Montana University System, Water Center" -book -A guide to Montana water quality regulation -1997 -Bryan, Michelle -"A joint publication of Legislative Environmental Policy Office, Environmental Quality Council [and] Montana University System, Water Center" -book -19700 - + A guide to Montana water quality regulation + 1997 + Bryan, Michelle + "A joint publication of Legislative Environmental Policy Office, Environmental Quality Council [and] Montana University System, Water Center" + book + + A guide to Montana water quality regulation + 1997 + Bryan, Michelle + "A joint publication of Legislative Environmental Policy Office, Environmental Quality Council [and] Montana University System, Water Center" + book + + 1 + 19700 + water: field=description vecf[1] += mult(3) / length(17); water: field=subject vecf[1] += mult(3) / length(1); water: field=subject vecf[1] += mult(3) / length(3); @@ -353,22 +379,24 @@ water: field=title vecf[1] += mult(6) / length(7); idf[1] = log(((1 + total(100))/termoccur(98)); water: relevance += 100000 * vecf[1](6.533614) * idf[1](0.030153) (19700); score = relevance(19700); - -content: title a guide to montana water quality regulation author bryan michelle medium book + + content: title a guide to montana water quality regulation author bryan michelle medium book - -Water technology management -2001 -Collection of articles with reference to India -book -Water technology management -2001 -Collection of articles with reference to India -book -19599 - + Water technology management + 2001 + Collection of articles with reference to India + book + + Water technology management + 2001 + Collection of articles with reference to India + book + + 1 + 19599 + water: field=subject vecf[1] += mult(3) / length(2); water: field=subject vecf[1] += mult(3) / length(2); water: field=subject vecf[1] += mult(3) / length(2); @@ -376,24 +404,26 @@ water: field=title vecf[1] += mult(6) / length(3); idf[1] = log(((1 + total(100))/termoccur(98)); water: relevance += 100000 * vecf[1](6.500000) * idf[1](0.030153) (19599); score = relevance(19599); - -content: title water technology management medium book + + content: title water technology management medium book - -Aquatic habitat indicators and their application to water quality objectives within the Clean Water Act -1999 -Bauer, Steve -"This document was developed for US Environmental Protection Agency, Region 10, Seattle Washington, with the Idaho Water Resources Institute, University of Idaho." -book -Aquatic habitat indicators and their application to water quality objectives within the Clean Water Act -1999 -Bauer, Steve -"This document was developed for US Environmental Protection Agency, Region 10, Seattle Washington, with the Idaho Water Resources Institute, University of Idaho." -book -19427 - + Aquatic habitat indicators and their application to water quality objectives within the Clean Water Act + 1999 + Bauer, Steve + "This document was developed for US Environmental Protection Agency, Region 10, Seattle Washington, with the Idaho Water Resources Institute, University of Idaho." + book + + Aquatic habitat indicators and their application to water quality objectives within the Clean Water Act + 1999 + Bauer, Steve + "This document was developed for US Environmental Protection Agency, Region 10, Seattle Washington, with the Idaho Water Resources Institute, University of Idaho." + book + + 1 + 19427 + water: field=description vecf[1] += mult(3) / length(21); water: field=subject vecf[1] += mult(3) / length(3); water: field=subject vecf[1] += mult(3) / length(2); @@ -402,24 +432,26 @@ water: field=title vecf[1] += mult(12) / length(15); idf[1] = log(((1 + total(100))/termoccur(98)); water: relevance += 100000 * vecf[1](6.442857) * idf[1](0.030153) (19427); score = relevance(19427); - -content: title aquatic habitat indicators and their application to water quality objectives within the clean water act author bauer steve medium book + + content: title aquatic habitat indicators and their application to water quality objectives within the clean water act author bauer steve medium book - -An empirical analysis of water temperature and dissolved oxygen conditions in the Red Deer River -1997 -Saffran, Karen Anita -"March 1997." -book -An empirical analysis of water temperature and dissolved oxygen conditions in the Red Deer River -1997 -Saffran, Karen Anita -"March 1997." -book -19297 - + An empirical analysis of water temperature and dissolved oxygen conditions in the Red Deer River + 1997 + Saffran, Karen Anita + "March 1997." + book + + An empirical analysis of water temperature and dissolved oxygen conditions in the Red Deer River + 1997 + Saffran, Karen Anita + "March 1997." + book + + 1 + 19297 + water: field=subject vecf[1] += mult(3) / length(2); water: field=subject vecf[1] += mult(3) / length(1); water: field=subject vecf[1] += mult(3) / length(2); @@ -427,23 +459,25 @@ water: field=title vecf[1] += mult(6) / length(15); idf[1] = log(((1 + total(100))/termoccur(98)); water: relevance += 100000 * vecf[1](6.400000) * idf[1](0.030153) (19297); score = relevance(19297); - -content: title an empirical analysis of water temperature and dissolved oxygen conditions in the red deer river author saffran karen anita medium book + + content: title an empirical analysis of water temperature and dissolved oxygen conditions in the red deer river author saffran karen anita medium book - -Surface water quality monitoring procedures manual -1999 -"GI-252"--Cover -book -Surface water quality monitoring procedures manual -1999 -"June 1999." -"GI-252"--Cover -book -18845 - + Surface water quality monitoring procedures manual + 1999 + "GI-252"--Cover + book + + Surface water quality monitoring procedures manual + 1999 + "June 1999." + "GI-252"--Cover + book + + 1 + 18845 + water: field=subject vecf[1] += mult(3) / length(2); water: field=subject vecf[1] += mult(3) / length(1); water: field=subject vecf[1] += mult(3) / length(4); @@ -451,22 +485,24 @@ water: field=title vecf[1] += mult(6) / length(6); idf[1] = log(((1 + total(100))/termoccur(98)); water: relevance += 100000 * vecf[1](6.250000) * idf[1](0.030153) (18845); score = relevance(18845); - -content: title surface water quality monitoring procedures manual medium book + + content: title surface water quality monitoring procedures manual medium book - -International Conference on Management of Drinking Water Resources, Chennai, December 3-5, 1997 -proceedings -1997 -book -International Conference on Management of Drinking Water Resources, Chennai, December 3-5, 1997 -proceedings -1997 -book -18393 - + International Conference on Management of Drinking Water Resources, Chennai, December 3-5, 1997 + proceedings + 1997 + book + + International Conference on Management of Drinking Water Resources, Chennai, December 3-5, 1997 + proceedings + 1997 + book + + 1 + 18393 + water: field=subject vecf[1] += mult(3) / length(2); water: field=subject vecf[1] += mult(3) / length(3); water: field=subject vecf[1] += mult(3) / length(2); @@ -475,46 +511,50 @@ water: field=title vecf[1] += mult(6) / length(10); idf[1] = log(((1 + total(100))/termoccur(98)); water: relevance += 100000 * vecf[1](6.100000) * idf[1](0.030153) (18393); score = relevance(18393); - -content: title international conference on management of drinking water resources chennai december medium book + + content: title international conference on management of drinking water resources chennai december medium book - -Mercados e instituciones de aguas en Bolivia -1998 -book -Mercados e instituciones de aguas en Bolivia -1998 -book -18091 - + Mercados e instituciones de aguas en Bolivia + 1998 + book + + Mercados e instituciones de aguas en Bolivia + 1998 + book + + 1 + 18091 + water: field=subject vecf[1] += mult(3) / length(2); water: field=subject vecf[1] += mult(3) / length(2); water: field=subject vecf[1] += mult(3) / length(1); idf[1] = log(((1 + total(100))/termoccur(98)); water: relevance += 100000 * vecf[1](6.000000) * idf[1](0.030153) (18091); score = relevance(18091); - -content: title mercados e instituciones de aguas en bolivia medium book + + content: title mercados e instituciones de aguas en bolivia medium book - -Water law -2000 -book -Water law -2000 -book -18091 - + Water law + 2000 + book + + Water law + 2000 + book + + 1 + 18091 + water: field=subject vecf[1] += mult(3) / length(1); water: field=title vecf[1] += mult(6) / length(2); idf[1] = log(((1 + total(100))/termoccur(98)); water: relevance += 100000 * vecf[1](6.000000) * idf[1](0.030153) (18091); score = relevance(18091); - -content: title water law medium book + + content: title water law medium book \ No newline at end of file diff --git a/test/test_termlist_block_9.res b/test/test_termlist_block_9.res index cbe4f17..be9c7de 100644 --- a/test/test_termlist_block_9.res +++ b/test/test_termlist_block_9.res @@ -6,36 +6,40 @@ 0 20 - -Adobe Illustrator for the Mac -fast & easy -2001 -Woodward, C. Michael -Adobe Illustrator for the Mac -fast & easy -2001 -Woodward, C. Michael -49512 - + Adobe Illustrator for the Mac + fast & easy + 2001 + Woodward, C. Michael + + Adobe Illustrator for the Mac + fast & easy + 2001 + Woodward, C. Michael + + 1 + 49512 + computer: field=subject vecf[1] += mult(3) / length(2); computer: field=subject vecf[1] += mult(3) / length(2); computer: field=subject vecf[1] += mult(3) / length(1); idf[1] = log(((1 + total(100))/termoccur(93)); computer: relevance += 100000 * vecf[1](6.000000) * idf[1](0.082521) (49512); score = relevance(49512); - -content: title adobe illustrator for the mac author woodward c michael + + content: title adobe illustrator for the mac author woodward c michael - -Advanced computer performance modeling and simulation -1998 -Advanced computer performance modeling and simulation -1998 -49512 - + Advanced computer performance modeling and simulation + 1998 + + Advanced computer performance modeling and simulation + 1998 + + 1 + 49512 + computer: field=subject vecf[1] += mult(3) / length(2); computer: field=subject vecf[1] += mult(3) / length(2); computer: field=subject vecf[1] += mult(3) / length(3); @@ -44,24 +48,26 @@ computer: field=title vecf[1] += mult(6) / length(6); idf[1] = log(((1 + total(100))/termoccur(93)); computer: relevance += 100000 * vecf[1](6.000000) * idf[1](0.082521) (49512); score = relevance(49512); - -content: title advanced computer performance modeling and simulation + + content: title advanced computer performance modeling and simulation - -Cyberterrorism and computer crimes -issues surrounding the establishment of an international regime -2000 -Aldrich, Richard W -"April 2000." -Cyberterrorism and computer crimes -issues surrounding the establishment of an international regime -2000 -Aldrich, Richard W -"April 2000." -49512 - + Cyberterrorism and computer crimes + issues surrounding the establishment of an international regime + 2000 + Aldrich, Richard W + "April 2000." + + Cyberterrorism and computer crimes + issues surrounding the establishment of an international regime + 2000 + Aldrich, Richard W + "April 2000." + + 1 + 49512 + computer: field=subject vecf[1] += mult(3) / length(2); computer: field=subject vecf[1] += mult(3) / length(2); computer: field=subject vecf[1] += mult(3) / length(2); @@ -69,22 +75,24 @@ computer: field=title vecf[1] += mult(6) / length(4); idf[1] = log(((1 + total(100))/termoccur(93)); computer: relevance += 100000 * vecf[1](6.000000) * idf[1](0.082521) (49512); score = relevance(49512); - -content: title cyberterrorism and computer crimes author aldrich richard w + + content: title cyberterrorism and computer crimes author aldrich richard w - -Software design and usability -talks with Bonnie Nardi, Jakob Nielsen, David Smith, Austin Henderson & Jed Harris, Terry Winograd, Stephanie Rosenbaum -2000 -Kaasgaard, Klaus -Software design and usability -talks with Bonnie Nardi, Jakob Nielsen, David Smith, Austin Henderson & Jed Harris, Terry Winograd, Stephanie Rosenbaum -2000 -Kaasgaard, Klaus -45386 - + Software design and usability + talks with Bonnie Nardi, Jakob Nielsen, David Smith, Austin Henderson & Jed Harris, Terry Winograd, Stephanie Rosenbaum + 2000 + Kaasgaard, Klaus + + Software design and usability + talks with Bonnie Nardi, Jakob Nielsen, David Smith, Austin Henderson & Jed Harris, Terry Winograd, Stephanie Rosenbaum + 2000 + Kaasgaard, Klaus + + 1 + 45386 + computer: field=subject vecf[1] += mult(3) / length(2); computer: field=subject vecf[1] += mult(3) / length(2); computer: field=subject vecf[1] += mult(3) / length(3); @@ -92,22 +100,24 @@ computer: field=subject vecf[1] += mult(3) / length(2); idf[1] = log(((1 + total(100))/termoccur(93)); computer: relevance += 100000 * vecf[1](5.500000) * idf[1](0.082521) (45386); score = relevance(45386); - -content: title software design and usability author kaasgaard klaus + + content: title software design and usability author kaasgaard klaus - -Everything you need to know about the dangers of computer hacking -2000 -Knittel, John -Explains what computer hacking is, who does it, and how dangerous it can be -Everything you need to know about the dangers of computer hacking -2000 -Knittel, John -Explains what computer hacking is, who does it, and how dangerous it can be -43403 - + Everything you need to know about the dangers of computer hacking + 2000 + Knittel, John + Explains what computer hacking is, who does it, and how dangerous it can be + + Everything you need to know about the dangers of computer hacking + 2000 + Knittel, John + Explains what computer hacking is, who does it, and how dangerous it can be + + 1 + 43403 + computer: field=description vecf[1] += mult(3) / length(14); computer: field=subject vecf[1] += mult(3) / length(2); computer: field=subject vecf[1] += mult(3) / length(2); @@ -116,41 +126,45 @@ computer: field=title vecf[1] += mult(6) / length(11); idf[1] = log(((1 + total(100))/termoccur(93)); computer: relevance += 100000 * vecf[1](5.259740) * idf[1](0.082521) (43403); score = relevance(43403); - -content: title everything you need to know about the dangers of computer hacking author knittel john + + content: title everything you need to know about the dangers of computer hacking author knittel john - -Computer peripherals -1995 -Cook, Barry M -Computer peripherals -1995 -Cook, Barry M -43323 - + Computer peripherals + 1995 + Cook, Barry M + + Computer peripherals + 1995 + Cook, Barry M + + 1 + 43323 + computer: field=subject vecf[1] += mult(3) / length(4); computer: field=subject vecf[1] += mult(3) / length(2); computer: field=title vecf[1] += mult(6) / length(2); idf[1] = log(((1 + total(100))/termoccur(93)); computer: relevance += 100000 * vecf[1](5.250000) * idf[1](0.082521) (43323); score = relevance(43323); - -content: title computer peripherals author cook barry m + + content: title computer peripherals author cook barry m - -Kids' computer book -1994 -Discusses a variety of educational and game software for children with suggestions for setting up a computer system. Includes a 3 1/2 in. disk with 6 shareware programs for children -Kids' computer book -1994 -"For kids and their parents"--Cover -Discusses a variety of educational and game software for children with suggestions for setting up a computer system. Includes a 3 1/2 in. disk with 6 shareware programs for children -38051 - + Kids' computer book + 1994 + Discusses a variety of educational and game software for children with suggestions for setting up a computer system. Includes a 3 1/2 in. disk with 6 shareware programs for children + + Kids' computer book + 1994 + "For kids and their parents"--Cover + Discusses a variety of educational and game software for children with suggestions for setting up a computer system. Includes a 3 1/2 in. disk with 6 shareware programs for children + + 1 + 38051 + computer: field=description vecf[1] += mult(3) / length(27); computer: field=subject vecf[1] += mult(3) / length(2); computer: field=subject vecf[1] += mult(3) / length(3); @@ -158,169 +172,185 @@ computer: field=title vecf[1] += mult(6) / length(3); idf[1] = log(((1 + total(100))/termoccur(93)); computer: relevance += 100000 * vecf[1](4.611111) * idf[1](0.082521) (38051); score = relevance(38051); - -content: title kids computer book + + content: title kids computer book - -Computer friendly -1999 -Steinbacher, Raymond -Computer friendly -1999 -Steinbacher, Raymond -37134 - + Computer friendly + 1999 + Steinbacher, Raymond + + Computer friendly + 1999 + Steinbacher, Raymond + + 1 + 37134 + computer: field=subject vecf[1] += mult(3) / length(2); computer: field=title vecf[1] += mult(6) / length(2); idf[1] = log(((1 + total(100))/termoccur(93)); computer: relevance += 100000 * vecf[1](4.500000) * idf[1](0.082521) (37134); score = relevance(37134); - -content: title computer friendly author steinbacher raymond + + content: title computer friendly author steinbacher raymond - -Computer misuse -1999 -"Also published as Parliamentary Paper E 31AO"--T.p. verso -Computer misuse -1999 -"May 1999." -"NZLC R54"--T.p. verso -"Also published as Parliamentary Paper E 31AO"--T.p. verso -37134 - + Computer misuse + 1999 + "Also published as Parliamentary Paper E 31AO"--T.p. verso + + Computer misuse + 1999 + "May 1999." + "NZLC R54"--T.p. verso + "Also published as Parliamentary Paper E 31AO"--T.p. verso + + 1 + 37134 + computer: field=subject vecf[1] += mult(3) / length(2); computer: field=title vecf[1] += mult(6) / length(2); idf[1] = log(((1 + total(100))/termoccur(93)); computer: relevance += 100000 * vecf[1](4.500000) * idf[1](0.082521) (37134); score = relevance(37134); - -content: title computer misuse + + content: title computer misuse - -Computer networking -a top-down approach featuring the Internet -2001 -Ross, Keith W -Computer networking -a top-down approach featuring the Internet -2001 -Ross, Keith W -37134 - + Computer networking + a top-down approach featuring the Internet + 2001 + Ross, Keith W + + Computer networking + a top-down approach featuring the Internet + 2001 + Ross, Keith W + + 1 + 37134 + computer: field=subject vecf[1] += mult(3) / length(2); computer: field=title vecf[1] += mult(6) / length(2); idf[1] = log(((1 + total(100))/termoccur(93)); computer: relevance += 100000 * vecf[1](4.500000) * idf[1](0.082521) (37134); score = relevance(37134); - -content: title computer networking author ross keith w + + content: title computer networking author ross keith w - -CorelDRAW 8 for Windows -1998 -Davis, Phyllis -Includes index -CorelDRAW 8 for Windows -1998 -Davis, Phyllis -Includes index -37134 - + CorelDRAW 8 for Windows + 1998 + Davis, Phyllis + Includes index + + CorelDRAW 8 for Windows + 1998 + Davis, Phyllis + Includes index + + 1 + 37134 + computer: field=subject vecf[1] += mult(3) / length(2); computer: field=subject vecf[1] += mult(3) / length(2); computer: field=subject vecf[1] += mult(3) / length(2); idf[1] = log(((1 + total(100))/termoccur(93)); computer: relevance += 100000 * vecf[1](4.500000) * idf[1](0.082521) (37134); score = relevance(37134); - -content: title coreldraw for windows author davis phyllis + + content: title coreldraw for windows author davis phyllis - -Quicken 2000 for the Mac -the official guide -2000 -Langer, Maria -"Covers Quicken deluxe 2000 for the Mac"--Cover -Quicken 2000 for the Mac -the official guide -2000 -Langer, Maria -Includes index -"Covers Quicken deluxe 2000 for the Mac"--Cover -37134 - + Quicken 2000 for the Mac + the official guide + 2000 + Langer, Maria + "Covers Quicken deluxe 2000 for the Mac"--Cover + + Quicken 2000 for the Mac + the official guide + 2000 + Langer, Maria + Includes index + "Covers Quicken deluxe 2000 for the Mac"--Cover + + 1 + 37134 + computer: field=subject vecf[1] += mult(3) / length(2); computer: field=subject vecf[1] += mult(3) / length(1); idf[1] = log(((1 + total(100))/termoccur(93)); computer: relevance += 100000 * vecf[1](4.500000) * idf[1](0.082521) (37134); score = relevance(37134); - -content: title quicken for the mac author langer maria + + content: title quicken for the mac author langer maria - -Sicherheit und Schutz im Netz -1998 -Sicherheit und Schutz im Netz -1998 -37134 - + Sicherheit und Schutz im Netz + 1998 + + Sicherheit und Schutz im Netz + 1998 + + 1 + 37134 + computer: field=subject vecf[1] += mult(3) / length(2); computer: field=subject vecf[1] += mult(3) / length(2); computer: field=subject vecf[1] += mult(3) / length(2); idf[1] = log(((1 + total(100))/termoccur(93)); computer: relevance += 100000 * vecf[1](4.500000) * idf[1](0.082521) (37134); score = relevance(37134); - -content: title sicherheit und schutz im netz + + content: title sicherheit und schutz im netz - -Unix Secure Shell -1999 -Carasik, Anne H -Includes index -Unix Secure Shell -1999 -Carasik, Anne H -Includes index -37134 - + Unix Secure Shell + 1999 + Carasik, Anne H + Includes index + + Unix Secure Shell + 1999 + Carasik, Anne H + Includes index + + 1 + 37134 + computer: field=subject vecf[1] += mult(3) / length(2); computer: field=subject vecf[1] += mult(3) / length(2); computer: field=subject vecf[1] += mult(3) / length(2); idf[1] = log(((1 + total(100))/termoccur(93)); computer: relevance += 100000 * vecf[1](4.500000) * idf[1](0.082521) (37134); score = relevance(37134); - -content: title unix secure shell author carasik anne h + + content: title unix secure shell author carasik anne h - -Eight International Conference on Computer Communications and Networks -proceedings, 11-13 October 1999, Boston, Massachusetts -1999 -"IEEE catalog number 99EX370"--T.p. verso -Eight International Conference on Computer Communications and Networks -proceedings, 11-13 October 1999, Boston, Massachusetts -1999 -"IEEE catalog number 99EX370"--T.p. verso -35071 - + Eight International Conference on Computer Communications and Networks + proceedings, 11-13 October 1999, Boston, Massachusetts + 1999 + "IEEE catalog number 99EX370"--T.p. verso + + Eight International Conference on Computer Communications and Networks + proceedings, 11-13 October 1999, Boston, Massachusetts + 1999 + "IEEE catalog number 99EX370"--T.p. verso + + 1 + 35071 + computer: field=subject vecf[1] += mult(3) / length(2); computer: field=subject vecf[1] += mult(3) / length(3); computer: field=subject vecf[1] += mult(3) / length(3); @@ -328,116 +358,126 @@ computer: field=title vecf[1] += mult(6) / length(8); idf[1] = log(((1 + total(100))/termoccur(93)); computer: relevance += 100000 * vecf[1](4.250000) * idf[1](0.082521) (35071); score = relevance(35071); - -content: title eight international conference on computer communications and networks + + content: title eight international conference on computer communications and networks - -Building storage networks -2000 -Farley, Marc -Includes index -Building storage networks -2000 -Farley, Marc -Includes index -33008 - + Building storage networks + 2000 + Farley, Marc + Includes index + + Building storage networks + 2000 + Farley, Marc + Includes index + + 1 + 33008 + computer: field=subject vecf[1] += mult(3) / length(2); computer: field=subject vecf[1] += mult(3) / length(2); computer: field=subject vecf[1] += mult(3) / length(3); idf[1] = log(((1 + total(100))/termoccur(93)); computer: relevance += 100000 * vecf[1](4.000000) * idf[1](0.082521) (33008); score = relevance(33008); - -content: title building storage networks author farley marc + + content: title building storage networks author farley marc - -Complete CL -the definitive control language programming guide -1999 -Malaga, Ernie -Includes index -Complete CL -the definitive control language programming guide -1999 -Malaga, Ernie -Includes index -33008 - + Complete CL + the definitive control language programming guide + 1999 + Malaga, Ernie + Includes index + + Complete CL + the definitive control language programming guide + 1999 + Malaga, Ernie + Includes index + + 1 + 33008 + computer: field=subject vecf[1] += mult(3) / length(1); computer: field=subject vecf[1] += mult(3) / length(3); idf[1] = log(((1 + total(100))/termoccur(93)); computer: relevance += 100000 * vecf[1](4.000000) * idf[1](0.082521) (33008); score = relevance(33008); - -content: title complete cl author malaga ernie + + content: title complete cl author malaga ernie - -3D games -real-time rendering and software technology -2001 -Watt, Alan H -3D games -real-time rendering and software technology -2001 -Watt, Alan H -33008 - + 3D games + real-time rendering and software technology + 2001 + Watt, Alan H + + 3D games + real-time rendering and software technology + 2001 + Watt, Alan H + + 1 + 33008 + computer: field=subject vecf[1] += mult(3) / length(2); computer: field=subject vecf[1] += mult(3) / length(2); computer: field=subject vecf[1] += mult(3) / length(3); idf[1] = log(((1 + total(100))/termoccur(93)); computer: relevance += 100000 * vecf[1](4.000000) * idf[1](0.082521) (33008); score = relevance(33008); - -content: title d games author watt alan h + + content: title d games author watt alan h - -Java applications strategies for the AS/400 -1999 -Denoncourt, Don -Java applications strategies for the AS/400 -1999 -Denoncourt, Don -33008 - + Java applications strategies for the AS/400 + 1999 + Denoncourt, Don + + Java applications strategies for the AS/400 + 1999 + Denoncourt, Don + + 1 + 33008 + computer: field=subject vecf[1] += mult(3) / length(3); computer: field=subject vecf[1] += mult(3) / length(1); idf[1] = log(((1 + total(100))/termoccur(93)); computer: relevance += 100000 * vecf[1](4.000000) * idf[1](0.082521) (33008); score = relevance(33008); - -content: title java applications strategies for the as author denoncourt don + + content: title java applications strategies for the as author denoncourt don - -Mastering algorithms with C -1999 -Loudon, Kyle -"Useful techniques from sorting to encryption"--Cover -Mastering algorithms with C -1999 -Loudon, Kyle -"Useful techniques from sorting to encryption"--Cover -Includes index -33008 - + Mastering algorithms with C + 1999 + Loudon, Kyle + "Useful techniques from sorting to encryption"--Cover + + Mastering algorithms with C + 1999 + Loudon, Kyle + "Useful techniques from sorting to encryption"--Cover + Includes index + + 1 + 33008 + computer: field=subject vecf[1] += mult(3) / length(3); computer: field=subject vecf[1] += mult(3) / length(2); computer: field=subject vecf[1] += mult(3) / length(2); idf[1] = log(((1 + total(100))/termoccur(93)); computer: relevance += 100000 * vecf[1](4.000000) * idf[1](0.082521) (33008); score = relevance(33008); - -content: title mastering algorithms with c author loudon kyle + + content: title mastering algorithms with c author loudon kyle \ No newline at end of file diff --git a/test/test_turbomarcxml_4.res b/test/test_turbomarcxml_4.res index 3ef3ad2..78171fa 100644 --- a/test/test_turbomarcxml_4.res +++ b/test/test_turbomarcxml_4.res @@ -6,74 +6,80 @@ 0 3 - -BIBLIOGRAPHY OF MAINE GEOLOGY -This data base is a computer based bibliography of marine geology. It allows + BIBLIOGRAPHY OF MAINE GEOLOGY + This data base is a computer based bibliography of marine geology. It allows searching by topic and geographic location, similar to GEOREF. It is currently -under development to replace the printed Bibliography of Marine Geology -BIBLIOGRAPHY OF MAINE GEOLOGY -This data base is a computer based bibliography of marine geology. It allows +under development to replace the printed Bibliography of Marine Geology + + BIBLIOGRAPHY OF MAINE GEOLOGY + This data base is a computer based bibliography of marine geology. It allows searching by topic and geographic location, similar to GEOREF. It is currently under development to replace the printed Bibliography of Marine Geology -1692-PRESENT -test-usersetting-2 data: - -11882 - + 1692-PRESENT + test-usersetting-2 data: + + + 1 + 11882 + computer: field=description vecf[1] += mult(3) / length(35); idf[1] = log(((1 + total(3))/termoccur(1)); computer: relevance += 100000 * vecf[1](0.085714) * idf[1](1.386294) (11882); score = relevance(11882); - -content: title bibliography of maine geology author medium book + + content: title bibliography of maine geology author medium book - -GROUNDWATER RESOURCE MAPS - COUNTY SERIES -A series of 1:250,000 scale maps showing well yield, well depth, and depth to + GROUNDWATER RESOURCE MAPS - COUNTY SERIES + A series of 1:250,000 scale maps showing well yield, well depth, and depth to bedrock for a large number of bedrock wells inventoried by the Maine Geological Survey in the mid-to late 1970's comprises this data set. Some series also show bedrock topography and potentiometric surface. Geographic coverage is -restricted to Southern Maine -GROUNDWATER RESOURCE MAPS - COUNTY SERIES -A series of 1:250,000 scale maps showing well yield, well depth, and depth to +restricted to Southern Maine + + GROUNDWATER RESOURCE MAPS - COUNTY SERIES + A series of 1:250,000 scale maps showing well yield, well depth, and depth to bedrock for a large number of bedrock wells inventoried by the Maine Geological Survey in the mid-to late 1970's comprises this data set. Some series also show bedrock topography and potentiometric surface. Geographic coverage is restricted to Southern Maine -1972-1978 -test-usersetting-2 data: - -0 - + 1972-1978 + test-usersetting-2 data: + + + 1 + 0 + idf[1] = log(((1 + total(3))/termoccur(1)); computer: relevance += 100000 * vecf[1](0.000000) * idf[1](1.386294) (0); score = relevance(0); - -content: title groundwater resource maps county series author medium book + + content: title groundwater resource maps county series author medium book - -OIL/GAS DRILLING -This database contains information on oil and gas drilling such as well name, + OIL/GAS DRILLING + This database contains information on oil and gas drilling such as well name, operator, driller, location, depth, copies of logs run, permits, samples -(cuttings, core), completion records -OIL/GAS DRILLING -This database contains information on oil and gas drilling such as well name, +(cuttings, core), completion records + + OIL/GAS DRILLING + This database contains information on oil and gas drilling such as well name, operator, driller, location, depth, copies of logs run, permits, samples (cuttings, core), completion records -1907-PRESENT -test-usersetting-2 data: - -0 - + 1907-PRESENT + test-usersetting-2 data: + + + 1 + 0 + idf[1] = log(((1 + total(3))/termoccur(1)); computer: relevance += 100000 * vecf[1](0.000000) * idf[1](1.386294) (0); score = relevance(0); - -content: title oil gas drilling author medium book + + content: title oil gas drilling author medium book \ No newline at end of file diff --git a/test/test_turbomarcxml_7.res b/test/test_turbomarcxml_7.res index d8ce812..b8939f0 100644 --- a/test/test_turbomarcxml_7.res +++ b/test/test_turbomarcxml_7.res @@ -6,49 +6,55 @@ 0 3 - -BIBLIOGRAPHY OF MAINE GEOLOGY -This data base is a computer based bibliography of marine geology. It allows searching by topic and geographic location, similar to GEOREF. It is currently under development to replace the printed Bibliography of Marine Geology -BIBLIOGRAPHY OF MAINE GEOLOGY -This data base is a computer based bibliography of marine geology. It allows searching by topic and geographic location, similar to GEOREF. It is currently under development to replace the printed Bibliography of Marine Geology -11882 - + BIBLIOGRAPHY OF MAINE GEOLOGY + This data base is a computer based bibliography of marine geology. It allows searching by topic and geographic location, similar to GEOREF. It is currently under development to replace the printed Bibliography of Marine Geology + + BIBLIOGRAPHY OF MAINE GEOLOGY + This data base is a computer based bibliography of marine geology. It allows searching by topic and geographic location, similar to GEOREF. It is currently under development to replace the printed Bibliography of Marine Geology + + 1 + 11882 + computer: field=description vecf[1] += mult(3) / length(35); idf[1] = log(((1 + total(3))/termoccur(1)); computer: relevance += 100000 * vecf[1](0.085714) * idf[1](1.386294) (11882); score = relevance(11882); - -content: title bibliography of maine geology + + content: title bibliography of maine geology - -GROUNDWATER RESOURCE MAPS - COUNTY SERIES -A series of 1:250,000 scale maps showing well yield, well depth, and depth to bedrock for a large number of bedrock wells inventoried by the Maine Geological Survey in the mid-to late 1970's comprises this data set. Some series also show bedrock topography and potentiometric surface. Geographic coverage is restricted to Southern Maine -GROUNDWATER RESOURCE MAPS - COUNTY SERIES -A series of 1:250,000 scale maps showing well yield, well depth, and depth to bedrock for a large number of bedrock wells inventoried by the Maine Geological Survey in the mid-to late 1970's comprises this data set. Some series also show bedrock topography and potentiometric surface. Geographic coverage is restricted to Southern Maine -0 - + GROUNDWATER RESOURCE MAPS - COUNTY SERIES + A series of 1:250,000 scale maps showing well yield, well depth, and depth to bedrock for a large number of bedrock wells inventoried by the Maine Geological Survey in the mid-to late 1970's comprises this data set. Some series also show bedrock topography and potentiometric surface. Geographic coverage is restricted to Southern Maine + + GROUNDWATER RESOURCE MAPS - COUNTY SERIES + A series of 1:250,000 scale maps showing well yield, well depth, and depth to bedrock for a large number of bedrock wells inventoried by the Maine Geological Survey in the mid-to late 1970's comprises this data set. Some series also show bedrock topography and potentiometric surface. Geographic coverage is restricted to Southern Maine + + 1 + 0 + idf[1] = log(((1 + total(3))/termoccur(1)); computer: relevance += 100000 * vecf[1](0.000000) * idf[1](1.386294) (0); score = relevance(0); - -content: title groundwater resource maps county series + + content: title groundwater resource maps county series - -OIL/GAS DRILLING -This database contains information on oil and gas drilling such as well name, operator, driller, location, depth, copies of logs run, permits, samples (cuttings, core), completion records -OIL/GAS DRILLING -This database contains information on oil and gas drilling such as well name, operator, driller, location, depth, copies of logs run, permits, samples (cuttings, core), completion records -0 - + OIL/GAS DRILLING + This database contains information on oil and gas drilling such as well name, operator, driller, location, depth, copies of logs run, permits, samples (cuttings, core), completion records + + OIL/GAS DRILLING + This database contains information on oil and gas drilling such as well name, operator, driller, location, depth, copies of logs run, permits, samples (cuttings, core), completion records + + 1 + 0 + idf[1] = log(((1 + total(3))/termoccur(1)); computer: relevance += 100000 * vecf[1](0.000000) * idf[1](1.386294) (0); score = relevance(0); - -content: title oil gas drilling + + content: title oil gas drilling \ No newline at end of file diff --git a/test/test_url_10.res b/test/test_url_10.res index 78d7789..697a3a8 100644 --- a/test/test_url_10.res +++ b/test/test_url_10.res @@ -6,73 +6,87 @@ 0 7 - -WATER WELL DATA -This database contains the following information on water wells in Nevada: driller's name, owner's name, location, formations encountered, lithologic descriptions, water level, and water quality -WATER WELL DATA -This database contains the following information on water wells in Nevada: driller's name, owner's name, location, formations encountered, lithologic descriptions, water level, and water quality -1930-PRESENT -content: title water well data author medium book + WATER WELL DATA + This database contains the following information on water wells in Nevada: driller's name, owner's name, location, formations encountered, lithologic descriptions, water level, and water quality + + WATER WELL DATA + This database contains the following information on water wells in Nevada: driller's name, owner's name, location, formations encountered, lithologic descriptions, water level, and water quality + 1930-PRESENT + + 1 + content: title water well data author medium book - -UTAH GEOLOGIC MAP BIBLIOGRAPHY -This collection consists of theses, dissertations, and other unpublished maps as well as published maps of the geology of Utah. Some maps of the collection are xeroxed from limited collections. Cross-sections are included in set. Data file consists of map bibliography -UTAH GEOLOGIC MAP BIBLIOGRAPHY -This collection consists of theses, dissertations, and other unpublished maps as well as published maps of the geology of Utah. Some maps of the collection are xeroxed from limited collections. Cross-sections are included in set. Data file consists of map bibliography --PRESENT -content: title utah geologic map bibliography author medium book + UTAH GEOLOGIC MAP BIBLIOGRAPHY + This collection consists of theses, dissertations, and other unpublished maps as well as published maps of the geology of Utah. Some maps of the collection are xeroxed from limited collections. Cross-sections are included in set. Data file consists of map bibliography + + UTAH GEOLOGIC MAP BIBLIOGRAPHY + This collection consists of theses, dissertations, and other unpublished maps as well as published maps of the geology of Utah. Some maps of the collection are xeroxed from limited collections. Cross-sections are included in set. Data file consists of map bibliography + -PRESENT + + 1 + content: title utah geologic map bibliography author medium book - -UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS -Publications of the Utah Geological and Mineral Survey include reports of investigation, special studies, bulletins, open-file reports, geologic map of Utah, publications of geological societies, geologic and oil and mineral maps, coal monographs, circulars, water resource bulletins, and reprints of articles -UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS -Publications of the Utah Geological and Mineral Survey include reports of investigation, special studies, bulletins, open-file reports, geologic map of Utah, publications of geological societies, geologic and oil and mineral maps, coal monographs, circulars, water resource bulletins, and reprints of articles --PRESENT -content: title utah geological and mineral survey publications author medium book + UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS + Publications of the Utah Geological and Mineral Survey include reports of investigation, special studies, bulletins, open-file reports, geologic map of Utah, publications of geological societies, geologic and oil and mineral maps, coal monographs, circulars, water resource bulletins, and reprints of articles + + UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS + Publications of the Utah Geological and Mineral Survey include reports of investigation, special studies, bulletins, open-file reports, geologic map of Utah, publications of geological societies, geologic and oil and mineral maps, coal monographs, circulars, water resource bulletins, and reprints of articles + -PRESENT + + 1 + content: title utah geological and mineral survey publications author medium book - -UTAH EARTHQUAKE EPICENTERS -Five files of epicenter data arranged by date comprise this data set. These files are searchable by magnitude and longitude/latitude. Hardcopy of listing and plot of requested area available. Epicenter location and date, magnitude, and focal depth available -UTAH EARTHQUAKE EPICENTERS -Five files of epicenter data arranged by date comprise this data set. These files are searchable by magnitude and longitude/latitude. Hardcopy of listing and plot of requested area available. Epicenter location and date, magnitude, and focal depth available --PRESENT -content: title utah earthquake epicenters author medium book + UTAH EARTHQUAKE EPICENTERS + Five files of epicenter data arranged by date comprise this data set. These files are searchable by magnitude and longitude/latitude. Hardcopy of listing and plot of requested area available. Epicenter location and date, magnitude, and focal depth available + + UTAH EARTHQUAKE EPICENTERS + Five files of epicenter data arranged by date comprise this data set. These files are searchable by magnitude and longitude/latitude. Hardcopy of listing and plot of requested area available. Epicenter location and date, magnitude, and focal depth available + -PRESENT + + 1 + content: title utah earthquake epicenters author medium book - -BIBLIOGRAPHY OF MAINE GEOLOGY -This data base is a computer based bibliography of marine geology. It allows searching by topic and geographic location, similar to GEOREF. It is currently under development to replace the printed Bibliography of Marine Geology -BIBLIOGRAPHY OF MAINE GEOLOGY -This data base is a computer based bibliography of marine geology. It allows searching by topic and geographic location, similar to GEOREF. It is currently under development to replace the printed Bibliography of Marine Geology -1692-PRESENT -content: title bibliography of maine geology author medium book + BIBLIOGRAPHY OF MAINE GEOLOGY + This data base is a computer based bibliography of marine geology. It allows searching by topic and geographic location, similar to GEOREF. It is currently under development to replace the printed Bibliography of Marine Geology + + BIBLIOGRAPHY OF MAINE GEOLOGY + This data base is a computer based bibliography of marine geology. It allows searching by topic and geographic location, similar to GEOREF. It is currently under development to replace the printed Bibliography of Marine Geology + 1692-PRESENT + + 1 + content: title bibliography of maine geology author medium book - -AUTOMATED FLOOD WARNING NETWORK -The new system will collect rainfall, temperature, soil moisture, wind speed and direction, humidity, and streamflow (above certain values) -AUTOMATED FLOOD WARNING NETWORK -The new system will collect rainfall, temperature, soil moisture, wind speed and direction, humidity, and streamflow (above certain values) -1982-PRESENT -content: title automated flood warning network author medium book + AUTOMATED FLOOD WARNING NETWORK + The new system will collect rainfall, temperature, soil moisture, wind speed and direction, humidity, and streamflow (above certain values) + + AUTOMATED FLOOD WARNING NETWORK + The new system will collect rainfall, temperature, soil moisture, wind speed and direction, humidity, and streamflow (above certain values) + 1982-PRESENT + + 1 + content: title automated flood warning network author medium book - -APPLIED GEOLOGY FILE -Reports and memorandums completed by the Site Investigation Section comprise this data set. Subjects include geotechnical appraisal of public facility sites before and during construction and evaluations of hazardous waste problems -APPLIED GEOLOGY FILE -Reports and memorandums completed by the Site Investigation Section comprise this data set. Subjects include geotechnical appraisal of public facility sites before and during construction and evaluations of hazardous waste problems -1970-PRESENT -content: title applied geology file author medium book + APPLIED GEOLOGY FILE + Reports and memorandums completed by the Site Investigation Section comprise this data set. Subjects include geotechnical appraisal of public facility sites before and during construction and evaluations of hazardous waste problems + + APPLIED GEOLOGY FILE + Reports and memorandums completed by the Site Investigation Section comprise this data set. Subjects include geotechnical appraisal of public facility sites before and during construction and evaluations of hazardous waste problems + 1970-PRESENT + + 1 + content: title applied geology file author medium book \ No newline at end of file diff --git a/test/test_url_17.res b/test/test_url_17.res index d3ed0e2..b6cede8 100644 --- a/test/test_url_17.res +++ b/test/test_url_17.res @@ -6,101 +6,121 @@ 0 10 - -COAL SAMPLE BANK -This data set contains methane data, chemical analysis data, and petrographic analysis data on core samples in Utah -COAL SAMPLE BANK -This data set contains methane data, chemical analysis data, and petrographic analysis data on core samples in Utah --PRESENT -content: title coal sample bank author medium book + COAL SAMPLE BANK + This data set contains methane data, chemical analysis data, and petrographic analysis data on core samples in Utah + + COAL SAMPLE BANK + This data set contains methane data, chemical analysis data, and petrographic analysis data on core samples in Utah + -PRESENT + + 1 + content: title coal sample bank author medium book - -DAM INVENTORY -The inventory delineates the following: dam name, drainage basin, water course, inspection record, safety status, ownership, and other information -DAM INVENTORY -The inventory delineates the following: dam name, drainage basin, water course, inspection record, safety status, ownership, and other information --PRESENT -content: title dam inventory author medium book + DAM INVENTORY + The inventory delineates the following: dam name, drainage basin, water course, inspection record, safety status, ownership, and other information + + DAM INVENTORY + The inventory delineates the following: dam name, drainage basin, water course, inspection record, safety status, ownership, and other information + -PRESENT + + 1 + content: title dam inventory author medium book - -FRESH WATER WETLANDS MAPS -Contained are a series of 1:50,000 scale maps showing regulated and unregulated fresh water wetlands in the organized territories. Included is a table describing each mapped wetland -FRESH WATER WETLANDS MAPS -Contained are a series of 1:50,000 scale maps showing regulated and unregulated fresh water wetlands in the organized territories. Included is a table describing each mapped wetland -content: title fresh water wetlands maps author medium book + FRESH WATER WETLANDS MAPS + Contained are a series of 1:50,000 scale maps showing regulated and unregulated fresh water wetlands in the organized territories. Included is a table describing each mapped wetland + + FRESH WATER WETLANDS MAPS + Contained are a series of 1:50,000 scale maps showing regulated and unregulated fresh water wetlands in the organized territories. Included is a table describing each mapped wetland + + 1 + content: title fresh water wetlands maps author medium book - -INLAND WETLANDS OF CONNECTICUT -This data set contains inland wetlands, as defined by State statute, which are delineated at a scale of 1:12,000, based predominantly on location of wet soils -INLAND WETLANDS OF CONNECTICUT -This data set contains inland wetlands, as defined by State statute, which are delineated at a scale of 1:12,000, based predominantly on location of wet soils -1972-PRESENT -content: title inland wetlands of connecticut author medium book + INLAND WETLANDS OF CONNECTICUT + This data set contains inland wetlands, as defined by State statute, which are delineated at a scale of 1:12,000, based predominantly on location of wet soils + + INLAND WETLANDS OF CONNECTICUT + This data set contains inland wetlands, as defined by State statute, which are delineated at a scale of 1:12,000, based predominantly on location of wet soils + 1972-PRESENT + + 1 + content: title inland wetlands of connecticut author medium book - -MAINE GEOLOGICAL SURVEY BEDROCK WATER WELL INVENTORY -This data set contains a series of well inventory maps stored on tape. The series has no indexing -MAINE GEOLOGICAL SURVEY BEDROCK WATER WELL INVENTORY -This data set contains a series of well inventory maps stored on tape. The series has no indexing -1972-PRESENT -content: title maine geological survey bedrock water well inventory author medium book + MAINE GEOLOGICAL SURVEY BEDROCK WATER WELL INVENTORY + This data set contains a series of well inventory maps stored on tape. The series has no indexing + + MAINE GEOLOGICAL SURVEY BEDROCK WATER WELL INVENTORY + This data set contains a series of well inventory maps stored on tape. The series has no indexing + 1972-PRESENT + + 1 + content: title maine geological survey bedrock water well inventory author medium book - -STATEWIDE PLANNING -This data set contains: 1970 digitized land use maps, 1970 digitized zoning maps, active agricultural areas maps (1979-1980), maps displaying current National Flood Insurance Program data, locational guide map of the State Policies Plan for Conservation and Development of Connecticut (1987-1992), 1970 land use statistical data and 1970 municipal zoning data, proposed sewer service areas maps (1978) - DEP has update of this information, water conservation handbooks, and various reports and maps of the areawide Waste Treatment Management Planning Program (208) -STATEWIDE PLANNING -This data set contains: 1970 digitized land use maps, 1970 digitized zoning maps, active agricultural areas maps (1979-1980), maps displaying current National Flood Insurance Program data, locational guide map of the State Policies Plan for Conservation and Development of Connecticut (1987-1992), 1970 land use statistical data and 1970 municipal zoning data, proposed sewer service areas maps (1978) - DEP has update of this information, water conservation handbooks, and various reports and maps of the areawide Waste Treatment Management Planning Program (208) -1960-PRESENT -content: title statewide planning author medium book + STATEWIDE PLANNING + This data set contains: 1970 digitized land use maps, 1970 digitized zoning maps, active agricultural areas maps (1979-1980), maps displaying current National Flood Insurance Program data, locational guide map of the State Policies Plan for Conservation and Development of Connecticut (1987-1992), 1970 land use statistical data and 1970 municipal zoning data, proposed sewer service areas maps (1978) - DEP has update of this information, water conservation handbooks, and various reports and maps of the areawide Waste Treatment Management Planning Program (208) + + STATEWIDE PLANNING + This data set contains: 1970 digitized land use maps, 1970 digitized zoning maps, active agricultural areas maps (1979-1980), maps displaying current National Flood Insurance Program data, locational guide map of the State Policies Plan for Conservation and Development of Connecticut (1987-1992), 1970 land use statistical data and 1970 municipal zoning data, proposed sewer service areas maps (1978) - DEP has update of this information, water conservation handbooks, and various reports and maps of the areawide Waste Treatment Management Planning Program (208) + 1960-PRESENT + + 1 + content: title statewide planning author medium book - -STREAM CHANNEL ENCROACHMENT LINE STUDIES -Detailed engineering studies and large-scale mapping delineating high flow zones for regulation by the State are contained in this data set -STREAM CHANNEL ENCROACHMENT LINE STUDIES -Detailed engineering studies and large-scale mapping delineating high flow zones for regulation by the State are contained in this data set -content: title stream channel encroachment line studies author medium book + STREAM CHANNEL ENCROACHMENT LINE STUDIES + Detailed engineering studies and large-scale mapping delineating high flow zones for regulation by the State are contained in this data set + + STREAM CHANNEL ENCROACHMENT LINE STUDIES + Detailed engineering studies and large-scale mapping delineating high flow zones for regulation by the State are contained in this data set + + 1 + content: title stream channel encroachment line studies author medium book - -TIDAL (COASTAL) WETLAND OF CONNECTICUT -Tidal wetlands, as defined by State statute, which are delineated by engineering survey at a scale of 1:24,000 comprise this data set -TIDAL (COASTAL) WETLAND OF CONNECTICUT -Tidal wetlands, as defined by State statute, which are delineated by engineering survey at a scale of 1:24,000 comprise this data set -1972-PRESENT -content: title tidal coastal wetland of connecticut author medium book + TIDAL (COASTAL) WETLAND OF CONNECTICUT + Tidal wetlands, as defined by State statute, which are delineated by engineering survey at a scale of 1:24,000 comprise this data set + + TIDAL (COASTAL) WETLAND OF CONNECTICUT + Tidal wetlands, as defined by State statute, which are delineated by engineering survey at a scale of 1:24,000 comprise this data set + 1972-PRESENT + + 1 + content: title tidal coastal wetland of connecticut author medium book - -UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS -Publications of the Utah Geological and Mineral Survey include reports of investigation, special studies, bulletins, open-file reports, geologic map of Utah, publications of geological societies, geologic and oil and mineral maps, coal monographs, circulars, water resource bulletins, and reprints of articles -UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS -Publications of the Utah Geological and Mineral Survey include reports of investigation, special studies, bulletins, open-file reports, geologic map of Utah, publications of geological societies, geologic and oil and mineral maps, coal monographs, circulars, water resource bulletins, and reprints of articles --PRESENT -content: title utah geological and mineral survey publications author medium book + UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS + Publications of the Utah Geological and Mineral Survey include reports of investigation, special studies, bulletins, open-file reports, geologic map of Utah, publications of geological societies, geologic and oil and mineral maps, coal monographs, circulars, water resource bulletins, and reprints of articles + + UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS + Publications of the Utah Geological and Mineral Survey include reports of investigation, special studies, bulletins, open-file reports, geologic map of Utah, publications of geological societies, geologic and oil and mineral maps, coal monographs, circulars, water resource bulletins, and reprints of articles + -PRESENT + + 1 + content: title utah geological and mineral survey publications author medium book - -WATER WELL DATA -This database contains the following information on water wells in Nevada: driller's name, owner's name, location, formations encountered, lithologic descriptions, water level, and water quality -WATER WELL DATA -This database contains the following information on water wells in Nevada: driller's name, owner's name, location, formations encountered, lithologic descriptions, water level, and water quality -1930-PRESENT -content: title water well data author medium book + WATER WELL DATA + This database contains the following information on water wells in Nevada: driller's name, owner's name, location, formations encountered, lithologic descriptions, water level, and water quality + + WATER WELL DATA + This database contains the following information on water wells in Nevada: driller's name, owner's name, location, formations encountered, lithologic descriptions, water level, and water quality + 1930-PRESENT + + 1 + content: title water well data author medium book \ No newline at end of file diff --git a/test/test_url_18.res b/test/test_url_18.res index 45ddc45..9af6f33 100644 --- a/test/test_url_18.res +++ b/test/test_url_18.res @@ -6,101 +6,121 @@ 0 10 - -STATEWIDE PLANNING -This data set contains: 1970 digitized land use maps, 1970 digitized zoning maps, active agricultural areas maps (1979-1980), maps displaying current National Flood Insurance Program data, locational guide map of the State Policies Plan for Conservation and Development of Connecticut (1987-1992), 1970 land use statistical data and 1970 municipal zoning data, proposed sewer service areas maps (1978) - DEP has update of this information, water conservation handbooks, and various reports and maps of the areawide Waste Treatment Management Planning Program (208) -STATEWIDE PLANNING -This data set contains: 1970 digitized land use maps, 1970 digitized zoning maps, active agricultural areas maps (1979-1980), maps displaying current National Flood Insurance Program data, locational guide map of the State Policies Plan for Conservation and Development of Connecticut (1987-1992), 1970 land use statistical data and 1970 municipal zoning data, proposed sewer service areas maps (1978) - DEP has update of this information, water conservation handbooks, and various reports and maps of the areawide Waste Treatment Management Planning Program (208) -1960-PRESENT -content: title statewide planning author medium book + STATEWIDE PLANNING + This data set contains: 1970 digitized land use maps, 1970 digitized zoning maps, active agricultural areas maps (1979-1980), maps displaying current National Flood Insurance Program data, locational guide map of the State Policies Plan for Conservation and Development of Connecticut (1987-1992), 1970 land use statistical data and 1970 municipal zoning data, proposed sewer service areas maps (1978) - DEP has update of this information, water conservation handbooks, and various reports and maps of the areawide Waste Treatment Management Planning Program (208) + + STATEWIDE PLANNING + This data set contains: 1970 digitized land use maps, 1970 digitized zoning maps, active agricultural areas maps (1979-1980), maps displaying current National Flood Insurance Program data, locational guide map of the State Policies Plan for Conservation and Development of Connecticut (1987-1992), 1970 land use statistical data and 1970 municipal zoning data, proposed sewer service areas maps (1978) - DEP has update of this information, water conservation handbooks, and various reports and maps of the areawide Waste Treatment Management Planning Program (208) + 1960-PRESENT + + 1 + content: title statewide planning author medium book - -WATER WELL DATA -This database contains the following information on water wells in Nevada: driller's name, owner's name, location, formations encountered, lithologic descriptions, water level, and water quality -WATER WELL DATA -This database contains the following information on water wells in Nevada: driller's name, owner's name, location, formations encountered, lithologic descriptions, water level, and water quality -1930-PRESENT -content: title water well data author medium book + WATER WELL DATA + This database contains the following information on water wells in Nevada: driller's name, owner's name, location, formations encountered, lithologic descriptions, water level, and water quality + + WATER WELL DATA + This database contains the following information on water wells in Nevada: driller's name, owner's name, location, formations encountered, lithologic descriptions, water level, and water quality + 1930-PRESENT + + 1 + content: title water well data author medium book - -UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS -Publications of the Utah Geological and Mineral Survey include reports of investigation, special studies, bulletins, open-file reports, geologic map of Utah, publications of geological societies, geologic and oil and mineral maps, coal monographs, circulars, water resource bulletins, and reprints of articles -UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS -Publications of the Utah Geological and Mineral Survey include reports of investigation, special studies, bulletins, open-file reports, geologic map of Utah, publications of geological societies, geologic and oil and mineral maps, coal monographs, circulars, water resource bulletins, and reprints of articles --PRESENT -content: title utah geological and mineral survey publications author medium book + UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS + Publications of the Utah Geological and Mineral Survey include reports of investigation, special studies, bulletins, open-file reports, geologic map of Utah, publications of geological societies, geologic and oil and mineral maps, coal monographs, circulars, water resource bulletins, and reprints of articles + + UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS + Publications of the Utah Geological and Mineral Survey include reports of investigation, special studies, bulletins, open-file reports, geologic map of Utah, publications of geological societies, geologic and oil and mineral maps, coal monographs, circulars, water resource bulletins, and reprints of articles + -PRESENT + + 1 + content: title utah geological and mineral survey publications author medium book - -COAL SAMPLE BANK -This data set contains methane data, chemical analysis data, and petrographic analysis data on core samples in Utah -COAL SAMPLE BANK -This data set contains methane data, chemical analysis data, and petrographic analysis data on core samples in Utah --PRESENT -content: title coal sample bank author medium book + COAL SAMPLE BANK + This data set contains methane data, chemical analysis data, and petrographic analysis data on core samples in Utah + + COAL SAMPLE BANK + This data set contains methane data, chemical analysis data, and petrographic analysis data on core samples in Utah + -PRESENT + + 1 + content: title coal sample bank author medium book - -FRESH WATER WETLANDS MAPS -Contained are a series of 1:50,000 scale maps showing regulated and unregulated fresh water wetlands in the organized territories. Included is a table describing each mapped wetland -FRESH WATER WETLANDS MAPS -Contained are a series of 1:50,000 scale maps showing regulated and unregulated fresh water wetlands in the organized territories. Included is a table describing each mapped wetland -content: title fresh water wetlands maps author medium book + FRESH WATER WETLANDS MAPS + Contained are a series of 1:50,000 scale maps showing regulated and unregulated fresh water wetlands in the organized territories. Included is a table describing each mapped wetland + + FRESH WATER WETLANDS MAPS + Contained are a series of 1:50,000 scale maps showing regulated and unregulated fresh water wetlands in the organized territories. Included is a table describing each mapped wetland + + 1 + content: title fresh water wetlands maps author medium book - -MAINE GEOLOGICAL SURVEY BEDROCK WATER WELL INVENTORY -This data set contains a series of well inventory maps stored on tape. The series has no indexing -MAINE GEOLOGICAL SURVEY BEDROCK WATER WELL INVENTORY -This data set contains a series of well inventory maps stored on tape. The series has no indexing -1972-PRESENT -content: title maine geological survey bedrock water well inventory author medium book + MAINE GEOLOGICAL SURVEY BEDROCK WATER WELL INVENTORY + This data set contains a series of well inventory maps stored on tape. The series has no indexing + + MAINE GEOLOGICAL SURVEY BEDROCK WATER WELL INVENTORY + This data set contains a series of well inventory maps stored on tape. The series has no indexing + 1972-PRESENT + + 1 + content: title maine geological survey bedrock water well inventory author medium book - -INLAND WETLANDS OF CONNECTICUT -This data set contains inland wetlands, as defined by State statute, which are delineated at a scale of 1:12,000, based predominantly on location of wet soils -INLAND WETLANDS OF CONNECTICUT -This data set contains inland wetlands, as defined by State statute, which are delineated at a scale of 1:12,000, based predominantly on location of wet soils -1972-PRESENT -content: title inland wetlands of connecticut author medium book + INLAND WETLANDS OF CONNECTICUT + This data set contains inland wetlands, as defined by State statute, which are delineated at a scale of 1:12,000, based predominantly on location of wet soils + + INLAND WETLANDS OF CONNECTICUT + This data set contains inland wetlands, as defined by State statute, which are delineated at a scale of 1:12,000, based predominantly on location of wet soils + 1972-PRESENT + + 1 + content: title inland wetlands of connecticut author medium book - -STREAM CHANNEL ENCROACHMENT LINE STUDIES -Detailed engineering studies and large-scale mapping delineating high flow zones for regulation by the State are contained in this data set -STREAM CHANNEL ENCROACHMENT LINE STUDIES -Detailed engineering studies and large-scale mapping delineating high flow zones for regulation by the State are contained in this data set -content: title stream channel encroachment line studies author medium book + STREAM CHANNEL ENCROACHMENT LINE STUDIES + Detailed engineering studies and large-scale mapping delineating high flow zones for regulation by the State are contained in this data set + + STREAM CHANNEL ENCROACHMENT LINE STUDIES + Detailed engineering studies and large-scale mapping delineating high flow zones for regulation by the State are contained in this data set + + 1 + content: title stream channel encroachment line studies author medium book - -DAM INVENTORY -The inventory delineates the following: dam name, drainage basin, water course, inspection record, safety status, ownership, and other information -DAM INVENTORY -The inventory delineates the following: dam name, drainage basin, water course, inspection record, safety status, ownership, and other information --PRESENT -content: title dam inventory author medium book + DAM INVENTORY + The inventory delineates the following: dam name, drainage basin, water course, inspection record, safety status, ownership, and other information + + DAM INVENTORY + The inventory delineates the following: dam name, drainage basin, water course, inspection record, safety status, ownership, and other information + -PRESENT + + 1 + content: title dam inventory author medium book - -TIDAL (COASTAL) WETLAND OF CONNECTICUT -Tidal wetlands, as defined by State statute, which are delineated by engineering survey at a scale of 1:24,000 comprise this data set -TIDAL (COASTAL) WETLAND OF CONNECTICUT -Tidal wetlands, as defined by State statute, which are delineated by engineering survey at a scale of 1:24,000 comprise this data set -1972-PRESENT -content: title tidal coastal wetland of connecticut author medium book + TIDAL (COASTAL) WETLAND OF CONNECTICUT + Tidal wetlands, as defined by State statute, which are delineated by engineering survey at a scale of 1:24,000 comprise this data set + + TIDAL (COASTAL) WETLAND OF CONNECTICUT + Tidal wetlands, as defined by State statute, which are delineated by engineering survey at a scale of 1:24,000 comprise this data set + 1972-PRESENT + + 1 + content: title tidal coastal wetland of connecticut author medium book \ No newline at end of file diff --git a/test/test_url_3.res b/test/test_url_3.res index 5be1e22..d46448f 100644 --- a/test/test_url_3.res +++ b/test/test_url_3.res @@ -6,182 +6,200 @@ 0 9 - -How to program a computer -Jack Collins -How to program a computer -Jack Collins - -How to program a computer -Jack Collins -2 -48160 - + How to program a computer + Jack Collins + + How to program a computer + Jack Collins + + + How to program a computer + Jack Collins + + 2 + 48160 + computer: field=title vecf[1] += mult(6) / length(5); computer: field=title vecf[1] += mult(6) / length(5); idf[1] = log(((1 + total(10))/termoccur(9)); computer: relevance += 100000 * vecf[1](2.400000) * idf[1](0.200671) (48160); score = relevance(48160); - -content: title how to program a computer author jack collins medium book + + content: title how to program a computer author jack collins medium book - -The Computer Bible -1973-1980 -Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates -The Computer Bible -1973-1980 -Hebrew and Greek; introductions in English -Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates -40134 - + The Computer Bible + 1973-1980 + Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates + + The Computer Bible + 1973-1980 + Hebrew and Greek; introductions in English + Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates + + 1 + 40134 + computer: field=title vecf[1] += mult(6) / length(3); idf[1] = log(((1 + total(10))/termoccur(9)); computer: relevance += 100000 * vecf[1](2.000000) * idf[1](0.200671) (40134); score = relevance(40134); - -content: title the computer bible author medium book + + content: title the computer bible author medium book - -Computer science & technology -proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 -1977 -Computer science & technology -proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 -1977 -30100 - + Computer science & technology + proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 + 1977 + + Computer science & technology + proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 + 1977 + + 1 + 30100 + computer: field=title vecf[1] += mult(6) / length(4); idf[1] = log(((1 + total(10))/termoccur(9)); computer: relevance += 100000 * vecf[1](1.500000) * idf[1](0.200671) (30100); score = relevance(30100); - -content: title computer science technology author medium book + + content: title computer science technology author medium book - -A plan for community college computer development -1971 -Cover title -A plan for community college computer development -1971 -Cover title -17200 - + A plan for community college computer development + 1971 + Cover title + + A plan for community college computer development + 1971 + Cover title + + 1 + 17200 + computer: field=title vecf[1] += mult(6) / length(7); idf[1] = log(((1 + total(10))/termoccur(9)); computer: relevance += 100000 * vecf[1](0.857143) * idf[1](0.200671) (17200); score = relevance(17200); - -content: title a plan for community college computer development author medium book + + content: title a plan for community college computer development author medium book - -Washington metropolitan area rail computer feasibility study; -final report -1971 -Englund, Carl R -"Contract DOT-UT-10003." -Washington metropolitan area rail computer feasibility study; -final report -1971 -Englund, Carl R -"Contract DOT-UT-10003." -17200 - + Washington metropolitan area rail computer feasibility study; + final report + 1971 + Englund, Carl R + "Contract DOT-UT-10003." + + Washington metropolitan area rail computer feasibility study; + final report + 1971 + Englund, Carl R + "Contract DOT-UT-10003." + + 1 + 17200 + computer: field=title vecf[1] += mult(6) / length(7); idf[1] = log(((1 + total(10))/termoccur(9)); computer: relevance += 100000 * vecf[1](0.857143) * idf[1](0.200671) (17200); score = relevance(17200); - -content: title washington metropolitan area rail computer feasibility study author englund carl r medium book + + content: title washington metropolitan area rail computer feasibility study author englund carl r medium book - -The Puget Sound Region -a portfolio of thematic computer maps -1974 -Mairs, John W -Scale of maps ca. 1:1,000,000 -The Puget Sound Region -a portfolio of thematic computer maps -1974 -Mairs, John W -Scale of maps ca. 1:1,000,000 -Bibliography: p. 4 -16722 - + The Puget Sound Region + a portfolio of thematic computer maps + 1974 + Mairs, John W + Scale of maps ca. 1:1,000,000 + + The Puget Sound Region + a portfolio of thematic computer maps + 1974 + Mairs, John W + Scale of maps ca. 1:1,000,000 + Bibliography: p. 4 + + 1 + 16722 + computer: field=title-remainder vecf[1] += mult(5) / length(6); idf[1] = log(((1 + total(10))/termoccur(9)); computer: relevance += 100000 * vecf[1](0.833333) * idf[1](0.200671) (16722); score = relevance(16722); - -content: title the puget sound region author mairs john w medium book + + content: title the puget sound region author mairs john w medium book - -Computer processing of dynamic images from an Anger scintillation camera -the proceedings of a workshop -1974 -Includes bibliographical references and index -Computer processing of dynamic images from an Anger scintillation camera -the proceedings of a workshop -1974 -Includes bibliographical references and index -12040 - + Computer processing of dynamic images from an Anger scintillation camera + the proceedings of a workshop + 1974 + Includes bibliographical references and index + + Computer processing of dynamic images from an Anger scintillation camera + the proceedings of a workshop + 1974 + Includes bibliographical references and index + + 1 + 12040 + computer: field=title vecf[1] += mult(6) / length(10); idf[1] = log(((1 + total(10))/termoccur(9)); computer: relevance += 100000 * vecf[1](0.600000) * idf[1](0.200671) (12040); score = relevance(12040); - -content: title computer processing of dynamic images from an anger scintillation camera author medium book + + content: title computer processing of dynamic images from an anger scintillation camera author medium book - -The use of passwords for controlled access to computer resources -1977 -Wood, Helen M -The use of passwords for controlled access to computer resources -1977 -Wood, Helen M -12040 - + The use of passwords for controlled access to computer resources + 1977 + Wood, Helen M + + The use of passwords for controlled access to computer resources + 1977 + Wood, Helen M + + 1 + 12040 + computer: field=title vecf[1] += mult(6) / length(10); idf[1] = log(((1 + total(10))/termoccur(9)); computer: relevance += 100000 * vecf[1](0.600000) * idf[1](0.200671) (12040); score = relevance(12040); - -content: title the use of passwords for controlled access to computer resources author wood helen m medium book + + content: title the use of passwords for controlled access to computer resources author wood helen m medium book - -Reconstruction tomography in diagnostic radiology and nuclear medicine -proceedings of the workshop -1977 -Includes bibliographical references and index -Reconstruction tomography in diagnostic radiology and nuclear medicine -proceedings of the workshop -1977 -Includes bibliographical references and index -0 - + Reconstruction tomography in diagnostic radiology and nuclear medicine + proceedings of the workshop + 1977 + Includes bibliographical references and index + + Reconstruction tomography in diagnostic radiology and nuclear medicine + proceedings of the workshop + 1977 + Includes bibliographical references and index + + 1 + 0 + idf[1] = log(((1 + total(10))/termoccur(9)); computer: relevance += 100000 * vecf[1](0.000000) * idf[1](0.200671) (0); score = relevance(0); - -content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book + + content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book \ No newline at end of file diff --git a/test/test_url_6.res b/test/test_url_6.res index 9d2c38c..1d54553 100644 --- a/test/test_url_6.res +++ b/test/test_url_6.res @@ -6,53 +6,59 @@ 0 3 - -APPLIED GEOLOGY FILE -Reports and memorandums completed by the Site Investigation Section comprise this data set. Subjects include geotechnical appraisal of public facility sites before and during construction and evaluations of hazardous waste problems -APPLIED GEOLOGY FILE -Reports and memorandums completed by the Site Investigation Section comprise this data set. Subjects include geotechnical appraisal of public facility sites before and during construction and evaluations of hazardous waste problems -1970-PRESENT -6707 - + APPLIED GEOLOGY FILE + Reports and memorandums completed by the Site Investigation Section comprise this data set. Subjects include geotechnical appraisal of public facility sites before and during construction and evaluations of hazardous waste problems + + APPLIED GEOLOGY FILE + Reports and memorandums completed by the Site Investigation Section comprise this data set. Subjects include geotechnical appraisal of public facility sites before and during construction and evaluations of hazardous waste problems + 1970-PRESENT + + 1 + 6707 + the: field=description vecf[1] += mult(3) / length(31); idf[1] = log(((1 + total(3))/termoccur(2)); the: relevance += 100000 * vecf[1](0.096774) * idf[1](0.693147) (6707); score = relevance(6707); - -content: title applied geology file author medium book + + content: title applied geology file author medium book - -UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS -Publications of the Utah Geological and Mineral Survey include reports of investigation, special studies, bulletins, open-file reports, geologic map of Utah, publications of geological societies, geologic and oil and mineral maps, coal monographs, circulars, water resource bulletins, and reprints of articles -UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS -Publications of the Utah Geological and Mineral Survey include reports of investigation, special studies, bulletins, open-file reports, geologic map of Utah, publications of geological societies, geologic and oil and mineral maps, coal monographs, circulars, water resource bulletins, and reprints of articles --PRESENT -4951 - + UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS + Publications of the Utah Geological and Mineral Survey include reports of investigation, special studies, bulletins, open-file reports, geologic map of Utah, publications of geological societies, geologic and oil and mineral maps, coal monographs, circulars, water resource bulletins, and reprints of articles + + UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS + Publications of the Utah Geological and Mineral Survey include reports of investigation, special studies, bulletins, open-file reports, geologic map of Utah, publications of geological societies, geologic and oil and mineral maps, coal monographs, circulars, water resource bulletins, and reprints of articles + -PRESENT + + 1 + 4951 + the: field=description vecf[1] += mult(3) / length(42); idf[1] = log(((1 + total(3))/termoccur(2)); the: relevance += 100000 * vecf[1](0.071429) * idf[1](0.693147) (4951); score = relevance(4951); - -content: title utah geological and mineral survey publications author medium book + + content: title utah geological and mineral survey publications author medium book - -UTAH EARTHQUAKE EPICENTERS -Five files of epicenter data arranged by date comprise this data set. These files are searchable by magnitude and longitude/latitude. Hardcopy of listing and plot of requested area available. Epicenter location and date, magnitude, and focal depth available -UTAH EARTHQUAKE EPICENTERS -Five files of epicenter data arranged by date comprise this data set. These files are searchable by magnitude and longitude/latitude. Hardcopy of listing and plot of requested area available. Epicenter location and date, magnitude, and focal depth available --PRESENT -0 - + UTAH EARTHQUAKE EPICENTERS + Five files of epicenter data arranged by date comprise this data set. These files are searchable by magnitude and longitude/latitude. Hardcopy of listing and plot of requested area available. Epicenter location and date, magnitude, and focal depth available + + UTAH EARTHQUAKE EPICENTERS + Five files of epicenter data arranged by date comprise this data set. These files are searchable by magnitude and longitude/latitude. Hardcopy of listing and plot of requested area available. Epicenter location and date, magnitude, and focal depth available + -PRESENT + + 1 + 0 + idf[1] = log(((1 + total(3))/termoccur(2)); the: relevance += 100000 * vecf[1](0.000000) * idf[1](0.693147) (0); score = relevance(0); - -content: title utah earthquake epicenters author medium book + + content: title utah earthquake epicenters author medium book \ No newline at end of file diff --git a/test/test_url_7.res b/test/test_url_7.res index 8aa180e..d0057f9 100644 --- a/test/test_url_7.res +++ b/test/test_url_7.res @@ -6,53 +6,63 @@ 0 5 - -APPLIED GEOLOGY FILE -Reports and memorandums completed by the Site Investigation Section comprise this data set. Subjects include geotechnical appraisal of public facility sites before and during construction and evaluations of hazardous waste problems -APPLIED GEOLOGY FILE -Reports and memorandums completed by the Site Investigation Section comprise this data set. Subjects include geotechnical appraisal of public facility sites before and during construction and evaluations of hazardous waste problems -1970-PRESENT -content: title applied geology file author medium book + APPLIED GEOLOGY FILE + Reports and memorandums completed by the Site Investigation Section comprise this data set. Subjects include geotechnical appraisal of public facility sites before and during construction and evaluations of hazardous waste problems + + APPLIED GEOLOGY FILE + Reports and memorandums completed by the Site Investigation Section comprise this data set. Subjects include geotechnical appraisal of public facility sites before and during construction and evaluations of hazardous waste problems + 1970-PRESENT + + 1 + content: title applied geology file author medium book - -AUTOMATED FLOOD WARNING NETWORK -The new system will collect rainfall, temperature, soil moisture, wind speed and direction, humidity, and streamflow (above certain values) -AUTOMATED FLOOD WARNING NETWORK -The new system will collect rainfall, temperature, soil moisture, wind speed and direction, humidity, and streamflow (above certain values) -1982-PRESENT -content: title automated flood warning network author medium book + AUTOMATED FLOOD WARNING NETWORK + The new system will collect rainfall, temperature, soil moisture, wind speed and direction, humidity, and streamflow (above certain values) + + AUTOMATED FLOOD WARNING NETWORK + The new system will collect rainfall, temperature, soil moisture, wind speed and direction, humidity, and streamflow (above certain values) + 1982-PRESENT + + 1 + content: title automated flood warning network author medium book - -BIBLIOGRAPHY OF MAINE GEOLOGY -This data base is a computer based bibliography of marine geology. It allows searching by topic and geographic location, similar to GEOREF. It is currently under development to replace the printed Bibliography of Marine Geology -BIBLIOGRAPHY OF MAINE GEOLOGY -This data base is a computer based bibliography of marine geology. It allows searching by topic and geographic location, similar to GEOREF. It is currently under development to replace the printed Bibliography of Marine Geology -1692-PRESENT -content: title bibliography of maine geology author medium book + BIBLIOGRAPHY OF MAINE GEOLOGY + This data base is a computer based bibliography of marine geology. It allows searching by topic and geographic location, similar to GEOREF. It is currently under development to replace the printed Bibliography of Marine Geology + + BIBLIOGRAPHY OF MAINE GEOLOGY + This data base is a computer based bibliography of marine geology. It allows searching by topic and geographic location, similar to GEOREF. It is currently under development to replace the printed Bibliography of Marine Geology + 1692-PRESENT + + 1 + content: title bibliography of maine geology author medium book - -UTAH EARTHQUAKE EPICENTERS -Five files of epicenter data arranged by date comprise this data set. These files are searchable by magnitude and longitude/latitude. Hardcopy of listing and plot of requested area available. Epicenter location and date, magnitude, and focal depth available -UTAH EARTHQUAKE EPICENTERS -Five files of epicenter data arranged by date comprise this data set. These files are searchable by magnitude and longitude/latitude. Hardcopy of listing and plot of requested area available. Epicenter location and date, magnitude, and focal depth available --PRESENT -content: title utah earthquake epicenters author medium book + UTAH EARTHQUAKE EPICENTERS + Five files of epicenter data arranged by date comprise this data set. These files are searchable by magnitude and longitude/latitude. Hardcopy of listing and plot of requested area available. Epicenter location and date, magnitude, and focal depth available + + UTAH EARTHQUAKE EPICENTERS + Five files of epicenter data arranged by date comprise this data set. These files are searchable by magnitude and longitude/latitude. Hardcopy of listing and plot of requested area available. Epicenter location and date, magnitude, and focal depth available + -PRESENT + + 1 + content: title utah earthquake epicenters author medium book - -UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS -Publications of the Utah Geological and Mineral Survey include reports of investigation, special studies, bulletins, open-file reports, geologic map of Utah, publications of geological societies, geologic and oil and mineral maps, coal monographs, circulars, water resource bulletins, and reprints of articles -UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS -Publications of the Utah Geological and Mineral Survey include reports of investigation, special studies, bulletins, open-file reports, geologic map of Utah, publications of geological societies, geologic and oil and mineral maps, coal monographs, circulars, water resource bulletins, and reprints of articles --PRESENT -content: title utah geological and mineral survey publications author medium book + UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS + Publications of the Utah Geological and Mineral Survey include reports of investigation, special studies, bulletins, open-file reports, geologic map of Utah, publications of geological societies, geologic and oil and mineral maps, coal monographs, circulars, water resource bulletins, and reprints of articles + + UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS + Publications of the Utah Geological and Mineral Survey include reports of investigation, special studies, bulletins, open-file reports, geologic map of Utah, publications of geological societies, geologic and oil and mineral maps, coal monographs, circulars, water resource bulletins, and reprints of articles + -PRESENT + + 1 + content: title utah geological and mineral survey publications author medium book \ No newline at end of file diff --git a/test/test_url_8.res b/test/test_url_8.res index 8aa180e..d0057f9 100644 --- a/test/test_url_8.res +++ b/test/test_url_8.res @@ -6,53 +6,63 @@ 0 5 - -APPLIED GEOLOGY FILE -Reports and memorandums completed by the Site Investigation Section comprise this data set. Subjects include geotechnical appraisal of public facility sites before and during construction and evaluations of hazardous waste problems -APPLIED GEOLOGY FILE -Reports and memorandums completed by the Site Investigation Section comprise this data set. Subjects include geotechnical appraisal of public facility sites before and during construction and evaluations of hazardous waste problems -1970-PRESENT -content: title applied geology file author medium book + APPLIED GEOLOGY FILE + Reports and memorandums completed by the Site Investigation Section comprise this data set. Subjects include geotechnical appraisal of public facility sites before and during construction and evaluations of hazardous waste problems + + APPLIED GEOLOGY FILE + Reports and memorandums completed by the Site Investigation Section comprise this data set. Subjects include geotechnical appraisal of public facility sites before and during construction and evaluations of hazardous waste problems + 1970-PRESENT + + 1 + content: title applied geology file author medium book - -AUTOMATED FLOOD WARNING NETWORK -The new system will collect rainfall, temperature, soil moisture, wind speed and direction, humidity, and streamflow (above certain values) -AUTOMATED FLOOD WARNING NETWORK -The new system will collect rainfall, temperature, soil moisture, wind speed and direction, humidity, and streamflow (above certain values) -1982-PRESENT -content: title automated flood warning network author medium book + AUTOMATED FLOOD WARNING NETWORK + The new system will collect rainfall, temperature, soil moisture, wind speed and direction, humidity, and streamflow (above certain values) + + AUTOMATED FLOOD WARNING NETWORK + The new system will collect rainfall, temperature, soil moisture, wind speed and direction, humidity, and streamflow (above certain values) + 1982-PRESENT + + 1 + content: title automated flood warning network author medium book - -BIBLIOGRAPHY OF MAINE GEOLOGY -This data base is a computer based bibliography of marine geology. It allows searching by topic and geographic location, similar to GEOREF. It is currently under development to replace the printed Bibliography of Marine Geology -BIBLIOGRAPHY OF MAINE GEOLOGY -This data base is a computer based bibliography of marine geology. It allows searching by topic and geographic location, similar to GEOREF. It is currently under development to replace the printed Bibliography of Marine Geology -1692-PRESENT -content: title bibliography of maine geology author medium book + BIBLIOGRAPHY OF MAINE GEOLOGY + This data base is a computer based bibliography of marine geology. It allows searching by topic and geographic location, similar to GEOREF. It is currently under development to replace the printed Bibliography of Marine Geology + + BIBLIOGRAPHY OF MAINE GEOLOGY + This data base is a computer based bibliography of marine geology. It allows searching by topic and geographic location, similar to GEOREF. It is currently under development to replace the printed Bibliography of Marine Geology + 1692-PRESENT + + 1 + content: title bibliography of maine geology author medium book - -UTAH EARTHQUAKE EPICENTERS -Five files of epicenter data arranged by date comprise this data set. These files are searchable by magnitude and longitude/latitude. Hardcopy of listing and plot of requested area available. Epicenter location and date, magnitude, and focal depth available -UTAH EARTHQUAKE EPICENTERS -Five files of epicenter data arranged by date comprise this data set. These files are searchable by magnitude and longitude/latitude. Hardcopy of listing and plot of requested area available. Epicenter location and date, magnitude, and focal depth available --PRESENT -content: title utah earthquake epicenters author medium book + UTAH EARTHQUAKE EPICENTERS + Five files of epicenter data arranged by date comprise this data set. These files are searchable by magnitude and longitude/latitude. Hardcopy of listing and plot of requested area available. Epicenter location and date, magnitude, and focal depth available + + UTAH EARTHQUAKE EPICENTERS + Five files of epicenter data arranged by date comprise this data set. These files are searchable by magnitude and longitude/latitude. Hardcopy of listing and plot of requested area available. Epicenter location and date, magnitude, and focal depth available + -PRESENT + + 1 + content: title utah earthquake epicenters author medium book - -UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS -Publications of the Utah Geological and Mineral Survey include reports of investigation, special studies, bulletins, open-file reports, geologic map of Utah, publications of geological societies, geologic and oil and mineral maps, coal monographs, circulars, water resource bulletins, and reprints of articles -UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS -Publications of the Utah Geological and Mineral Survey include reports of investigation, special studies, bulletins, open-file reports, geologic map of Utah, publications of geological societies, geologic and oil and mineral maps, coal monographs, circulars, water resource bulletins, and reprints of articles --PRESENT -content: title utah geological and mineral survey publications author medium book + UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS + Publications of the Utah Geological and Mineral Survey include reports of investigation, special studies, bulletins, open-file reports, geologic map of Utah, publications of geological societies, geologic and oil and mineral maps, coal monographs, circulars, water resource bulletins, and reprints of articles + + UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS + Publications of the Utah Geological and Mineral Survey include reports of investigation, special studies, bulletins, open-file reports, geologic map of Utah, publications of geological societies, geologic and oil and mineral maps, coal monographs, circulars, water resource bulletins, and reprints of articles + -PRESENT + + 1 + content: title utah geological and mineral survey publications author medium book \ No newline at end of file diff --git a/test/test_url_9.res b/test/test_url_9.res index 78d7789..697a3a8 100644 --- a/test/test_url_9.res +++ b/test/test_url_9.res @@ -6,73 +6,87 @@ 0 7 - -WATER WELL DATA -This database contains the following information on water wells in Nevada: driller's name, owner's name, location, formations encountered, lithologic descriptions, water level, and water quality -WATER WELL DATA -This database contains the following information on water wells in Nevada: driller's name, owner's name, location, formations encountered, lithologic descriptions, water level, and water quality -1930-PRESENT -content: title water well data author medium book + WATER WELL DATA + This database contains the following information on water wells in Nevada: driller's name, owner's name, location, formations encountered, lithologic descriptions, water level, and water quality + + WATER WELL DATA + This database contains the following information on water wells in Nevada: driller's name, owner's name, location, formations encountered, lithologic descriptions, water level, and water quality + 1930-PRESENT + + 1 + content: title water well data author medium book - -UTAH GEOLOGIC MAP BIBLIOGRAPHY -This collection consists of theses, dissertations, and other unpublished maps as well as published maps of the geology of Utah. Some maps of the collection are xeroxed from limited collections. Cross-sections are included in set. Data file consists of map bibliography -UTAH GEOLOGIC MAP BIBLIOGRAPHY -This collection consists of theses, dissertations, and other unpublished maps as well as published maps of the geology of Utah. Some maps of the collection are xeroxed from limited collections. Cross-sections are included in set. Data file consists of map bibliography --PRESENT -content: title utah geologic map bibliography author medium book + UTAH GEOLOGIC MAP BIBLIOGRAPHY + This collection consists of theses, dissertations, and other unpublished maps as well as published maps of the geology of Utah. Some maps of the collection are xeroxed from limited collections. Cross-sections are included in set. Data file consists of map bibliography + + UTAH GEOLOGIC MAP BIBLIOGRAPHY + This collection consists of theses, dissertations, and other unpublished maps as well as published maps of the geology of Utah. Some maps of the collection are xeroxed from limited collections. Cross-sections are included in set. Data file consists of map bibliography + -PRESENT + + 1 + content: title utah geologic map bibliography author medium book - -UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS -Publications of the Utah Geological and Mineral Survey include reports of investigation, special studies, bulletins, open-file reports, geologic map of Utah, publications of geological societies, geologic and oil and mineral maps, coal monographs, circulars, water resource bulletins, and reprints of articles -UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS -Publications of the Utah Geological and Mineral Survey include reports of investigation, special studies, bulletins, open-file reports, geologic map of Utah, publications of geological societies, geologic and oil and mineral maps, coal monographs, circulars, water resource bulletins, and reprints of articles --PRESENT -content: title utah geological and mineral survey publications author medium book + UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS + Publications of the Utah Geological and Mineral Survey include reports of investigation, special studies, bulletins, open-file reports, geologic map of Utah, publications of geological societies, geologic and oil and mineral maps, coal monographs, circulars, water resource bulletins, and reprints of articles + + UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS + Publications of the Utah Geological and Mineral Survey include reports of investigation, special studies, bulletins, open-file reports, geologic map of Utah, publications of geological societies, geologic and oil and mineral maps, coal monographs, circulars, water resource bulletins, and reprints of articles + -PRESENT + + 1 + content: title utah geological and mineral survey publications author medium book - -UTAH EARTHQUAKE EPICENTERS -Five files of epicenter data arranged by date comprise this data set. These files are searchable by magnitude and longitude/latitude. Hardcopy of listing and plot of requested area available. Epicenter location and date, magnitude, and focal depth available -UTAH EARTHQUAKE EPICENTERS -Five files of epicenter data arranged by date comprise this data set. These files are searchable by magnitude and longitude/latitude. Hardcopy of listing and plot of requested area available. Epicenter location and date, magnitude, and focal depth available --PRESENT -content: title utah earthquake epicenters author medium book + UTAH EARTHQUAKE EPICENTERS + Five files of epicenter data arranged by date comprise this data set. These files are searchable by magnitude and longitude/latitude. Hardcopy of listing and plot of requested area available. Epicenter location and date, magnitude, and focal depth available + + UTAH EARTHQUAKE EPICENTERS + Five files of epicenter data arranged by date comprise this data set. These files are searchable by magnitude and longitude/latitude. Hardcopy of listing and plot of requested area available. Epicenter location and date, magnitude, and focal depth available + -PRESENT + + 1 + content: title utah earthquake epicenters author medium book - -BIBLIOGRAPHY OF MAINE GEOLOGY -This data base is a computer based bibliography of marine geology. It allows searching by topic and geographic location, similar to GEOREF. It is currently under development to replace the printed Bibliography of Marine Geology -BIBLIOGRAPHY OF MAINE GEOLOGY -This data base is a computer based bibliography of marine geology. It allows searching by topic and geographic location, similar to GEOREF. It is currently under development to replace the printed Bibliography of Marine Geology -1692-PRESENT -content: title bibliography of maine geology author medium book + BIBLIOGRAPHY OF MAINE GEOLOGY + This data base is a computer based bibliography of marine geology. It allows searching by topic and geographic location, similar to GEOREF. It is currently under development to replace the printed Bibliography of Marine Geology + + BIBLIOGRAPHY OF MAINE GEOLOGY + This data base is a computer based bibliography of marine geology. It allows searching by topic and geographic location, similar to GEOREF. It is currently under development to replace the printed Bibliography of Marine Geology + 1692-PRESENT + + 1 + content: title bibliography of maine geology author medium book - -AUTOMATED FLOOD WARNING NETWORK -The new system will collect rainfall, temperature, soil moisture, wind speed and direction, humidity, and streamflow (above certain values) -AUTOMATED FLOOD WARNING NETWORK -The new system will collect rainfall, temperature, soil moisture, wind speed and direction, humidity, and streamflow (above certain values) -1982-PRESENT -content: title automated flood warning network author medium book + AUTOMATED FLOOD WARNING NETWORK + The new system will collect rainfall, temperature, soil moisture, wind speed and direction, humidity, and streamflow (above certain values) + + AUTOMATED FLOOD WARNING NETWORK + The new system will collect rainfall, temperature, soil moisture, wind speed and direction, humidity, and streamflow (above certain values) + 1982-PRESENT + + 1 + content: title automated flood warning network author medium book - -APPLIED GEOLOGY FILE -Reports and memorandums completed by the Site Investigation Section comprise this data set. Subjects include geotechnical appraisal of public facility sites before and during construction and evaluations of hazardous waste problems -APPLIED GEOLOGY FILE -Reports and memorandums completed by the Site Investigation Section comprise this data set. Subjects include geotechnical appraisal of public facility sites before and during construction and evaluations of hazardous waste problems -1970-PRESENT -content: title applied geology file author medium book + APPLIED GEOLOGY FILE + Reports and memorandums completed by the Site Investigation Section comprise this data set. Subjects include geotechnical appraisal of public facility sites before and during construction and evaluations of hazardous waste problems + + APPLIED GEOLOGY FILE + Reports and memorandums completed by the Site Investigation Section comprise this data set. Subjects include geotechnical appraisal of public facility sites before and during construction and evaluations of hazardous waste problems + 1970-PRESENT + + 1 + content: title applied geology file author medium book \ No newline at end of file -- 1.7.10.4