├── .codecov.yml ├── .codedocs ├── .github └── workflows │ └── ccpp.yml ├── .gitignore ├── .travis.yml ├── CMakeLists.txt ├── Doxyfile.in ├── JASSv1 ├── CI.c ├── CI.h ├── GNUmakefile ├── atire_to_jass_index.c ├── compress.h ├── compress_integer_elias_delta_simd.c ├── compress_integer_elias_delta_simd.h ├── compress_integer_elias_gamma_simd.c ├── compress_integer_elias_gamma_simd.h ├── compress_integer_elias_gamma_simd_vb.cpp ├── compress_integer_elias_gamma_simd_vb.h ├── compress_integer_variable_byte.cpp ├── compress_integer_variable_byte.h ├── compress_qmx.c ├── compress_qmx.h ├── compress_qmx_d4.c ├── compress_qmx_d4.h ├── compress_qmx_decompress.c ├── compress_simple8b.c ├── compress_simple8b.h ├── compress_variable_byte.c ├── compress_variable_byte.h ├── data │ ├── queries.clueweb09.txt │ ├── queries.clueweb12.txt │ ├── queries.gov2.txt │ ├── topics.terabyte.701-750.txt │ ├── topics.terabyte.751-800.txt │ ├── topics.terabyte.801-850.txt │ ├── topics.web.101-150.txt │ ├── topics.web.151-200.txt │ ├── topics.web.201-250.txt │ ├── topics.web.251-300.txt │ └── topics.web.51-100.txt ├── forceinline.h ├── heap.h ├── jass.c ├── maths.c ├── maths.h ├── process_postings.c ├── process_postings.h └── trec2query │ ├── GNUmakefile │ ├── README.md │ └── trec2query.c ├── MANIFEST.in ├── README.md ├── VERSION ├── anytime ├── CMakeLists.txt ├── JASS_anytime.cpp ├── JASS_anytime_accumulator_manager.h ├── JASS_anytime_api.cpp ├── JASS_anytime_api.h ├── JASS_anytime_query.h ├── JASS_anytime_result.h ├── JASS_anytime_stats.h ├── JASS_anytime_thread_result.h ├── PyJASS.swg └── PyJASS_example.py ├── appveyor.yml ├── compiled_index ├── CMakeLists.txt ├── JASS_compiled_index.cpp ├── JASS_postings.cpp ├── JASS_postings.h ├── JASS_primary_keys.cpp ├── JASS_vocabulary.cpp └── JASS_vocabulary.h ├── coverity_model.c ├── docker ├── Dockerfile ├── build.sh ├── mac_build.sh ├── makefile └── osirrc2019 │ ├── Dockerfile │ ├── index │ ├── index_robust04 │ ├── init │ ├── readme.txt │ ├── search │ └── search_robust04 ├── env.yml ├── examples ├── CMakeLists.txt ├── parser_use.cpp └── parser_use.h ├── experimental ├── CMakeLists.txt └── examine_index.cpp ├── external ├── CMakeLists.txt ├── Unicode │ ├── CaseFolding.txt │ ├── CaseFolding_v6_3.txt │ ├── PropList.txt │ ├── PropList_v6_3.txt │ ├── UnicodeData.txt │ └── UnicodeData_v6_3.txt ├── streamvbyte │ ├── .travis.yml │ ├── AUTHORS │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── example.c │ ├── include │ │ ├── streamvbyte.h │ │ └── streamvbytedelta.h │ ├── src │ │ ├── streamvbyte.c │ │ ├── streamvbyte_shuffle_tables.h │ │ └── streamvbytedelta.c │ ├── tests │ │ ├── perf.c │ │ ├── unit.c │ │ └── writeseq.c │ └── utils │ │ └── shuffle_tables.c └── valgrind │ └── valgrind.h ├── logo.png ├── project-description.md ├── requirements.txt ├── setup.py ├── source ├── CMakeLists.txt ├── accumulator_2d.h ├── accumulator_block_max.h ├── accumulator_simple.h ├── allocator.h ├── allocator_cpp.h ├── allocator_memory.cpp ├── allocator_memory.h ├── allocator_pool.cpp ├── allocator_pool.h ├── ascii.h ├── asserts.cpp ├── asserts.h ├── beap.h ├── binary_tree.h ├── bitstream.h ├── bitstring.cpp ├── bitstring.h ├── channel.h ├── channel_buffer.cpp ├── channel_buffer.h ├── channel_file.cpp ├── channel_file.h ├── channel_socket.c ├── channel_socket.h ├── channel_trec.cpp ├── channel_trec.h ├── checksum.cpp ├── checksum.h ├── commandline.h ├── compress_general.h ├── compress_general_zlib.cpp ├── compress_general_zlib.h ├── compress_general_zstd.cpp ├── compress_general_zstd.h ├── compress_integer.cpp ├── compress_integer.h ├── compress_integer_all.cpp ├── compress_integer_all.h ├── compress_integer_bitpack.cpp ├── compress_integer_bitpack.h ├── compress_integer_bitpack_128.cpp ├── compress_integer_bitpack_128.h ├── compress_integer_bitpack_256.cpp ├── compress_integer_bitpack_256.h ├── compress_integer_bitpack_32_reduced.cpp ├── compress_integer_bitpack_32_reduced.h ├── compress_integer_bitpack_64.cpp ├── compress_integer_bitpack_64.h ├── compress_integer_carry_8b.cpp ├── compress_integer_carry_8b.h ├── compress_integer_carryover_12.cpp ├── compress_integer_carryover_12.h ├── compress_integer_elias_delta.cpp ├── compress_integer_elias_delta.h ├── compress_integer_elias_delta_bitwise.h ├── compress_integer_elias_delta_simd.cpp ├── compress_integer_elias_delta_simd.h ├── compress_integer_elias_gamma.cpp ├── compress_integer_elias_gamma.h ├── compress_integer_elias_gamma_bitwise.h ├── compress_integer_elias_gamma_simd.cpp ├── compress_integer_elias_gamma_simd.h ├── compress_integer_elias_gamma_simd_vb.cpp ├── compress_integer_elias_gamma_simd_vb.h ├── compress_integer_lyck_16.cpp ├── compress_integer_lyck_16.h ├── compress_integer_none.cpp ├── compress_integer_none.h ├── compress_integer_nybble_8.cpp ├── compress_integer_nybble_8.h ├── compress_integer_qmx_improved.cpp ├── compress_integer_qmx_improved.h ├── compress_integer_qmx_jass_v1.cpp ├── compress_integer_qmx_jass_v1.h ├── compress_integer_qmx_original.cpp ├── compress_integer_qmx_original.h ├── compress_integer_relative_10.cpp ├── compress_integer_relative_10.h ├── compress_integer_simple_16.cpp ├── compress_integer_simple_16.h ├── compress_integer_simple_16_packed.cpp ├── compress_integer_simple_16_packed.h ├── compress_integer_simple_8b.cpp ├── compress_integer_simple_8b.h ├── compress_integer_simple_8b_packed.cpp ├── compress_integer_simple_8b_packed.h ├── compress_integer_simple_9.cpp ├── compress_integer_simple_9.h ├── compress_integer_simple_9_packed.cpp ├── compress_integer_simple_9_packed.h ├── compress_integer_stream_vbyte.cpp ├── compress_integer_stream_vbyte.h ├── compress_integer_variable_byte.cpp ├── compress_integer_variable_byte.h ├── deserialised_jass_v1.cpp ├── deserialised_jass_v1.h ├── deserialised_jass_v2.cpp ├── deserialised_jass_v2.h ├── document.h ├── document_id.h ├── dynamic_array.h ├── evaluate.cpp ├── evaluate.h ├── evaluate_buying_power.cpp ├── evaluate_buying_power.h ├── evaluate_buying_power4k.cpp ├── evaluate_buying_power4k.h ├── evaluate_buying_power_normalized_discounted_cumulative_gain.cpp ├── evaluate_buying_power_normalized_discounted_cumulative_gain.h ├── evaluate_cheapest_precision.cpp ├── evaluate_cheapest_precision.h ├── evaluate_expected_search_length.cpp ├── evaluate_expected_search_length.h ├── evaluate_f.cpp ├── evaluate_f.h ├── evaluate_map.cpp ├── evaluate_map.h ├── evaluate_mean_reciprocal_rank.cpp ├── evaluate_mean_reciprocal_rank.h ├── evaluate_mean_reciprocal_rank4k.cpp ├── evaluate_mean_reciprocal_rank4k.h ├── evaluate_precision.cpp ├── evaluate_precision.h ├── evaluate_price_based_normalized_discounted_cumulative_gain.cpp ├── evaluate_price_based_normalized_discounted_cumulative_gain.h ├── evaluate_rank_biased_precision.cpp ├── evaluate_rank_biased_precision.h ├── evaluate_recall.cpp ├── evaluate_recall.h ├── evaluate_relevant_returned.cpp ├── evaluate_relevant_returned.h ├── evaluate_selling_power.cpp ├── evaluate_selling_power.h ├── exception_done.h ├── file.cpp ├── file.h ├── forceinline.h ├── global_new_delete.h ├── hardware_support.h ├── hash_pearson.cpp ├── hash_pearson.h ├── hash_table.h ├── heap.h ├── index_manager.h ├── index_manager_sequential.h ├── index_postings.h ├── index_postings_impact.h ├── instream.h ├── instream_deflate.cpp ├── instream_deflate.h ├── instream_directory_iterator.cpp ├── instream_directory_iterator.h ├── instream_document_fasta.cpp ├── instream_document_fasta.h ├── instream_document_html.h ├── instream_document_trec.cpp ├── instream_document_trec.h ├── instream_document_unicoil_json.cpp ├── instream_document_unicoil_json.h ├── instream_document_warc.cpp ├── instream_document_warc.h ├── instream_file.cpp ├── instream_file.h ├── instream_file_star.h ├── instream_memory.cpp ├── instream_memory.h ├── maths.cpp ├── maths.h ├── parser.cpp ├── parser.h ├── parser_fasta.cpp ├── parser_fasta.h ├── parser_query.cpp ├── parser_query.h ├── parser_unicoil_json.cpp ├── parser_unicoil_json.h ├── pointer_box.h ├── posting.h ├── quantize.h ├── quantize_none.h ├── query.h ├── query_block_max.h ├── query_heap.h ├── query_simple.h ├── query_term.h ├── query_term_list.h ├── ranking_function.h ├── ranking_function_atire_bm25.h ├── ranking_function_none.h ├── reverse.h ├── run_export.h ├── run_export_trec.h ├── serialise_ci.cpp ├── serialise_ci.h ├── serialise_forward_index.cpp ├── serialise_forward_index.h ├── serialise_integers.cpp ├── serialise_integers.h ├── serialise_jass_v1.cpp ├── serialise_jass_v1.h ├── serialise_jass_v2.cpp ├── serialise_jass_v2.h ├── simd.h ├── slice.h ├── sort512_uint64_t.h ├── statistics.cpp ├── statistics.h ├── stem.h ├── stem_porter.cpp ├── stem_porter.h ├── string_cpp.h ├── threads.cpp ├── threads.h ├── timer.h ├── top_k_heap.h ├── top_k_limit.cpp ├── top_k_limit.h ├── top_k_qsort.cpp ├── top_k_qsort.h ├── unicode.h ├── unittest_data.cpp ├── unittest_data.h └── version.h ├── tools ├── CMakeLists.txt ├── ECOM19_to_JASS_eval.cpp ├── ECOM19_to_run.cpp ├── JASS_eval.cpp ├── JASS_index.cpp ├── JASSv1_to_human.cpp ├── ascii_database_to_c.cpp ├── bin_to_human.cpp ├── ciff_lin.h ├── ciff_to_JASS.cpp ├── cmp_d_to_utype.d ├── coverity_scan.sh ├── hash.cpp ├── protobuf.h ├── test_integer_compress.cpp ├── test_integer_compress_average.cpp ├── test_unicode_database_to_c.sh ├── travis_dependencies.sh ├── trec_to_query.cpp ├── unicode_database_to_c.cpp └── unittest.cpp └── uploadpypi.sh /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.codedocs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/.codedocs -------------------------------------------------------------------------------- /.github/workflows/ccpp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/.github/workflows/ccpp.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/.travis.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/Doxyfile.in -------------------------------------------------------------------------------- /JASSv1/CI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/JASSv1/CI.c -------------------------------------------------------------------------------- /JASSv1/CI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/JASSv1/CI.h -------------------------------------------------------------------------------- /JASSv1/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/JASSv1/GNUmakefile -------------------------------------------------------------------------------- /JASSv1/atire_to_jass_index.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/JASSv1/atire_to_jass_index.c -------------------------------------------------------------------------------- /JASSv1/compress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/JASSv1/compress.h -------------------------------------------------------------------------------- /JASSv1/compress_integer_elias_delta_simd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/JASSv1/compress_integer_elias_delta_simd.c -------------------------------------------------------------------------------- /JASSv1/compress_integer_elias_delta_simd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/JASSv1/compress_integer_elias_delta_simd.h -------------------------------------------------------------------------------- /JASSv1/compress_integer_elias_gamma_simd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/JASSv1/compress_integer_elias_gamma_simd.c -------------------------------------------------------------------------------- /JASSv1/compress_integer_elias_gamma_simd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/JASSv1/compress_integer_elias_gamma_simd.h -------------------------------------------------------------------------------- /JASSv1/compress_integer_elias_gamma_simd_vb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/JASSv1/compress_integer_elias_gamma_simd_vb.cpp -------------------------------------------------------------------------------- /JASSv1/compress_integer_elias_gamma_simd_vb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/JASSv1/compress_integer_elias_gamma_simd_vb.h -------------------------------------------------------------------------------- /JASSv1/compress_integer_variable_byte.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/JASSv1/compress_integer_variable_byte.cpp -------------------------------------------------------------------------------- /JASSv1/compress_integer_variable_byte.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/JASSv1/compress_integer_variable_byte.h -------------------------------------------------------------------------------- /JASSv1/compress_qmx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/JASSv1/compress_qmx.c -------------------------------------------------------------------------------- /JASSv1/compress_qmx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/JASSv1/compress_qmx.h -------------------------------------------------------------------------------- /JASSv1/compress_qmx_d4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/JASSv1/compress_qmx_d4.c -------------------------------------------------------------------------------- /JASSv1/compress_qmx_d4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/JASSv1/compress_qmx_d4.h -------------------------------------------------------------------------------- /JASSv1/compress_qmx_decompress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/JASSv1/compress_qmx_decompress.c -------------------------------------------------------------------------------- /JASSv1/compress_simple8b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/JASSv1/compress_simple8b.c -------------------------------------------------------------------------------- /JASSv1/compress_simple8b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/JASSv1/compress_simple8b.h -------------------------------------------------------------------------------- /JASSv1/compress_variable_byte.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/JASSv1/compress_variable_byte.c -------------------------------------------------------------------------------- /JASSv1/compress_variable_byte.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/JASSv1/compress_variable_byte.h -------------------------------------------------------------------------------- /JASSv1/data/queries.clueweb09.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/JASSv1/data/queries.clueweb09.txt -------------------------------------------------------------------------------- /JASSv1/data/queries.clueweb12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/JASSv1/data/queries.clueweb12.txt -------------------------------------------------------------------------------- /JASSv1/data/queries.gov2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/JASSv1/data/queries.gov2.txt -------------------------------------------------------------------------------- /JASSv1/data/topics.terabyte.701-750.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/JASSv1/data/topics.terabyte.701-750.txt -------------------------------------------------------------------------------- /JASSv1/data/topics.terabyte.751-800.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/JASSv1/data/topics.terabyte.751-800.txt -------------------------------------------------------------------------------- /JASSv1/data/topics.terabyte.801-850.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/JASSv1/data/topics.terabyte.801-850.txt -------------------------------------------------------------------------------- /JASSv1/data/topics.web.101-150.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/JASSv1/data/topics.web.101-150.txt -------------------------------------------------------------------------------- /JASSv1/data/topics.web.151-200.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/JASSv1/data/topics.web.151-200.txt -------------------------------------------------------------------------------- /JASSv1/data/topics.web.201-250.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/JASSv1/data/topics.web.201-250.txt -------------------------------------------------------------------------------- /JASSv1/data/topics.web.251-300.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/JASSv1/data/topics.web.251-300.txt -------------------------------------------------------------------------------- /JASSv1/data/topics.web.51-100.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/JASSv1/data/topics.web.51-100.txt -------------------------------------------------------------------------------- /JASSv1/forceinline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/JASSv1/forceinline.h -------------------------------------------------------------------------------- /JASSv1/heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/JASSv1/heap.h -------------------------------------------------------------------------------- /JASSv1/jass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/JASSv1/jass.c -------------------------------------------------------------------------------- /JASSv1/maths.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/JASSv1/maths.c -------------------------------------------------------------------------------- /JASSv1/maths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/JASSv1/maths.h -------------------------------------------------------------------------------- /JASSv1/process_postings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/JASSv1/process_postings.c -------------------------------------------------------------------------------- /JASSv1/process_postings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/JASSv1/process_postings.h -------------------------------------------------------------------------------- /JASSv1/trec2query/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/JASSv1/trec2query/GNUmakefile -------------------------------------------------------------------------------- /JASSv1/trec2query/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/JASSv1/trec2query/README.md -------------------------------------------------------------------------------- /JASSv1/trec2query/trec2query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/JASSv1/trec2query/trec2query.c -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | global-include * 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.1.1 2 | -------------------------------------------------------------------------------- /anytime/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/anytime/CMakeLists.txt -------------------------------------------------------------------------------- /anytime/JASS_anytime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/anytime/JASS_anytime.cpp -------------------------------------------------------------------------------- /anytime/JASS_anytime_accumulator_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/anytime/JASS_anytime_accumulator_manager.h -------------------------------------------------------------------------------- /anytime/JASS_anytime_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/anytime/JASS_anytime_api.cpp -------------------------------------------------------------------------------- /anytime/JASS_anytime_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/anytime/JASS_anytime_api.h -------------------------------------------------------------------------------- /anytime/JASS_anytime_query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/anytime/JASS_anytime_query.h -------------------------------------------------------------------------------- /anytime/JASS_anytime_result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/anytime/JASS_anytime_result.h -------------------------------------------------------------------------------- /anytime/JASS_anytime_stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/anytime/JASS_anytime_stats.h -------------------------------------------------------------------------------- /anytime/JASS_anytime_thread_result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/anytime/JASS_anytime_thread_result.h -------------------------------------------------------------------------------- /anytime/PyJASS.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/anytime/PyJASS.swg -------------------------------------------------------------------------------- /anytime/PyJASS_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/anytime/PyJASS_example.py -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/appveyor.yml -------------------------------------------------------------------------------- /compiled_index/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/compiled_index/CMakeLists.txt -------------------------------------------------------------------------------- /compiled_index/JASS_compiled_index.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/compiled_index/JASS_compiled_index.cpp -------------------------------------------------------------------------------- /compiled_index/JASS_postings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/compiled_index/JASS_postings.cpp -------------------------------------------------------------------------------- /compiled_index/JASS_postings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/compiled_index/JASS_postings.h -------------------------------------------------------------------------------- /compiled_index/JASS_primary_keys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/compiled_index/JASS_primary_keys.cpp -------------------------------------------------------------------------------- /compiled_index/JASS_vocabulary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/compiled_index/JASS_vocabulary.cpp -------------------------------------------------------------------------------- /compiled_index/JASS_vocabulary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/compiled_index/JASS_vocabulary.h -------------------------------------------------------------------------------- /coverity_model.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/coverity_model.c -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/docker/build.sh -------------------------------------------------------------------------------- /docker/mac_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/docker/mac_build.sh -------------------------------------------------------------------------------- /docker/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/docker/makefile -------------------------------------------------------------------------------- /docker/osirrc2019/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/docker/osirrc2019/Dockerfile -------------------------------------------------------------------------------- /docker/osirrc2019/index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/docker/osirrc2019/index -------------------------------------------------------------------------------- /docker/osirrc2019/index_robust04: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/docker/osirrc2019/index_robust04 -------------------------------------------------------------------------------- /docker/osirrc2019/init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/docker/osirrc2019/init -------------------------------------------------------------------------------- /docker/osirrc2019/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/docker/osirrc2019/readme.txt -------------------------------------------------------------------------------- /docker/osirrc2019/search: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/docker/osirrc2019/search -------------------------------------------------------------------------------- /docker/osirrc2019/search_robust04: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/docker/osirrc2019/search_robust04 -------------------------------------------------------------------------------- /env.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/env.yml -------------------------------------------------------------------------------- /examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/examples/CMakeLists.txt -------------------------------------------------------------------------------- /examples/parser_use.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/examples/parser_use.cpp -------------------------------------------------------------------------------- /examples/parser_use.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/examples/parser_use.h -------------------------------------------------------------------------------- /experimental/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/experimental/CMakeLists.txt -------------------------------------------------------------------------------- /experimental/examine_index.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/experimental/examine_index.cpp -------------------------------------------------------------------------------- /external/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/external/CMakeLists.txt -------------------------------------------------------------------------------- /external/Unicode/CaseFolding.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/external/Unicode/CaseFolding.txt -------------------------------------------------------------------------------- /external/Unicode/CaseFolding_v6_3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/external/Unicode/CaseFolding_v6_3.txt -------------------------------------------------------------------------------- /external/Unicode/PropList.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/external/Unicode/PropList.txt -------------------------------------------------------------------------------- /external/Unicode/PropList_v6_3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/external/Unicode/PropList_v6_3.txt -------------------------------------------------------------------------------- /external/Unicode/UnicodeData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/external/Unicode/UnicodeData.txt -------------------------------------------------------------------------------- /external/Unicode/UnicodeData_v6_3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/external/Unicode/UnicodeData_v6_3.txt -------------------------------------------------------------------------------- /external/streamvbyte/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/external/streamvbyte/.travis.yml -------------------------------------------------------------------------------- /external/streamvbyte/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/external/streamvbyte/AUTHORS -------------------------------------------------------------------------------- /external/streamvbyte/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/external/streamvbyte/LICENSE -------------------------------------------------------------------------------- /external/streamvbyte/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/external/streamvbyte/Makefile -------------------------------------------------------------------------------- /external/streamvbyte/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/external/streamvbyte/README.md -------------------------------------------------------------------------------- /external/streamvbyte/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/external/streamvbyte/example.c -------------------------------------------------------------------------------- /external/streamvbyte/include/streamvbyte.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/external/streamvbyte/include/streamvbyte.h -------------------------------------------------------------------------------- /external/streamvbyte/include/streamvbytedelta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/external/streamvbyte/include/streamvbytedelta.h -------------------------------------------------------------------------------- /external/streamvbyte/src/streamvbyte.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/external/streamvbyte/src/streamvbyte.c -------------------------------------------------------------------------------- /external/streamvbyte/src/streamvbyte_shuffle_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/external/streamvbyte/src/streamvbyte_shuffle_tables.h -------------------------------------------------------------------------------- /external/streamvbyte/src/streamvbytedelta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/external/streamvbyte/src/streamvbytedelta.c -------------------------------------------------------------------------------- /external/streamvbyte/tests/perf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/external/streamvbyte/tests/perf.c -------------------------------------------------------------------------------- /external/streamvbyte/tests/unit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/external/streamvbyte/tests/unit.c -------------------------------------------------------------------------------- /external/streamvbyte/tests/writeseq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/external/streamvbyte/tests/writeseq.c -------------------------------------------------------------------------------- /external/streamvbyte/utils/shuffle_tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/external/streamvbyte/utils/shuffle_tables.c -------------------------------------------------------------------------------- /external/valgrind/valgrind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/external/valgrind/valgrind.h -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/logo.png -------------------------------------------------------------------------------- /project-description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/project-description.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | wheel>0.35 2 | packaging>20 3 | cmake>3.7.2 4 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/setup.py -------------------------------------------------------------------------------- /source/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/CMakeLists.txt -------------------------------------------------------------------------------- /source/accumulator_2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/accumulator_2d.h -------------------------------------------------------------------------------- /source/accumulator_block_max.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/accumulator_block_max.h -------------------------------------------------------------------------------- /source/accumulator_simple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/accumulator_simple.h -------------------------------------------------------------------------------- /source/allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/allocator.h -------------------------------------------------------------------------------- /source/allocator_cpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/allocator_cpp.h -------------------------------------------------------------------------------- /source/allocator_memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/allocator_memory.cpp -------------------------------------------------------------------------------- /source/allocator_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/allocator_memory.h -------------------------------------------------------------------------------- /source/allocator_pool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/allocator_pool.cpp -------------------------------------------------------------------------------- /source/allocator_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/allocator_pool.h -------------------------------------------------------------------------------- /source/ascii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/ascii.h -------------------------------------------------------------------------------- /source/asserts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/asserts.cpp -------------------------------------------------------------------------------- /source/asserts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/asserts.h -------------------------------------------------------------------------------- /source/beap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/beap.h -------------------------------------------------------------------------------- /source/binary_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/binary_tree.h -------------------------------------------------------------------------------- /source/bitstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/bitstream.h -------------------------------------------------------------------------------- /source/bitstring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/bitstring.cpp -------------------------------------------------------------------------------- /source/bitstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/bitstring.h -------------------------------------------------------------------------------- /source/channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/channel.h -------------------------------------------------------------------------------- /source/channel_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/channel_buffer.cpp -------------------------------------------------------------------------------- /source/channel_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/channel_buffer.h -------------------------------------------------------------------------------- /source/channel_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/channel_file.cpp -------------------------------------------------------------------------------- /source/channel_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/channel_file.h -------------------------------------------------------------------------------- /source/channel_socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/channel_socket.c -------------------------------------------------------------------------------- /source/channel_socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/channel_socket.h -------------------------------------------------------------------------------- /source/channel_trec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/channel_trec.cpp -------------------------------------------------------------------------------- /source/channel_trec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/channel_trec.h -------------------------------------------------------------------------------- /source/checksum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/checksum.cpp -------------------------------------------------------------------------------- /source/checksum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/checksum.h -------------------------------------------------------------------------------- /source/commandline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/commandline.h -------------------------------------------------------------------------------- /source/compress_general.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/compress_general.h -------------------------------------------------------------------------------- /source/compress_general_zlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/compress_general_zlib.cpp -------------------------------------------------------------------------------- /source/compress_general_zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/compress_general_zlib.h -------------------------------------------------------------------------------- /source/compress_general_zstd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/compress_general_zstd.cpp -------------------------------------------------------------------------------- /source/compress_general_zstd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/compress_general_zstd.h -------------------------------------------------------------------------------- /source/compress_integer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/compress_integer.cpp -------------------------------------------------------------------------------- /source/compress_integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/compress_integer.h -------------------------------------------------------------------------------- /source/compress_integer_all.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/compress_integer_all.cpp -------------------------------------------------------------------------------- /source/compress_integer_all.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/compress_integer_all.h -------------------------------------------------------------------------------- /source/compress_integer_bitpack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/compress_integer_bitpack.cpp -------------------------------------------------------------------------------- /source/compress_integer_bitpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/compress_integer_bitpack.h -------------------------------------------------------------------------------- /source/compress_integer_bitpack_128.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/compress_integer_bitpack_128.cpp -------------------------------------------------------------------------------- /source/compress_integer_bitpack_128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/compress_integer_bitpack_128.h -------------------------------------------------------------------------------- /source/compress_integer_bitpack_256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/compress_integer_bitpack_256.cpp -------------------------------------------------------------------------------- /source/compress_integer_bitpack_256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/compress_integer_bitpack_256.h -------------------------------------------------------------------------------- /source/compress_integer_bitpack_32_reduced.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/compress_integer_bitpack_32_reduced.cpp -------------------------------------------------------------------------------- /source/compress_integer_bitpack_32_reduced.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/compress_integer_bitpack_32_reduced.h -------------------------------------------------------------------------------- /source/compress_integer_bitpack_64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/compress_integer_bitpack_64.cpp -------------------------------------------------------------------------------- /source/compress_integer_bitpack_64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/compress_integer_bitpack_64.h -------------------------------------------------------------------------------- /source/compress_integer_carry_8b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/compress_integer_carry_8b.cpp -------------------------------------------------------------------------------- /source/compress_integer_carry_8b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/compress_integer_carry_8b.h -------------------------------------------------------------------------------- /source/compress_integer_carryover_12.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/compress_integer_carryover_12.cpp -------------------------------------------------------------------------------- /source/compress_integer_carryover_12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/compress_integer_carryover_12.h -------------------------------------------------------------------------------- /source/compress_integer_elias_delta.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/compress_integer_elias_delta.cpp -------------------------------------------------------------------------------- /source/compress_integer_elias_delta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/compress_integer_elias_delta.h -------------------------------------------------------------------------------- /source/compress_integer_elias_delta_bitwise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/compress_integer_elias_delta_bitwise.h -------------------------------------------------------------------------------- /source/compress_integer_elias_delta_simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/compress_integer_elias_delta_simd.cpp -------------------------------------------------------------------------------- /source/compress_integer_elias_delta_simd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/compress_integer_elias_delta_simd.h -------------------------------------------------------------------------------- /source/compress_integer_elias_gamma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/compress_integer_elias_gamma.cpp -------------------------------------------------------------------------------- /source/compress_integer_elias_gamma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/compress_integer_elias_gamma.h -------------------------------------------------------------------------------- /source/compress_integer_elias_gamma_bitwise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/compress_integer_elias_gamma_bitwise.h -------------------------------------------------------------------------------- /source/compress_integer_elias_gamma_simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/compress_integer_elias_gamma_simd.cpp -------------------------------------------------------------------------------- /source/compress_integer_elias_gamma_simd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/compress_integer_elias_gamma_simd.h -------------------------------------------------------------------------------- /source/compress_integer_elias_gamma_simd_vb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/compress_integer_elias_gamma_simd_vb.cpp -------------------------------------------------------------------------------- /source/compress_integer_elias_gamma_simd_vb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/compress_integer_elias_gamma_simd_vb.h -------------------------------------------------------------------------------- /source/compress_integer_lyck_16.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/compress_integer_lyck_16.cpp -------------------------------------------------------------------------------- /source/compress_integer_lyck_16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/compress_integer_lyck_16.h -------------------------------------------------------------------------------- /source/compress_integer_none.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/compress_integer_none.cpp -------------------------------------------------------------------------------- /source/compress_integer_none.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/compress_integer_none.h -------------------------------------------------------------------------------- /source/compress_integer_nybble_8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/compress_integer_nybble_8.cpp -------------------------------------------------------------------------------- /source/compress_integer_nybble_8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/compress_integer_nybble_8.h -------------------------------------------------------------------------------- /source/compress_integer_qmx_improved.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/compress_integer_qmx_improved.cpp -------------------------------------------------------------------------------- /source/compress_integer_qmx_improved.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/compress_integer_qmx_improved.h -------------------------------------------------------------------------------- /source/compress_integer_qmx_jass_v1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/compress_integer_qmx_jass_v1.cpp -------------------------------------------------------------------------------- /source/compress_integer_qmx_jass_v1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/compress_integer_qmx_jass_v1.h -------------------------------------------------------------------------------- /source/compress_integer_qmx_original.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/compress_integer_qmx_original.cpp -------------------------------------------------------------------------------- /source/compress_integer_qmx_original.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/compress_integer_qmx_original.h -------------------------------------------------------------------------------- /source/compress_integer_relative_10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/compress_integer_relative_10.cpp -------------------------------------------------------------------------------- /source/compress_integer_relative_10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/compress_integer_relative_10.h -------------------------------------------------------------------------------- /source/compress_integer_simple_16.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/compress_integer_simple_16.cpp -------------------------------------------------------------------------------- /source/compress_integer_simple_16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/compress_integer_simple_16.h -------------------------------------------------------------------------------- /source/compress_integer_simple_16_packed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/compress_integer_simple_16_packed.cpp -------------------------------------------------------------------------------- /source/compress_integer_simple_16_packed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/compress_integer_simple_16_packed.h -------------------------------------------------------------------------------- /source/compress_integer_simple_8b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/compress_integer_simple_8b.cpp -------------------------------------------------------------------------------- /source/compress_integer_simple_8b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/compress_integer_simple_8b.h -------------------------------------------------------------------------------- /source/compress_integer_simple_8b_packed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/compress_integer_simple_8b_packed.cpp -------------------------------------------------------------------------------- /source/compress_integer_simple_8b_packed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/compress_integer_simple_8b_packed.h -------------------------------------------------------------------------------- /source/compress_integer_simple_9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/compress_integer_simple_9.cpp -------------------------------------------------------------------------------- /source/compress_integer_simple_9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/compress_integer_simple_9.h -------------------------------------------------------------------------------- /source/compress_integer_simple_9_packed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/compress_integer_simple_9_packed.cpp -------------------------------------------------------------------------------- /source/compress_integer_simple_9_packed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/compress_integer_simple_9_packed.h -------------------------------------------------------------------------------- /source/compress_integer_stream_vbyte.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/compress_integer_stream_vbyte.cpp -------------------------------------------------------------------------------- /source/compress_integer_stream_vbyte.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/compress_integer_stream_vbyte.h -------------------------------------------------------------------------------- /source/compress_integer_variable_byte.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/compress_integer_variable_byte.cpp -------------------------------------------------------------------------------- /source/compress_integer_variable_byte.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/compress_integer_variable_byte.h -------------------------------------------------------------------------------- /source/deserialised_jass_v1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/deserialised_jass_v1.cpp -------------------------------------------------------------------------------- /source/deserialised_jass_v1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/deserialised_jass_v1.h -------------------------------------------------------------------------------- /source/deserialised_jass_v2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/deserialised_jass_v2.cpp -------------------------------------------------------------------------------- /source/deserialised_jass_v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/deserialised_jass_v2.h -------------------------------------------------------------------------------- /source/document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/document.h -------------------------------------------------------------------------------- /source/document_id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/document_id.h -------------------------------------------------------------------------------- /source/dynamic_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/dynamic_array.h -------------------------------------------------------------------------------- /source/evaluate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/evaluate.cpp -------------------------------------------------------------------------------- /source/evaluate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/evaluate.h -------------------------------------------------------------------------------- /source/evaluate_buying_power.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/evaluate_buying_power.cpp -------------------------------------------------------------------------------- /source/evaluate_buying_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/evaluate_buying_power.h -------------------------------------------------------------------------------- /source/evaluate_buying_power4k.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/evaluate_buying_power4k.cpp -------------------------------------------------------------------------------- /source/evaluate_buying_power4k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/evaluate_buying_power4k.h -------------------------------------------------------------------------------- /source/evaluate_buying_power_normalized_discounted_cumulative_gain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/evaluate_buying_power_normalized_discounted_cumulative_gain.cpp -------------------------------------------------------------------------------- /source/evaluate_buying_power_normalized_discounted_cumulative_gain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/evaluate_buying_power_normalized_discounted_cumulative_gain.h -------------------------------------------------------------------------------- /source/evaluate_cheapest_precision.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/evaluate_cheapest_precision.cpp -------------------------------------------------------------------------------- /source/evaluate_cheapest_precision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/evaluate_cheapest_precision.h -------------------------------------------------------------------------------- /source/evaluate_expected_search_length.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/evaluate_expected_search_length.cpp -------------------------------------------------------------------------------- /source/evaluate_expected_search_length.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/evaluate_expected_search_length.h -------------------------------------------------------------------------------- /source/evaluate_f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/evaluate_f.cpp -------------------------------------------------------------------------------- /source/evaluate_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/evaluate_f.h -------------------------------------------------------------------------------- /source/evaluate_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/evaluate_map.cpp -------------------------------------------------------------------------------- /source/evaluate_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/evaluate_map.h -------------------------------------------------------------------------------- /source/evaluate_mean_reciprocal_rank.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/evaluate_mean_reciprocal_rank.cpp -------------------------------------------------------------------------------- /source/evaluate_mean_reciprocal_rank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/evaluate_mean_reciprocal_rank.h -------------------------------------------------------------------------------- /source/evaluate_mean_reciprocal_rank4k.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/evaluate_mean_reciprocal_rank4k.cpp -------------------------------------------------------------------------------- /source/evaluate_mean_reciprocal_rank4k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/evaluate_mean_reciprocal_rank4k.h -------------------------------------------------------------------------------- /source/evaluate_precision.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/evaluate_precision.cpp -------------------------------------------------------------------------------- /source/evaluate_precision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/evaluate_precision.h -------------------------------------------------------------------------------- /source/evaluate_price_based_normalized_discounted_cumulative_gain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/evaluate_price_based_normalized_discounted_cumulative_gain.cpp -------------------------------------------------------------------------------- /source/evaluate_price_based_normalized_discounted_cumulative_gain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/evaluate_price_based_normalized_discounted_cumulative_gain.h -------------------------------------------------------------------------------- /source/evaluate_rank_biased_precision.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/evaluate_rank_biased_precision.cpp -------------------------------------------------------------------------------- /source/evaluate_rank_biased_precision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/evaluate_rank_biased_precision.h -------------------------------------------------------------------------------- /source/evaluate_recall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/evaluate_recall.cpp -------------------------------------------------------------------------------- /source/evaluate_recall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/evaluate_recall.h -------------------------------------------------------------------------------- /source/evaluate_relevant_returned.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/evaluate_relevant_returned.cpp -------------------------------------------------------------------------------- /source/evaluate_relevant_returned.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/evaluate_relevant_returned.h -------------------------------------------------------------------------------- /source/evaluate_selling_power.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/evaluate_selling_power.cpp -------------------------------------------------------------------------------- /source/evaluate_selling_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/evaluate_selling_power.h -------------------------------------------------------------------------------- /source/exception_done.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/exception_done.h -------------------------------------------------------------------------------- /source/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/file.cpp -------------------------------------------------------------------------------- /source/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/file.h -------------------------------------------------------------------------------- /source/forceinline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/forceinline.h -------------------------------------------------------------------------------- /source/global_new_delete.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/global_new_delete.h -------------------------------------------------------------------------------- /source/hardware_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/hardware_support.h -------------------------------------------------------------------------------- /source/hash_pearson.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/hash_pearson.cpp -------------------------------------------------------------------------------- /source/hash_pearson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/hash_pearson.h -------------------------------------------------------------------------------- /source/hash_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/hash_table.h -------------------------------------------------------------------------------- /source/heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/heap.h -------------------------------------------------------------------------------- /source/index_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/index_manager.h -------------------------------------------------------------------------------- /source/index_manager_sequential.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/index_manager_sequential.h -------------------------------------------------------------------------------- /source/index_postings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/index_postings.h -------------------------------------------------------------------------------- /source/index_postings_impact.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/index_postings_impact.h -------------------------------------------------------------------------------- /source/instream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/instream.h -------------------------------------------------------------------------------- /source/instream_deflate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/instream_deflate.cpp -------------------------------------------------------------------------------- /source/instream_deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/instream_deflate.h -------------------------------------------------------------------------------- /source/instream_directory_iterator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/instream_directory_iterator.cpp -------------------------------------------------------------------------------- /source/instream_directory_iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/instream_directory_iterator.h -------------------------------------------------------------------------------- /source/instream_document_fasta.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/instream_document_fasta.cpp -------------------------------------------------------------------------------- /source/instream_document_fasta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/instream_document_fasta.h -------------------------------------------------------------------------------- /source/instream_document_html.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/instream_document_html.h -------------------------------------------------------------------------------- /source/instream_document_trec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/instream_document_trec.cpp -------------------------------------------------------------------------------- /source/instream_document_trec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/instream_document_trec.h -------------------------------------------------------------------------------- /source/instream_document_unicoil_json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/instream_document_unicoil_json.cpp -------------------------------------------------------------------------------- /source/instream_document_unicoil_json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/instream_document_unicoil_json.h -------------------------------------------------------------------------------- /source/instream_document_warc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/instream_document_warc.cpp -------------------------------------------------------------------------------- /source/instream_document_warc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/instream_document_warc.h -------------------------------------------------------------------------------- /source/instream_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/instream_file.cpp -------------------------------------------------------------------------------- /source/instream_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/instream_file.h -------------------------------------------------------------------------------- /source/instream_file_star.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/instream_file_star.h -------------------------------------------------------------------------------- /source/instream_memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/instream_memory.cpp -------------------------------------------------------------------------------- /source/instream_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/instream_memory.h -------------------------------------------------------------------------------- /source/maths.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/maths.cpp -------------------------------------------------------------------------------- /source/maths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/maths.h -------------------------------------------------------------------------------- /source/parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/parser.cpp -------------------------------------------------------------------------------- /source/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/parser.h -------------------------------------------------------------------------------- /source/parser_fasta.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/parser_fasta.cpp -------------------------------------------------------------------------------- /source/parser_fasta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/parser_fasta.h -------------------------------------------------------------------------------- /source/parser_query.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/parser_query.cpp -------------------------------------------------------------------------------- /source/parser_query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/parser_query.h -------------------------------------------------------------------------------- /source/parser_unicoil_json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/parser_unicoil_json.cpp -------------------------------------------------------------------------------- /source/parser_unicoil_json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/parser_unicoil_json.h -------------------------------------------------------------------------------- /source/pointer_box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/pointer_box.h -------------------------------------------------------------------------------- /source/posting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/posting.h -------------------------------------------------------------------------------- /source/quantize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/quantize.h -------------------------------------------------------------------------------- /source/quantize_none.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/quantize_none.h -------------------------------------------------------------------------------- /source/query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/query.h -------------------------------------------------------------------------------- /source/query_block_max.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/query_block_max.h -------------------------------------------------------------------------------- /source/query_heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/query_heap.h -------------------------------------------------------------------------------- /source/query_simple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/query_simple.h -------------------------------------------------------------------------------- /source/query_term.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/query_term.h -------------------------------------------------------------------------------- /source/query_term_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/query_term_list.h -------------------------------------------------------------------------------- /source/ranking_function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/ranking_function.h -------------------------------------------------------------------------------- /source/ranking_function_atire_bm25.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/ranking_function_atire_bm25.h -------------------------------------------------------------------------------- /source/ranking_function_none.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/ranking_function_none.h -------------------------------------------------------------------------------- /source/reverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/reverse.h -------------------------------------------------------------------------------- /source/run_export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/run_export.h -------------------------------------------------------------------------------- /source/run_export_trec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/run_export_trec.h -------------------------------------------------------------------------------- /source/serialise_ci.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/serialise_ci.cpp -------------------------------------------------------------------------------- /source/serialise_ci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/serialise_ci.h -------------------------------------------------------------------------------- /source/serialise_forward_index.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/serialise_forward_index.cpp -------------------------------------------------------------------------------- /source/serialise_forward_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/serialise_forward_index.h -------------------------------------------------------------------------------- /source/serialise_integers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/serialise_integers.cpp -------------------------------------------------------------------------------- /source/serialise_integers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/serialise_integers.h -------------------------------------------------------------------------------- /source/serialise_jass_v1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/serialise_jass_v1.cpp -------------------------------------------------------------------------------- /source/serialise_jass_v1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/serialise_jass_v1.h -------------------------------------------------------------------------------- /source/serialise_jass_v2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/serialise_jass_v2.cpp -------------------------------------------------------------------------------- /source/serialise_jass_v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/serialise_jass_v2.h -------------------------------------------------------------------------------- /source/simd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/simd.h -------------------------------------------------------------------------------- /source/slice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/slice.h -------------------------------------------------------------------------------- /source/sort512_uint64_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/sort512_uint64_t.h -------------------------------------------------------------------------------- /source/statistics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/statistics.cpp -------------------------------------------------------------------------------- /source/statistics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/statistics.h -------------------------------------------------------------------------------- /source/stem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/stem.h -------------------------------------------------------------------------------- /source/stem_porter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/stem_porter.cpp -------------------------------------------------------------------------------- /source/stem_porter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/stem_porter.h -------------------------------------------------------------------------------- /source/string_cpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/string_cpp.h -------------------------------------------------------------------------------- /source/threads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/threads.cpp -------------------------------------------------------------------------------- /source/threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/threads.h -------------------------------------------------------------------------------- /source/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/timer.h -------------------------------------------------------------------------------- /source/top_k_heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/top_k_heap.h -------------------------------------------------------------------------------- /source/top_k_limit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/top_k_limit.cpp -------------------------------------------------------------------------------- /source/top_k_limit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/top_k_limit.h -------------------------------------------------------------------------------- /source/top_k_qsort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/top_k_qsort.cpp -------------------------------------------------------------------------------- /source/top_k_qsort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/top_k_qsort.h -------------------------------------------------------------------------------- /source/unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/unicode.h -------------------------------------------------------------------------------- /source/unittest_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/unittest_data.cpp -------------------------------------------------------------------------------- /source/unittest_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/unittest_data.h -------------------------------------------------------------------------------- /source/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/source/version.h -------------------------------------------------------------------------------- /tools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/tools/CMakeLists.txt -------------------------------------------------------------------------------- /tools/ECOM19_to_JASS_eval.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/tools/ECOM19_to_JASS_eval.cpp -------------------------------------------------------------------------------- /tools/ECOM19_to_run.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/tools/ECOM19_to_run.cpp -------------------------------------------------------------------------------- /tools/JASS_eval.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/tools/JASS_eval.cpp -------------------------------------------------------------------------------- /tools/JASS_index.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/tools/JASS_index.cpp -------------------------------------------------------------------------------- /tools/JASSv1_to_human.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/tools/JASSv1_to_human.cpp -------------------------------------------------------------------------------- /tools/ascii_database_to_c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/tools/ascii_database_to_c.cpp -------------------------------------------------------------------------------- /tools/bin_to_human.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/tools/bin_to_human.cpp -------------------------------------------------------------------------------- /tools/ciff_lin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/tools/ciff_lin.h -------------------------------------------------------------------------------- /tools/ciff_to_JASS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/tools/ciff_to_JASS.cpp -------------------------------------------------------------------------------- /tools/cmp_d_to_utype.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/tools/cmp_d_to_utype.d -------------------------------------------------------------------------------- /tools/coverity_scan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/tools/coverity_scan.sh -------------------------------------------------------------------------------- /tools/hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/tools/hash.cpp -------------------------------------------------------------------------------- /tools/protobuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/tools/protobuf.h -------------------------------------------------------------------------------- /tools/test_integer_compress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/tools/test_integer_compress.cpp -------------------------------------------------------------------------------- /tools/test_integer_compress_average.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/tools/test_integer_compress_average.cpp -------------------------------------------------------------------------------- /tools/test_unicode_database_to_c.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/tools/test_unicode_database_to_c.sh -------------------------------------------------------------------------------- /tools/travis_dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/tools/travis_dependencies.sh -------------------------------------------------------------------------------- /tools/trec_to_query.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/tools/trec_to_query.cpp -------------------------------------------------------------------------------- /tools/unicode_database_to_c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/tools/unicode_database_to_c.cpp -------------------------------------------------------------------------------- /tools/unittest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtrotman/JASSv2/HEAD/tools/unittest.cpp -------------------------------------------------------------------------------- /uploadpypi.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | python3 setup.py sdist 3 | twine upload dist/* 4 | --------------------------------------------------------------------------------