├── .clang-format ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .gitmodules ├── .travis.yml ├── CMakeLists.txt ├── LICENSE ├── README.md ├── doc ├── config.ini.example ├── configuration.md ├── features.md ├── index.md └── quick-start.md ├── external ├── CMakeLists.txt └── catch2 │ └── catch.hpp ├── include └── fxt │ ├── doc_entry.hpp │ ├── doc_entry_flag.hpp │ ├── doc_lens.hpp │ ├── feature_extractor.hpp │ ├── feature_presenter.hpp │ ├── features │ ├── bm25 │ │ ├── bm25.hpp │ │ ├── doc_bm25_atire_feature.hpp │ │ ├── doc_bm25_feature.hpp │ │ ├── doc_bm25_trec3_feature.hpp │ │ └── doc_bm25_trec3_kmax_feature.hpp │ ├── bose_einstein │ │ ├── be.hpp │ │ └── doc_be_feature.hpp │ ├── dfr │ │ ├── dfr.hpp │ │ └── doc_dfr_feature.hpp │ ├── doc_feature.hpp │ ├── doc_feature │ │ └── document_features.hpp │ ├── dph │ │ ├── doc_dph_feature.hpp │ │ └── dph.hpp │ ├── features.hpp │ ├── lmds │ │ ├── doc_lm_dir_1000_feature.hpp │ │ ├── doc_lm_dir_1500_feature.hpp │ │ ├── doc_lm_dir_2500_feature.hpp │ │ ├── doc_lm_dir_feature.hpp │ │ └── lm.hpp │ ├── probability │ │ ├── doc_prob_feature.hpp │ │ └── prob.hpp │ ├── proximity │ │ ├── bm25_proximity.hpp │ │ ├── doc_proximity_feature.hpp │ │ ├── doc_sdm_feature.hpp │ │ ├── sdm.hpp │ │ └── tp_dist.hpp │ ├── static │ │ └── web_document.hpp │ ├── stream │ │ └── doc_stream_feature.hpp │ ├── tfidf │ │ ├── doc_tfidf_feature.hpp │ │ └── tfidf.hpp │ └── tpscore │ │ └── doc_tpscore_feature.hpp │ ├── fgen_term_util.hpp │ ├── field_id.hpp │ ├── field_map.hpp │ ├── forward_index.hpp │ ├── forward_index_interactor.hpp │ ├── inverted_index.hpp │ ├── lexicon.hpp │ ├── query_environment_adapter.hpp │ ├── query_train_file.hpp │ ├── statdoc_entry.hpp │ ├── statdoc_entry_flag.hpp │ ├── static_feature.hpp │ ├── stopwords.h │ ├── term_feature.hpp │ ├── trec_run_file.hpp │ ├── util.hpp │ ├── w_scanner.hpp │ └── web_1t_stopwords.hpp ├── script ├── csv2svm.awk ├── doc-features.sh ├── feat2flag.sh ├── feat2ini.sh ├── feat2struct.sh ├── features.template ├── label.awk ├── mk-nodeid-docno.sh ├── shuffle.sh ├── stopwords.sh ├── termfeat_expand.awk └── trimsvm.awk ├── src ├── CMakeLists.txt ├── compression.cpp ├── create_bigram_inverted_index.cpp ├── dump_fixture.cpp ├── extractor.cpp ├── fgen_bigram_qry.hpp ├── fgen_term_qry.cpp ├── fgen_term_qry.hpp ├── generate_static_doc_features.cpp ├── generate_term_features.cpp ├── indexer.cpp ├── inlink.cpp ├── kstem.cpp ├── outlink.cpp ├── preret_csv.cpp ├── query_features.cpp └── query_features.h └── test ├── Makefile ├── bm25.cpp ├── fixture ├── stub_index.hpp └── stub_query.hpp ├── forward_index.cpp ├── forward_index_interactor.cpp ├── lexicon.cpp ├── lmds.cpp ├── main.cpp ├── sdm.cpp └── static_webdocument.cpp /.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: Google 2 | Language: Cpp 3 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | *.d 3 | build 4 | test/main 5 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/.travis.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/README.md -------------------------------------------------------------------------------- /doc/config.ini.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/doc/config.ini.example -------------------------------------------------------------------------------- /doc/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/doc/configuration.md -------------------------------------------------------------------------------- /doc/features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/doc/features.md -------------------------------------------------------------------------------- /doc/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/doc/index.md -------------------------------------------------------------------------------- /doc/quick-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/doc/quick-start.md -------------------------------------------------------------------------------- /external/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/external/CMakeLists.txt -------------------------------------------------------------------------------- /external/catch2/catch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/external/catch2/catch.hpp -------------------------------------------------------------------------------- /include/fxt/doc_entry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/include/fxt/doc_entry.hpp -------------------------------------------------------------------------------- /include/fxt/doc_entry_flag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/include/fxt/doc_entry_flag.hpp -------------------------------------------------------------------------------- /include/fxt/doc_lens.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/include/fxt/doc_lens.hpp -------------------------------------------------------------------------------- /include/fxt/feature_extractor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/include/fxt/feature_extractor.hpp -------------------------------------------------------------------------------- /include/fxt/feature_presenter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/include/fxt/feature_presenter.hpp -------------------------------------------------------------------------------- /include/fxt/features/bm25/bm25.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/include/fxt/features/bm25/bm25.hpp -------------------------------------------------------------------------------- /include/fxt/features/bm25/doc_bm25_atire_feature.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/include/fxt/features/bm25/doc_bm25_atire_feature.hpp -------------------------------------------------------------------------------- /include/fxt/features/bm25/doc_bm25_feature.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/include/fxt/features/bm25/doc_bm25_feature.hpp -------------------------------------------------------------------------------- /include/fxt/features/bm25/doc_bm25_trec3_feature.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/include/fxt/features/bm25/doc_bm25_trec3_feature.hpp -------------------------------------------------------------------------------- /include/fxt/features/bm25/doc_bm25_trec3_kmax_feature.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/include/fxt/features/bm25/doc_bm25_trec3_kmax_feature.hpp -------------------------------------------------------------------------------- /include/fxt/features/bose_einstein/be.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/include/fxt/features/bose_einstein/be.hpp -------------------------------------------------------------------------------- /include/fxt/features/bose_einstein/doc_be_feature.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/include/fxt/features/bose_einstein/doc_be_feature.hpp -------------------------------------------------------------------------------- /include/fxt/features/dfr/dfr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/include/fxt/features/dfr/dfr.hpp -------------------------------------------------------------------------------- /include/fxt/features/dfr/doc_dfr_feature.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/include/fxt/features/dfr/doc_dfr_feature.hpp -------------------------------------------------------------------------------- /include/fxt/features/doc_feature.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/include/fxt/features/doc_feature.hpp -------------------------------------------------------------------------------- /include/fxt/features/doc_feature/document_features.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/include/fxt/features/doc_feature/document_features.hpp -------------------------------------------------------------------------------- /include/fxt/features/dph/doc_dph_feature.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/include/fxt/features/dph/doc_dph_feature.hpp -------------------------------------------------------------------------------- /include/fxt/features/dph/dph.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/include/fxt/features/dph/dph.hpp -------------------------------------------------------------------------------- /include/fxt/features/features.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/include/fxt/features/features.hpp -------------------------------------------------------------------------------- /include/fxt/features/lmds/doc_lm_dir_1000_feature.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/include/fxt/features/lmds/doc_lm_dir_1000_feature.hpp -------------------------------------------------------------------------------- /include/fxt/features/lmds/doc_lm_dir_1500_feature.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/include/fxt/features/lmds/doc_lm_dir_1500_feature.hpp -------------------------------------------------------------------------------- /include/fxt/features/lmds/doc_lm_dir_2500_feature.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/include/fxt/features/lmds/doc_lm_dir_2500_feature.hpp -------------------------------------------------------------------------------- /include/fxt/features/lmds/doc_lm_dir_feature.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/include/fxt/features/lmds/doc_lm_dir_feature.hpp -------------------------------------------------------------------------------- /include/fxt/features/lmds/lm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/include/fxt/features/lmds/lm.hpp -------------------------------------------------------------------------------- /include/fxt/features/probability/doc_prob_feature.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/include/fxt/features/probability/doc_prob_feature.hpp -------------------------------------------------------------------------------- /include/fxt/features/probability/prob.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/include/fxt/features/probability/prob.hpp -------------------------------------------------------------------------------- /include/fxt/features/proximity/bm25_proximity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/include/fxt/features/proximity/bm25_proximity.hpp -------------------------------------------------------------------------------- /include/fxt/features/proximity/doc_proximity_feature.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/include/fxt/features/proximity/doc_proximity_feature.hpp -------------------------------------------------------------------------------- /include/fxt/features/proximity/doc_sdm_feature.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/include/fxt/features/proximity/doc_sdm_feature.hpp -------------------------------------------------------------------------------- /include/fxt/features/proximity/sdm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/include/fxt/features/proximity/sdm.hpp -------------------------------------------------------------------------------- /include/fxt/features/proximity/tp_dist.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/include/fxt/features/proximity/tp_dist.hpp -------------------------------------------------------------------------------- /include/fxt/features/static/web_document.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/include/fxt/features/static/web_document.hpp -------------------------------------------------------------------------------- /include/fxt/features/stream/doc_stream_feature.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/include/fxt/features/stream/doc_stream_feature.hpp -------------------------------------------------------------------------------- /include/fxt/features/tfidf/doc_tfidf_feature.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/include/fxt/features/tfidf/doc_tfidf_feature.hpp -------------------------------------------------------------------------------- /include/fxt/features/tfidf/tfidf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/include/fxt/features/tfidf/tfidf.hpp -------------------------------------------------------------------------------- /include/fxt/features/tpscore/doc_tpscore_feature.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/include/fxt/features/tpscore/doc_tpscore_feature.hpp -------------------------------------------------------------------------------- /include/fxt/fgen_term_util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/include/fxt/fgen_term_util.hpp -------------------------------------------------------------------------------- /include/fxt/field_id.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/include/fxt/field_id.hpp -------------------------------------------------------------------------------- /include/fxt/field_map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/include/fxt/field_map.hpp -------------------------------------------------------------------------------- /include/fxt/forward_index.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/include/fxt/forward_index.hpp -------------------------------------------------------------------------------- /include/fxt/forward_index_interactor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/include/fxt/forward_index_interactor.hpp -------------------------------------------------------------------------------- /include/fxt/inverted_index.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/include/fxt/inverted_index.hpp -------------------------------------------------------------------------------- /include/fxt/lexicon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/include/fxt/lexicon.hpp -------------------------------------------------------------------------------- /include/fxt/query_environment_adapter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/include/fxt/query_environment_adapter.hpp -------------------------------------------------------------------------------- /include/fxt/query_train_file.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/include/fxt/query_train_file.hpp -------------------------------------------------------------------------------- /include/fxt/statdoc_entry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/include/fxt/statdoc_entry.hpp -------------------------------------------------------------------------------- /include/fxt/statdoc_entry_flag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/include/fxt/statdoc_entry_flag.hpp -------------------------------------------------------------------------------- /include/fxt/static_feature.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/include/fxt/static_feature.hpp -------------------------------------------------------------------------------- /include/fxt/stopwords.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/include/fxt/stopwords.h -------------------------------------------------------------------------------- /include/fxt/term_feature.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/include/fxt/term_feature.hpp -------------------------------------------------------------------------------- /include/fxt/trec_run_file.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/include/fxt/trec_run_file.hpp -------------------------------------------------------------------------------- /include/fxt/util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/include/fxt/util.hpp -------------------------------------------------------------------------------- /include/fxt/w_scanner.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/include/fxt/w_scanner.hpp -------------------------------------------------------------------------------- /include/fxt/web_1t_stopwords.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/include/fxt/web_1t_stopwords.hpp -------------------------------------------------------------------------------- /script/csv2svm.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/script/csv2svm.awk -------------------------------------------------------------------------------- /script/doc-features.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/script/doc-features.sh -------------------------------------------------------------------------------- /script/feat2flag.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/script/feat2flag.sh -------------------------------------------------------------------------------- /script/feat2ini.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/script/feat2ini.sh -------------------------------------------------------------------------------- /script/feat2struct.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/script/feat2struct.sh -------------------------------------------------------------------------------- /script/features.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/script/features.template -------------------------------------------------------------------------------- /script/label.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/script/label.awk -------------------------------------------------------------------------------- /script/mk-nodeid-docno.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/script/mk-nodeid-docno.sh -------------------------------------------------------------------------------- /script/shuffle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/script/shuffle.sh -------------------------------------------------------------------------------- /script/stopwords.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/script/stopwords.sh -------------------------------------------------------------------------------- /script/termfeat_expand.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/script/termfeat_expand.awk -------------------------------------------------------------------------------- /script/trimsvm.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/script/trimsvm.awk -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/compression.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/src/compression.cpp -------------------------------------------------------------------------------- /src/create_bigram_inverted_index.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/src/create_bigram_inverted_index.cpp -------------------------------------------------------------------------------- /src/dump_fixture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/src/dump_fixture.cpp -------------------------------------------------------------------------------- /src/extractor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/src/extractor.cpp -------------------------------------------------------------------------------- /src/fgen_bigram_qry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/src/fgen_bigram_qry.hpp -------------------------------------------------------------------------------- /src/fgen_term_qry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/src/fgen_term_qry.cpp -------------------------------------------------------------------------------- /src/fgen_term_qry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/src/fgen_term_qry.hpp -------------------------------------------------------------------------------- /src/generate_static_doc_features.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/src/generate_static_doc_features.cpp -------------------------------------------------------------------------------- /src/generate_term_features.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/src/generate_term_features.cpp -------------------------------------------------------------------------------- /src/indexer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/src/indexer.cpp -------------------------------------------------------------------------------- /src/inlink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/src/inlink.cpp -------------------------------------------------------------------------------- /src/kstem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/src/kstem.cpp -------------------------------------------------------------------------------- /src/outlink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/src/outlink.cpp -------------------------------------------------------------------------------- /src/preret_csv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/src/preret_csv.cpp -------------------------------------------------------------------------------- /src/query_features.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/src/query_features.cpp -------------------------------------------------------------------------------- /src/query_features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/src/query_features.h -------------------------------------------------------------------------------- /test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/test/Makefile -------------------------------------------------------------------------------- /test/bm25.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/test/bm25.cpp -------------------------------------------------------------------------------- /test/fixture/stub_index.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/test/fixture/stub_index.hpp -------------------------------------------------------------------------------- /test/fixture/stub_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/test/fixture/stub_query.hpp -------------------------------------------------------------------------------- /test/forward_index.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/test/forward_index.cpp -------------------------------------------------------------------------------- /test/forward_index_interactor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/test/forward_index_interactor.cpp -------------------------------------------------------------------------------- /test/lexicon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/test/lexicon.cpp -------------------------------------------------------------------------------- /test/lmds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/test/lmds.cpp -------------------------------------------------------------------------------- /test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/test/main.cpp -------------------------------------------------------------------------------- /test/sdm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/test/sdm.cpp -------------------------------------------------------------------------------- /test/static_webdocument.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ten-blue-links/fxt/HEAD/test/static_webdocument.cpp --------------------------------------------------------------------------------