├── .gitignore ├── .travis.yml ├── Dockerfile ├── README.rst ├── algos.yaml ├── ann_benchmarks ├── __init__.py ├── algorithms │ ├── __init__.py │ ├── annoy.py │ ├── balltree.py │ ├── base.py │ ├── bruteforce.py │ ├── constructors.py │ ├── datasketch.py │ ├── definitions.py │ ├── dolphinnpy.py │ ├── faiss.py │ ├── faiss_gpu.py │ ├── falconn.py │ ├── flann.py │ ├── itu.py │ ├── kdtree.py │ ├── kgraph.py │ ├── lshf.py │ ├── nearpy.py │ ├── nmslib.py │ ├── panns.py │ ├── rpforest.py │ └── subprocess.py ├── constants.py ├── data.py ├── datasets.py ├── distance.py ├── main.py ├── plotting │ ├── __init__.py │ ├── metrics.py │ ├── plot_variants.py │ └── utils.py └── results.py ├── createwebsite.py ├── frontend └── website │ ├── css │ ├── bootstrap-theme.min.css │ ├── bootstrap.min.css │ ├── bootstrap.min.css.map │ └── style.css │ ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 │ └── js │ ├── Chart.js │ ├── Chart.min.js │ ├── bootstrap.js │ ├── bootstrap.min.js │ └── npm.js ├── install.sh ├── install ├── _ins_utilities.sh ├── convert_idx.py ├── convert_texmex_fvec.py ├── convert_word2vec_format.py ├── data-fashion-mnist.sh ├── data-gist.sh ├── data-glove.sh ├── data-hamming.sh ├── data-mnist.sh ├── data-nytimes.sh ├── data-random.sh ├── data-setsimilarity.sh ├── data-sift.sh ├── data-webspam.sh ├── lib-annoy-hamming.cpp ├── lib-annoy-hamming.sh ├── lib-annoy.cpp ├── lib-annoy.sh ├── lib-datasketch.sh ├── lib-dolphinn.cpp ├── lib-dolphinn.sh ├── lib-dolphinnpy.sh ├── lib-faiss.sh ├── lib-faiss_0001.patch ├── lib-faiss_0002.patch ├── lib-falconn.sh ├── lib-fcMIH.cpp ├── lib-flann.sh ├── lib-flann_0001.patch ├── lib-kgraph.sh ├── lib-mih-wrapper.cpp ├── lib-mih.sh ├── lib-mih_0001.patch ├── lib-mih_0002.patch ├── lib-mih_0003.patch ├── lib-nearpy.sh ├── lib-nmslib.sh ├── lib-panns.sh ├── lib-rpforest.sh └── lib-sklearn.sh ├── plot.py ├── protocol ├── README ├── c │ ├── Makefile │ ├── dummy.c │ ├── frontend.c │ └── tester.c ├── java │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── runner │ └── src │ │ └── dk │ │ └── itu │ │ └── epbprtv0 │ │ ├── Runner.java │ │ ├── Tokeniser.java │ │ ├── algorithm │ │ ├── DummyFactory.java │ │ ├── LinearFactory.java │ │ ├── PreparedQueryAlgorithm.java │ │ ├── QueryAlgorithm.java │ │ └── QueryAlgorithmFactory.java │ │ ├── distance │ │ ├── CosineDistance.java │ │ ├── DistanceMetric.java │ │ ├── EuclideanDistance.java │ │ └── HammingDistance.java │ │ └── types │ │ ├── BitInfo.java │ │ ├── DoubleInfo.java │ │ ├── IntInfo.java │ │ └── TypeInfo.java └── spec.txt ├── results ├── glove.kmeans.txt ├── glove.png └── sift.png ├── setup.py ├── summarise-results.py ├── test └── test.py ├── tools ├── random-input-generation │ ├── CMakeLists.txt │ ├── src │ │ ├── CMakeLists.txt │ │ └── generate-random-inputs-euclidean.cpp │ └── tclap-1.2.1 │ │ ├── AUTHORS │ │ ├── COPYING │ │ ├── ChangeLog │ │ ├── INSTALL │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── NEWS │ │ ├── README │ │ ├── aclocal.m4 │ │ ├── config │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── ac_cxx_have_long_long.m4 │ │ ├── ac_cxx_have_sstream.m4 │ │ ├── ac_cxx_have_strstream.m4 │ │ ├── ac_cxx_namespaces.m4 │ │ ├── ac_cxx_warn_effective_cxx.m4 │ │ ├── bb_enable_doxygen.m4 │ │ ├── config.h.in │ │ ├── depcomp │ │ ├── install-sh │ │ ├── missing │ │ └── mkinstalldirs │ │ ├── configure │ │ ├── configure.in │ │ ├── docs │ │ ├── Doxyfile.in │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── README │ │ ├── html │ │ │ ├── ArgException_8h.html │ │ │ ├── ArgException_8h_source.html │ │ │ ├── ArgTraits_8h.html │ │ │ ├── ArgTraits_8h_source.html │ │ │ ├── Arg_8h.html │ │ │ ├── Arg_8h_source.html │ │ │ ├── CVS │ │ │ │ ├── Entries │ │ │ │ ├── Repository │ │ │ │ └── Root │ │ │ ├── CmdLineInterface_8h.html │ │ │ ├── CmdLineInterface_8h_source.html │ │ │ ├── CmdLineOutput_8h.html │ │ │ ├── CmdLineOutput_8h_source.html │ │ │ ├── CmdLine_8h.html │ │ │ ├── CmdLine_8h_source.html │ │ │ ├── Constraint_8h.html │ │ │ ├── Constraint_8h_source.html │ │ │ ├── DocBookOutput_8h.html │ │ │ ├── DocBookOutput_8h_source.html │ │ │ ├── HelpVisitor_8h.html │ │ │ ├── HelpVisitor_8h_source.html │ │ │ ├── IgnoreRestVisitor_8h.html │ │ │ ├── IgnoreRestVisitor_8h_source.html │ │ │ ├── MultiArg_8h.html │ │ │ ├── MultiArg_8h_source.html │ │ │ ├── MultiSwitchArg_8h.html │ │ │ ├── MultiSwitchArg_8h_source.html │ │ │ ├── OptionalUnlabeledTracker_8h.html │ │ │ ├── OptionalUnlabeledTracker_8h_source.html │ │ │ ├── StandardTraits_8h.html │ │ │ ├── StandardTraits_8h_source.html │ │ │ ├── StdOutput_8h.html │ │ │ ├── StdOutput_8h_source.html │ │ │ ├── SwitchArg_8h.html │ │ │ ├── SwitchArg_8h_source.html │ │ │ ├── UnlabeledMultiArg_8h.html │ │ │ ├── UnlabeledMultiArg_8h_source.html │ │ │ ├── UnlabeledValueArg_8h.html │ │ │ ├── UnlabeledValueArg_8h_source.html │ │ │ ├── ValueArg_8h.html │ │ │ ├── ValueArg_8h_source.html │ │ │ ├── ValuesConstraint_8h.html │ │ │ ├── ValuesConstraint_8h_source.html │ │ │ ├── VersionVisitor_8h.html │ │ │ ├── VersionVisitor_8h_source.html │ │ │ ├── Visitor_8h.html │ │ │ ├── Visitor_8h_source.html │ │ │ ├── XorHandler_8h.html │ │ │ ├── XorHandler_8h_source.html │ │ │ ├── ZshCompletionOutput_8h.html │ │ │ ├── ZshCompletionOutput_8h_source.html │ │ │ ├── annotated.html │ │ │ ├── classTCLAP_1_1Arg-members.html │ │ │ ├── classTCLAP_1_1Arg.gif │ │ │ ├── classTCLAP_1_1Arg.html │ │ │ ├── classTCLAP_1_1ArgException-members.html │ │ │ ├── classTCLAP_1_1ArgException.gif │ │ │ ├── classTCLAP_1_1ArgException.html │ │ │ ├── classTCLAP_1_1ArgParseException-members.html │ │ │ ├── classTCLAP_1_1ArgParseException.gif │ │ │ ├── classTCLAP_1_1ArgParseException.html │ │ │ ├── classTCLAP_1_1CmdLine-members.html │ │ │ ├── classTCLAP_1_1CmdLine.gif │ │ │ ├── classTCLAP_1_1CmdLine.html │ │ │ ├── classTCLAP_1_1CmdLineInterface-members.html │ │ │ ├── classTCLAP_1_1CmdLineInterface.gif │ │ │ ├── classTCLAP_1_1CmdLineInterface.html │ │ │ ├── classTCLAP_1_1CmdLineOutput-members.html │ │ │ ├── classTCLAP_1_1CmdLineOutput.gif │ │ │ ├── classTCLAP_1_1CmdLineOutput.html │ │ │ ├── classTCLAP_1_1CmdLineParseException-members.html │ │ │ ├── classTCLAP_1_1CmdLineParseException.gif │ │ │ ├── classTCLAP_1_1CmdLineParseException.html │ │ │ ├── classTCLAP_1_1Constraint-members.html │ │ │ ├── classTCLAP_1_1Constraint.gif │ │ │ ├── classTCLAP_1_1Constraint.html │ │ │ ├── classTCLAP_1_1DocBookOutput-members.html │ │ │ ├── classTCLAP_1_1DocBookOutput.gif │ │ │ ├── classTCLAP_1_1DocBookOutput.html │ │ │ ├── classTCLAP_1_1ExitException-members.html │ │ │ ├── classTCLAP_1_1ExitException.html │ │ │ ├── classTCLAP_1_1HelpVisitor-members.html │ │ │ ├── classTCLAP_1_1HelpVisitor.gif │ │ │ ├── classTCLAP_1_1HelpVisitor.html │ │ │ ├── classTCLAP_1_1IgnoreRestVisitor-members.html │ │ │ ├── classTCLAP_1_1IgnoreRestVisitor.gif │ │ │ ├── classTCLAP_1_1IgnoreRestVisitor.html │ │ │ ├── classTCLAP_1_1MultiArg-members.html │ │ │ ├── classTCLAP_1_1MultiArg.gif │ │ │ ├── classTCLAP_1_1MultiArg.html │ │ │ ├── classTCLAP_1_1MultiSwitchArg-members.html │ │ │ ├── classTCLAP_1_1MultiSwitchArg.gif │ │ │ ├── classTCLAP_1_1MultiSwitchArg.html │ │ │ ├── classTCLAP_1_1OptionalUnlabeledTracker-members.html │ │ │ ├── classTCLAP_1_1OptionalUnlabeledTracker.html │ │ │ ├── classTCLAP_1_1SpecificationException-members.html │ │ │ ├── classTCLAP_1_1SpecificationException.gif │ │ │ ├── classTCLAP_1_1SpecificationException.html │ │ │ ├── classTCLAP_1_1StdOutput-members.html │ │ │ ├── classTCLAP_1_1StdOutput.gif │ │ │ ├── classTCLAP_1_1StdOutput.html │ │ │ ├── classTCLAP_1_1SwitchArg-members.html │ │ │ ├── classTCLAP_1_1SwitchArg.gif │ │ │ ├── classTCLAP_1_1SwitchArg.html │ │ │ ├── classTCLAP_1_1UnlabeledMultiArg-members.html │ │ │ ├── classTCLAP_1_1UnlabeledMultiArg.gif │ │ │ ├── classTCLAP_1_1UnlabeledMultiArg.html │ │ │ ├── classTCLAP_1_1UnlabeledValueArg-members.html │ │ │ ├── classTCLAP_1_1UnlabeledValueArg.gif │ │ │ ├── classTCLAP_1_1UnlabeledValueArg.html │ │ │ ├── classTCLAP_1_1ValueArg-members.html │ │ │ ├── classTCLAP_1_1ValueArg.gif │ │ │ ├── classTCLAP_1_1ValueArg.html │ │ │ ├── classTCLAP_1_1ValuesConstraint-members.html │ │ │ ├── classTCLAP_1_1ValuesConstraint.gif │ │ │ ├── classTCLAP_1_1ValuesConstraint.html │ │ │ ├── classTCLAP_1_1VersionVisitor-members.html │ │ │ ├── classTCLAP_1_1VersionVisitor.gif │ │ │ ├── classTCLAP_1_1VersionVisitor.html │ │ │ ├── classTCLAP_1_1Visitor-members.html │ │ │ ├── classTCLAP_1_1Visitor.gif │ │ │ ├── classTCLAP_1_1Visitor.html │ │ │ ├── classTCLAP_1_1XorHandler-members.html │ │ │ ├── classTCLAP_1_1XorHandler.html │ │ │ ├── classTCLAP_1_1ZshCompletionOutput-members.html │ │ │ ├── classTCLAP_1_1ZshCompletionOutput.gif │ │ │ ├── classTCLAP_1_1ZshCompletionOutput.html │ │ │ ├── classes.html │ │ │ ├── doxygen.css │ │ │ ├── doxygen.png │ │ │ ├── files.html │ │ │ ├── functions.html │ │ │ ├── functions_0x61.html │ │ │ ├── functions_0x62.html │ │ │ ├── functions_0x63.html │ │ │ ├── functions_0x64.html │ │ │ ├── functions_0x65.html │ │ │ ├── functions_0x66.html │ │ │ ├── functions_0x67.html │ │ │ ├── functions_0x68.html │ │ │ ├── functions_0x69.html │ │ │ ├── functions_0x6c.html │ │ │ ├── functions_0x6d.html │ │ │ ├── functions_0x6e.html │ │ │ ├── functions_0x6f.html │ │ │ ├── functions_0x70.html │ │ │ ├── functions_0x71.html │ │ │ ├── functions_0x72.html │ │ │ ├── functions_0x73.html │ │ │ ├── functions_0x74.html │ │ │ ├── functions_0x75.html │ │ │ ├── functions_0x76.html │ │ │ ├── functions_0x77.html │ │ │ ├── functions_0x78.html │ │ │ ├── functions_0x7a.html │ │ │ ├── functions_0x7e.html │ │ │ ├── functions_func.html │ │ │ ├── functions_func_0x61.html │ │ │ ├── functions_func_0x62.html │ │ │ ├── functions_func_0x63.html │ │ │ ├── functions_func_0x64.html │ │ │ ├── functions_func_0x65.html │ │ │ ├── functions_func_0x66.html │ │ │ ├── functions_func_0x67.html │ │ │ ├── functions_func_0x68.html │ │ │ ├── functions_func_0x69.html │ │ │ ├── functions_func_0x6c.html │ │ │ ├── functions_func_0x6d.html │ │ │ ├── functions_func_0x6e.html │ │ │ ├── functions_func_0x6f.html │ │ │ ├── functions_func_0x70.html │ │ │ ├── functions_func_0x71.html │ │ │ ├── functions_func_0x72.html │ │ │ ├── functions_func_0x73.html │ │ │ ├── functions_func_0x74.html │ │ │ ├── functions_func_0x75.html │ │ │ ├── functions_func_0x76.html │ │ │ ├── functions_func_0x77.html │ │ │ ├── functions_func_0x78.html │ │ │ ├── functions_func_0x7a.html │ │ │ ├── functions_func_0x7e.html │ │ │ ├── functions_type.html │ │ │ ├── functions_vars.html │ │ │ ├── globals.html │ │ │ ├── globals_defs.html │ │ │ ├── globals_type.html │ │ │ ├── hierarchy.html │ │ │ ├── index.html │ │ │ ├── namespaceTCLAP.html │ │ │ ├── namespacemembers.html │ │ │ ├── namespacemembers_func.html │ │ │ ├── namespacemembers_type.html │ │ │ ├── namespaces.html │ │ │ ├── structTCLAP_1_1ArgTraits-members.html │ │ │ ├── structTCLAP_1_1ArgTraits.html │ │ │ ├── structTCLAP_1_1ArgTraits_3_01bool_01_4-members.html │ │ │ ├── structTCLAP_1_1ArgTraits_3_01bool_01_4.html │ │ │ ├── structTCLAP_1_1ArgTraits_3_01char_01_4-members.html │ │ │ ├── structTCLAP_1_1ArgTraits_3_01char_01_4.html │ │ │ ├── structTCLAP_1_1ArgTraits_3_01double_01_4-members.html │ │ │ ├── structTCLAP_1_1ArgTraits_3_01double_01_4.html │ │ │ ├── structTCLAP_1_1ArgTraits_3_01float_01_4-members.html │ │ │ ├── structTCLAP_1_1ArgTraits_3_01float_01_4.html │ │ │ ├── structTCLAP_1_1ArgTraits_3_01int_01_4-members.html │ │ │ ├── structTCLAP_1_1ArgTraits_3_01int_01_4.html │ │ │ ├── structTCLAP_1_1ArgTraits_3_01long_01_4-members.html │ │ │ ├── structTCLAP_1_1ArgTraits_3_01long_01_4.html │ │ │ ├── structTCLAP_1_1ArgTraits_3_01short_01_4-members.html │ │ │ ├── structTCLAP_1_1ArgTraits_3_01short_01_4.html │ │ │ ├── structTCLAP_1_1ArgTraits_3_01std_1_1string_01_4-members.html │ │ │ ├── structTCLAP_1_1ArgTraits_3_01std_1_1string_01_4.html │ │ │ ├── structTCLAP_1_1ArgTraits_3_01unsigned_01char_01_4-members.html │ │ │ ├── structTCLAP_1_1ArgTraits_3_01unsigned_01char_01_4.html │ │ │ ├── structTCLAP_1_1ArgTraits_3_01unsigned_01int_01_4-members.html │ │ │ ├── structTCLAP_1_1ArgTraits_3_01unsigned_01int_01_4.html │ │ │ ├── structTCLAP_1_1ArgTraits_3_01unsigned_01long_01_4-members.html │ │ │ ├── structTCLAP_1_1ArgTraits_3_01unsigned_01long_01_4.html │ │ │ ├── structTCLAP_1_1ArgTraits_3_01unsigned_01short_01_4-members.html │ │ │ ├── structTCLAP_1_1ArgTraits_3_01unsigned_01short_01_4.html │ │ │ ├── structTCLAP_1_1ArgTraits_3_01wchar__t_01_4-members.html │ │ │ ├── structTCLAP_1_1ArgTraits_3_01wchar__t_01_4.html │ │ │ ├── structTCLAP_1_1StringLike-members.html │ │ │ ├── structTCLAP_1_1StringLike.html │ │ │ ├── structTCLAP_1_1StringLikeTrait-members.html │ │ │ ├── structTCLAP_1_1StringLikeTrait.html │ │ │ ├── structTCLAP_1_1ValueLike-members.html │ │ │ ├── structTCLAP_1_1ValueLike.html │ │ │ ├── structTCLAP_1_1ValueLikeTrait-members.html │ │ │ ├── structTCLAP_1_1ValueLikeTrait.html │ │ │ ├── tab_b.gif │ │ │ ├── tab_l.gif │ │ │ ├── tab_r.gif │ │ │ └── tabs.css │ │ ├── index.html │ │ ├── manual.html │ │ ├── manual.xml │ │ └── style.css │ │ ├── examples │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── test1.cpp │ │ ├── test10.cpp │ │ ├── test11.cpp │ │ ├── test12.cpp │ │ ├── test13.cpp │ │ ├── test14.cpp │ │ ├── test15.cpp │ │ ├── test16.cpp │ │ ├── test17-a.cpp │ │ ├── test17.cpp │ │ ├── test18.cpp │ │ ├── test19.cpp │ │ ├── test2.cpp │ │ ├── test20.cpp │ │ ├── test21.cpp │ │ ├── test3.cpp │ │ ├── test4.cpp │ │ ├── test5.cpp │ │ ├── test6.cpp │ │ ├── test7.cpp │ │ ├── test8.cpp │ │ └── test9.cpp │ │ ├── include │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ └── tclap │ │ │ ├── Arg.h │ │ │ ├── ArgException.h │ │ │ ├── ArgTraits.h │ │ │ ├── CmdLine.h │ │ │ ├── CmdLineInterface.h │ │ │ ├── CmdLineOutput.h │ │ │ ├── Constraint.h │ │ │ ├── DocBookOutput.h │ │ │ ├── HelpVisitor.h │ │ │ ├── IgnoreRestVisitor.h │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── MultiArg.h │ │ │ ├── MultiSwitchArg.h │ │ │ ├── OptionalUnlabeledTracker.h │ │ │ ├── StandardTraits.h │ │ │ ├── StdOutput.h │ │ │ ├── SwitchArg.h │ │ │ ├── UnlabeledMultiArg.h │ │ │ ├── UnlabeledValueArg.h │ │ │ ├── ValueArg.h │ │ │ ├── ValuesConstraint.h │ │ │ ├── VersionVisitor.h │ │ │ ├── Visitor.h │ │ │ ├── XorHandler.h │ │ │ └── ZshCompletionOutput.h │ │ ├── msc │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── README │ │ ├── examples │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── test1.vcproj │ │ │ ├── test2.vcproj │ │ │ ├── test3.vcproj │ │ │ ├── test4.vcproj │ │ │ ├── test5.vcproj │ │ │ ├── test6.vcproj │ │ │ ├── test7.vcproj │ │ │ └── test8.vcproj │ │ ├── tclap-beta.ncb │ │ ├── tclap-beta.sln │ │ ├── tclap-beta.suo │ │ └── tclap-beta.vcproj │ │ ├── tclap.pc.in │ │ └── tests │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── test1.sh │ │ ├── test10.sh │ │ ├── test11.sh │ │ ├── test12.sh │ │ ├── test13.sh │ │ ├── test14.sh │ │ ├── test15.sh │ │ ├── test16.sh │ │ ├── test17.sh │ │ ├── test18.sh │ │ ├── test19.sh │ │ ├── test2.sh │ │ ├── test20.sh │ │ ├── test21.sh │ │ ├── test22.sh │ │ ├── test23.sh │ │ ├── test24.sh │ │ ├── test25.sh │ │ ├── test26.sh │ │ ├── test27.sh │ │ ├── test28.sh │ │ ├── test29.sh │ │ ├── test3.sh │ │ ├── test30.sh │ │ ├── test31.sh │ │ ├── test32.sh │ │ ├── test33.sh │ │ ├── test34.sh │ │ ├── test35.sh │ │ ├── test36.sh │ │ ├── test37.sh │ │ ├── test38.sh │ │ ├── test39.sh │ │ ├── test4.sh │ │ ├── test40.sh │ │ ├── test41.sh │ │ ├── test42.sh │ │ ├── test43.sh │ │ ├── test44.sh │ │ ├── test45.sh │ │ ├── test46.sh │ │ ├── test47.sh │ │ ├── test48.sh │ │ ├── test49.sh │ │ ├── test5.sh │ │ ├── test50.sh │ │ ├── test51.sh │ │ ├── test52.sh │ │ ├── test53.sh │ │ ├── test54.sh │ │ ├── test55.sh │ │ ├── test56.sh │ │ ├── test57.sh │ │ ├── test58.sh │ │ ├── test59.sh │ │ ├── test6.sh │ │ ├── test60.sh │ │ ├── test61.sh │ │ ├── test62.sh │ │ ├── test63.sh │ │ ├── test64.sh │ │ ├── test65.sh │ │ ├── test66.sh │ │ ├── test67.sh │ │ ├── test68.sh │ │ ├── test69.sh │ │ ├── test7.sh │ │ ├── test70.sh │ │ ├── test71.sh │ │ ├── test72.sh │ │ ├── test73.sh │ │ ├── test74.sh │ │ ├── test75.sh │ │ ├── test76.sh │ │ ├── test77.sh │ │ ├── test78.sh │ │ ├── test8.sh │ │ └── test9.sh └── split-dataset.rb └── website ├── BallTree(nmslib).html ├── BallTree(nmslib).png ├── MP-lsh(lshkit).html ├── MP-lsh(lshkit).png ├── SW-graph(nmslib).html ├── SW-graph(nmslib).png ├── annoy.html ├── annoy.png ├── ball.html ├── ball.png ├── bitsampling.html ├── bitsampling.png ├── bruteforce-blas.html ├── bruteforce-blas.png ├── bruteforce.html ├── bruteforce.png ├── bruteforce0(nmslib).html ├── bruteforce0(nmslib).png ├── css ├── bootstrap-theme.min.css ├── bootstrap.min.css ├── bootstrap.min.css.map └── style.css ├── faiss-lsh.html ├── faiss-lsh.png ├── falconn.html ├── falconn.png ├── flann.html ├── flann.png ├── fonts ├── glyphicons-halflings-regular.eot ├── glyphicons-halflings-regular.svg ├── glyphicons-halflings-regular.ttf ├── glyphicons-halflings-regular.woff └── glyphicons-halflings-regular.woff2 ├── glove.html ├── glove.png ├── hnsw(nmslib).html ├── hnsw(nmslib).png ├── index.html ├── js ├── Chart.js ├── Chart.min.js ├── bootstrap.js ├── bootstrap.min.js └── npm.js ├── kd.html ├── kd.png ├── kgraph.html ├── kgraph.png ├── lshf.html ├── lshf.png ├── mih.html ├── mih.png ├── mnist-data.html ├── mnist-data.png ├── nearpy.html ├── nearpy.png ├── nytimes-hamming-data.html ├── nytimes-hamming-data.png ├── nytimes.tfidf.256.data.html ├── nytimes.tfidf.256.data.png ├── panns.html ├── panns.png ├── rand-unit-data.html ├── rand-unit-data.png ├── rand7-data.html ├── rand7-data.png ├── rpforest.html ├── rpforest.png ├── sift-data.html ├── sift-data.png ├── sift-hamming-data.html ├── sift-hamming-data.png ├── sift.html ├── sift.png ├── webspam-data.html └── webspam-data.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/README.rst -------------------------------------------------------------------------------- /algos.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/algos.yaml -------------------------------------------------------------------------------- /ann_benchmarks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/ann_benchmarks/__init__.py -------------------------------------------------------------------------------- /ann_benchmarks/algorithms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ann_benchmarks/algorithms/annoy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/ann_benchmarks/algorithms/annoy.py -------------------------------------------------------------------------------- /ann_benchmarks/algorithms/balltree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/ann_benchmarks/algorithms/balltree.py -------------------------------------------------------------------------------- /ann_benchmarks/algorithms/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/ann_benchmarks/algorithms/base.py -------------------------------------------------------------------------------- /ann_benchmarks/algorithms/bruteforce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/ann_benchmarks/algorithms/bruteforce.py -------------------------------------------------------------------------------- /ann_benchmarks/algorithms/constructors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/ann_benchmarks/algorithms/constructors.py -------------------------------------------------------------------------------- /ann_benchmarks/algorithms/datasketch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/ann_benchmarks/algorithms/datasketch.py -------------------------------------------------------------------------------- /ann_benchmarks/algorithms/definitions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/ann_benchmarks/algorithms/definitions.py -------------------------------------------------------------------------------- /ann_benchmarks/algorithms/dolphinnpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/ann_benchmarks/algorithms/dolphinnpy.py -------------------------------------------------------------------------------- /ann_benchmarks/algorithms/faiss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/ann_benchmarks/algorithms/faiss.py -------------------------------------------------------------------------------- /ann_benchmarks/algorithms/faiss_gpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/ann_benchmarks/algorithms/faiss_gpu.py -------------------------------------------------------------------------------- /ann_benchmarks/algorithms/falconn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/ann_benchmarks/algorithms/falconn.py -------------------------------------------------------------------------------- /ann_benchmarks/algorithms/flann.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/ann_benchmarks/algorithms/flann.py -------------------------------------------------------------------------------- /ann_benchmarks/algorithms/itu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/ann_benchmarks/algorithms/itu.py -------------------------------------------------------------------------------- /ann_benchmarks/algorithms/kdtree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/ann_benchmarks/algorithms/kdtree.py -------------------------------------------------------------------------------- /ann_benchmarks/algorithms/kgraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/ann_benchmarks/algorithms/kgraph.py -------------------------------------------------------------------------------- /ann_benchmarks/algorithms/lshf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/ann_benchmarks/algorithms/lshf.py -------------------------------------------------------------------------------- /ann_benchmarks/algorithms/nearpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/ann_benchmarks/algorithms/nearpy.py -------------------------------------------------------------------------------- /ann_benchmarks/algorithms/nmslib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/ann_benchmarks/algorithms/nmslib.py -------------------------------------------------------------------------------- /ann_benchmarks/algorithms/panns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/ann_benchmarks/algorithms/panns.py -------------------------------------------------------------------------------- /ann_benchmarks/algorithms/rpforest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/ann_benchmarks/algorithms/rpforest.py -------------------------------------------------------------------------------- /ann_benchmarks/algorithms/subprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/ann_benchmarks/algorithms/subprocess.py -------------------------------------------------------------------------------- /ann_benchmarks/constants.py: -------------------------------------------------------------------------------- 1 | INDEX_DIR = 'indices' 2 | -------------------------------------------------------------------------------- /ann_benchmarks/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/ann_benchmarks/data.py -------------------------------------------------------------------------------- /ann_benchmarks/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/ann_benchmarks/datasets.py -------------------------------------------------------------------------------- /ann_benchmarks/distance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/ann_benchmarks/distance.py -------------------------------------------------------------------------------- /ann_benchmarks/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/ann_benchmarks/main.py -------------------------------------------------------------------------------- /ann_benchmarks/plotting/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/ann_benchmarks/plotting/__init__.py -------------------------------------------------------------------------------- /ann_benchmarks/plotting/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/ann_benchmarks/plotting/metrics.py -------------------------------------------------------------------------------- /ann_benchmarks/plotting/plot_variants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/ann_benchmarks/plotting/plot_variants.py -------------------------------------------------------------------------------- /ann_benchmarks/plotting/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/ann_benchmarks/plotting/utils.py -------------------------------------------------------------------------------- /ann_benchmarks/results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/ann_benchmarks/results.py -------------------------------------------------------------------------------- /createwebsite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/createwebsite.py -------------------------------------------------------------------------------- /frontend/website/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/frontend/website/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /frontend/website/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/frontend/website/css/bootstrap.min.css -------------------------------------------------------------------------------- /frontend/website/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/frontend/website/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /frontend/website/css/style.css: -------------------------------------------------------------------------------- 1 | body { 2 | padding-top: 50px; 3 | } 4 | -------------------------------------------------------------------------------- /frontend/website/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/frontend/website/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /frontend/website/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/frontend/website/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /frontend/website/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/frontend/website/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /frontend/website/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/frontend/website/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /frontend/website/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/frontend/website/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /frontend/website/js/Chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/frontend/website/js/Chart.js -------------------------------------------------------------------------------- /frontend/website/js/Chart.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/frontend/website/js/Chart.min.js -------------------------------------------------------------------------------- /frontend/website/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/frontend/website/js/bootstrap.js -------------------------------------------------------------------------------- /frontend/website/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/frontend/website/js/bootstrap.min.js -------------------------------------------------------------------------------- /frontend/website/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/frontend/website/js/npm.js -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/install.sh -------------------------------------------------------------------------------- /install/_ins_utilities.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/install/_ins_utilities.sh -------------------------------------------------------------------------------- /install/convert_idx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/install/convert_idx.py -------------------------------------------------------------------------------- /install/convert_texmex_fvec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/install/convert_texmex_fvec.py -------------------------------------------------------------------------------- /install/convert_word2vec_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/install/convert_word2vec_format.py -------------------------------------------------------------------------------- /install/data-fashion-mnist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/install/data-fashion-mnist.sh -------------------------------------------------------------------------------- /install/data-gist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/install/data-gist.sh -------------------------------------------------------------------------------- /install/data-glove.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/install/data-glove.sh -------------------------------------------------------------------------------- /install/data-hamming.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/install/data-hamming.sh -------------------------------------------------------------------------------- /install/data-mnist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/install/data-mnist.sh -------------------------------------------------------------------------------- /install/data-nytimes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/install/data-nytimes.sh -------------------------------------------------------------------------------- /install/data-random.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/install/data-random.sh -------------------------------------------------------------------------------- /install/data-setsimilarity.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/install/data-setsimilarity.sh -------------------------------------------------------------------------------- /install/data-sift.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/install/data-sift.sh -------------------------------------------------------------------------------- /install/data-webspam.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/install/data-webspam.sh -------------------------------------------------------------------------------- /install/lib-annoy-hamming.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/install/lib-annoy-hamming.cpp -------------------------------------------------------------------------------- /install/lib-annoy-hamming.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/install/lib-annoy-hamming.sh -------------------------------------------------------------------------------- /install/lib-annoy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/install/lib-annoy.cpp -------------------------------------------------------------------------------- /install/lib-annoy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/install/lib-annoy.sh -------------------------------------------------------------------------------- /install/lib-datasketch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/install/lib-datasketch.sh -------------------------------------------------------------------------------- /install/lib-dolphinn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/install/lib-dolphinn.cpp -------------------------------------------------------------------------------- /install/lib-dolphinn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/install/lib-dolphinn.sh -------------------------------------------------------------------------------- /install/lib-dolphinnpy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/install/lib-dolphinnpy.sh -------------------------------------------------------------------------------- /install/lib-faiss.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/install/lib-faiss.sh -------------------------------------------------------------------------------- /install/lib-faiss_0001.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/install/lib-faiss_0001.patch -------------------------------------------------------------------------------- /install/lib-faiss_0002.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/install/lib-faiss_0002.patch -------------------------------------------------------------------------------- /install/lib-falconn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/install/lib-falconn.sh -------------------------------------------------------------------------------- /install/lib-fcMIH.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/install/lib-fcMIH.cpp -------------------------------------------------------------------------------- /install/lib-flann.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/install/lib-flann.sh -------------------------------------------------------------------------------- /install/lib-flann_0001.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/install/lib-flann_0001.patch -------------------------------------------------------------------------------- /install/lib-kgraph.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/install/lib-kgraph.sh -------------------------------------------------------------------------------- /install/lib-mih-wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/install/lib-mih-wrapper.cpp -------------------------------------------------------------------------------- /install/lib-mih.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/install/lib-mih.sh -------------------------------------------------------------------------------- /install/lib-mih_0001.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/install/lib-mih_0001.patch -------------------------------------------------------------------------------- /install/lib-mih_0002.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/install/lib-mih_0002.patch -------------------------------------------------------------------------------- /install/lib-mih_0003.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/install/lib-mih_0003.patch -------------------------------------------------------------------------------- /install/lib-nearpy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/install/lib-nearpy.sh -------------------------------------------------------------------------------- /install/lib-nmslib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/install/lib-nmslib.sh -------------------------------------------------------------------------------- /install/lib-panns.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/install/lib-panns.sh -------------------------------------------------------------------------------- /install/lib-rpforest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/install/lib-rpforest.sh -------------------------------------------------------------------------------- /install/lib-sklearn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/install/lib-sklearn.sh -------------------------------------------------------------------------------- /plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/plot.py -------------------------------------------------------------------------------- /protocol/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/protocol/README -------------------------------------------------------------------------------- /protocol/c/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/protocol/c/Makefile -------------------------------------------------------------------------------- /protocol/c/dummy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/protocol/c/dummy.c -------------------------------------------------------------------------------- /protocol/c/frontend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/protocol/c/frontend.c -------------------------------------------------------------------------------- /protocol/c/tester.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/protocol/c/tester.c -------------------------------------------------------------------------------- /protocol/java/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/protocol/java/.classpath -------------------------------------------------------------------------------- /protocol/java/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/protocol/java/.project -------------------------------------------------------------------------------- /protocol/java/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/protocol/java/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /protocol/java/runner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/protocol/java/runner -------------------------------------------------------------------------------- /protocol/java/src/dk/itu/epbprtv0/Runner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/protocol/java/src/dk/itu/epbprtv0/Runner.java -------------------------------------------------------------------------------- /protocol/java/src/dk/itu/epbprtv0/Tokeniser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/protocol/java/src/dk/itu/epbprtv0/Tokeniser.java -------------------------------------------------------------------------------- /protocol/java/src/dk/itu/epbprtv0/algorithm/DummyFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/protocol/java/src/dk/itu/epbprtv0/algorithm/DummyFactory.java -------------------------------------------------------------------------------- /protocol/java/src/dk/itu/epbprtv0/algorithm/LinearFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/protocol/java/src/dk/itu/epbprtv0/algorithm/LinearFactory.java -------------------------------------------------------------------------------- /protocol/java/src/dk/itu/epbprtv0/algorithm/PreparedQueryAlgorithm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/protocol/java/src/dk/itu/epbprtv0/algorithm/PreparedQueryAlgorithm.java -------------------------------------------------------------------------------- /protocol/java/src/dk/itu/epbprtv0/algorithm/QueryAlgorithm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/protocol/java/src/dk/itu/epbprtv0/algorithm/QueryAlgorithm.java -------------------------------------------------------------------------------- /protocol/java/src/dk/itu/epbprtv0/algorithm/QueryAlgorithmFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/protocol/java/src/dk/itu/epbprtv0/algorithm/QueryAlgorithmFactory.java -------------------------------------------------------------------------------- /protocol/java/src/dk/itu/epbprtv0/distance/CosineDistance.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/protocol/java/src/dk/itu/epbprtv0/distance/CosineDistance.java -------------------------------------------------------------------------------- /protocol/java/src/dk/itu/epbprtv0/distance/DistanceMetric.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/protocol/java/src/dk/itu/epbprtv0/distance/DistanceMetric.java -------------------------------------------------------------------------------- /protocol/java/src/dk/itu/epbprtv0/distance/EuclideanDistance.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/protocol/java/src/dk/itu/epbprtv0/distance/EuclideanDistance.java -------------------------------------------------------------------------------- /protocol/java/src/dk/itu/epbprtv0/distance/HammingDistance.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/protocol/java/src/dk/itu/epbprtv0/distance/HammingDistance.java -------------------------------------------------------------------------------- /protocol/java/src/dk/itu/epbprtv0/types/BitInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/protocol/java/src/dk/itu/epbprtv0/types/BitInfo.java -------------------------------------------------------------------------------- /protocol/java/src/dk/itu/epbprtv0/types/DoubleInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/protocol/java/src/dk/itu/epbprtv0/types/DoubleInfo.java -------------------------------------------------------------------------------- /protocol/java/src/dk/itu/epbprtv0/types/IntInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/protocol/java/src/dk/itu/epbprtv0/types/IntInfo.java -------------------------------------------------------------------------------- /protocol/java/src/dk/itu/epbprtv0/types/TypeInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/protocol/java/src/dk/itu/epbprtv0/types/TypeInfo.java -------------------------------------------------------------------------------- /protocol/spec.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/protocol/spec.txt -------------------------------------------------------------------------------- /results/glove.kmeans.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/results/glove.kmeans.txt -------------------------------------------------------------------------------- /results/glove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/results/glove.png -------------------------------------------------------------------------------- /results/sift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/results/sift.png -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/setup.py -------------------------------------------------------------------------------- /summarise-results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/summarise-results.py -------------------------------------------------------------------------------- /test/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/test/test.py -------------------------------------------------------------------------------- /tools/random-input-generation/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/CMakeLists.txt -------------------------------------------------------------------------------- /tools/random-input-generation/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/src/CMakeLists.txt -------------------------------------------------------------------------------- /tools/random-input-generation/src/generate-random-inputs-euclidean.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/src/generate-random-inputs-euclidean.cpp -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/AUTHORS -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/COPYING -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/ChangeLog -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/INSTALL -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/Makefile.am -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/Makefile.in -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/NEWS -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/README -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/aclocal.m4 -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/config/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/config/Makefile.am -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/config/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/config/Makefile.in -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/config/ac_cxx_have_long_long.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/config/ac_cxx_have_long_long.m4 -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/config/ac_cxx_have_sstream.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/config/ac_cxx_have_sstream.m4 -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/config/ac_cxx_have_strstream.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/config/ac_cxx_have_strstream.m4 -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/config/ac_cxx_namespaces.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/config/ac_cxx_namespaces.m4 -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/config/ac_cxx_warn_effective_cxx.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/config/ac_cxx_warn_effective_cxx.m4 -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/config/bb_enable_doxygen.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/config/bb_enable_doxygen.m4 -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/config/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/config/config.h.in -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/config/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/config/depcomp -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/config/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/config/install-sh -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/config/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/config/missing -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/config/mkinstalldirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/config/mkinstalldirs -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/configure -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/configure.in -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/Doxyfile.in -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/Makefile.am -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/Makefile.in -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/README -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/ArgException_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/ArgException_8h.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/ArgException_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/ArgException_8h_source.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/ArgTraits_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/ArgTraits_8h.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/ArgTraits_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/ArgTraits_8h_source.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/Arg_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/Arg_8h.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/Arg_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/Arg_8h_source.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/CVS/Entries: -------------------------------------------------------------------------------- 1 | D 2 | -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/CVS/Repository: -------------------------------------------------------------------------------- 1 | tclap/docs/html 2 | -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/CVS/Root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/CVS/Root -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/CmdLineInterface_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/CmdLineInterface_8h.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/CmdLineInterface_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/CmdLineInterface_8h_source.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/CmdLineOutput_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/CmdLineOutput_8h.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/CmdLineOutput_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/CmdLineOutput_8h_source.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/CmdLine_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/CmdLine_8h.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/CmdLine_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/CmdLine_8h_source.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/Constraint_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/Constraint_8h.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/Constraint_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/Constraint_8h_source.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/DocBookOutput_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/DocBookOutput_8h.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/DocBookOutput_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/DocBookOutput_8h_source.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/HelpVisitor_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/HelpVisitor_8h.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/HelpVisitor_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/HelpVisitor_8h_source.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/IgnoreRestVisitor_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/IgnoreRestVisitor_8h.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/IgnoreRestVisitor_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/IgnoreRestVisitor_8h_source.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/MultiArg_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/MultiArg_8h.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/MultiArg_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/MultiArg_8h_source.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/MultiSwitchArg_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/MultiSwitchArg_8h.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/MultiSwitchArg_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/MultiSwitchArg_8h_source.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/OptionalUnlabeledTracker_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/OptionalUnlabeledTracker_8h.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/OptionalUnlabeledTracker_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/OptionalUnlabeledTracker_8h_source.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/StandardTraits_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/StandardTraits_8h.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/StandardTraits_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/StandardTraits_8h_source.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/StdOutput_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/StdOutput_8h.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/StdOutput_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/StdOutput_8h_source.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/SwitchArg_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/SwitchArg_8h.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/SwitchArg_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/SwitchArg_8h_source.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/UnlabeledMultiArg_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/UnlabeledMultiArg_8h.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/UnlabeledMultiArg_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/UnlabeledMultiArg_8h_source.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/UnlabeledValueArg_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/UnlabeledValueArg_8h.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/UnlabeledValueArg_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/UnlabeledValueArg_8h_source.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/ValueArg_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/ValueArg_8h.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/ValueArg_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/ValueArg_8h_source.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/ValuesConstraint_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/ValuesConstraint_8h.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/ValuesConstraint_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/ValuesConstraint_8h_source.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/VersionVisitor_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/VersionVisitor_8h.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/VersionVisitor_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/VersionVisitor_8h_source.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/Visitor_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/Visitor_8h.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/Visitor_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/Visitor_8h_source.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/XorHandler_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/XorHandler_8h.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/XorHandler_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/XorHandler_8h_source.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/ZshCompletionOutput_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/ZshCompletionOutput_8h.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/ZshCompletionOutput_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/ZshCompletionOutput_8h_source.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/annotated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/annotated.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1Arg-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1Arg-members.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1Arg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1Arg.gif -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1Arg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1Arg.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1ArgException-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1ArgException-members.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1ArgException.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1ArgException.gif -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1ArgException.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1ArgException.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1ArgParseException-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1ArgParseException-members.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1ArgParseException.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1ArgParseException.gif -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1ArgParseException.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1ArgParseException.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1CmdLine-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1CmdLine-members.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1CmdLine.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1CmdLine.gif -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1CmdLine.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1CmdLine.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1CmdLineInterface-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1CmdLineInterface-members.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1CmdLineInterface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1CmdLineInterface.gif -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1CmdLineInterface.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1CmdLineInterface.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1CmdLineOutput-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1CmdLineOutput-members.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1CmdLineOutput.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1CmdLineOutput.gif -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1CmdLineOutput.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1CmdLineOutput.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1CmdLineParseException-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1CmdLineParseException-members.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1CmdLineParseException.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1CmdLineParseException.gif -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1CmdLineParseException.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1CmdLineParseException.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1Constraint-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1Constraint-members.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1Constraint.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1Constraint.gif -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1Constraint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1Constraint.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1DocBookOutput-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1DocBookOutput-members.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1DocBookOutput.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1DocBookOutput.gif -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1DocBookOutput.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1DocBookOutput.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1ExitException-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1ExitException-members.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1ExitException.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1ExitException.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1HelpVisitor-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1HelpVisitor-members.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1HelpVisitor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1HelpVisitor.gif -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1HelpVisitor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1HelpVisitor.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1IgnoreRestVisitor-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1IgnoreRestVisitor-members.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1IgnoreRestVisitor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1IgnoreRestVisitor.gif -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1IgnoreRestVisitor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1IgnoreRestVisitor.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1MultiArg-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1MultiArg-members.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1MultiArg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1MultiArg.gif -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1MultiArg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1MultiArg.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1MultiSwitchArg-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1MultiSwitchArg-members.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1MultiSwitchArg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1MultiSwitchArg.gif -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1MultiSwitchArg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1MultiSwitchArg.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1OptionalUnlabeledTracker-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1OptionalUnlabeledTracker-members.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1OptionalUnlabeledTracker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1OptionalUnlabeledTracker.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1SpecificationException-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1SpecificationException-members.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1SpecificationException.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1SpecificationException.gif -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1SpecificationException.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1SpecificationException.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1StdOutput-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1StdOutput-members.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1StdOutput.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1StdOutput.gif -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1StdOutput.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1StdOutput.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1SwitchArg-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1SwitchArg-members.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1SwitchArg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1SwitchArg.gif -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1SwitchArg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1SwitchArg.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1UnlabeledMultiArg-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1UnlabeledMultiArg-members.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1UnlabeledMultiArg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1UnlabeledMultiArg.gif -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1UnlabeledMultiArg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1UnlabeledMultiArg.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1UnlabeledValueArg-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1UnlabeledValueArg-members.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1UnlabeledValueArg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1UnlabeledValueArg.gif -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1UnlabeledValueArg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1UnlabeledValueArg.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1ValueArg-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1ValueArg-members.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1ValueArg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1ValueArg.gif -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1ValueArg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1ValueArg.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1ValuesConstraint-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1ValuesConstraint-members.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1ValuesConstraint.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1ValuesConstraint.gif -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1ValuesConstraint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1ValuesConstraint.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1VersionVisitor-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1VersionVisitor-members.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1VersionVisitor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1VersionVisitor.gif -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1VersionVisitor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1VersionVisitor.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1Visitor-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1Visitor-members.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1Visitor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1Visitor.gif -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1Visitor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1Visitor.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1XorHandler-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1XorHandler-members.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1XorHandler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1XorHandler.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1ZshCompletionOutput-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1ZshCompletionOutput-members.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1ZshCompletionOutput.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1ZshCompletionOutput.gif -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1ZshCompletionOutput.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/classTCLAP_1_1ZshCompletionOutput.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/classes.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/doxygen.css -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/doxygen.png -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/files.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/functions.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/functions_0x61.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/functions_0x61.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/functions_0x62.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/functions_0x62.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/functions_0x63.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/functions_0x63.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/functions_0x64.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/functions_0x64.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/functions_0x65.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/functions_0x65.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/functions_0x66.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/functions_0x66.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/functions_0x67.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/functions_0x67.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/functions_0x68.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/functions_0x68.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/functions_0x69.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/functions_0x69.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/functions_0x6c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/functions_0x6c.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/functions_0x6d.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/functions_0x6d.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/functions_0x6e.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/functions_0x6e.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/functions_0x6f.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/functions_0x6f.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/functions_0x70.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/functions_0x70.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/functions_0x71.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/functions_0x71.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/functions_0x72.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/functions_0x72.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/functions_0x73.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/functions_0x73.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/functions_0x74.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/functions_0x74.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/functions_0x75.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/functions_0x75.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/functions_0x76.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/functions_0x76.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/functions_0x77.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/functions_0x77.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/functions_0x78.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/functions_0x78.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/functions_0x7a.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/functions_0x7a.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/functions_0x7e.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/functions_0x7e.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/functions_func.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/functions_func.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/functions_func_0x61.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/functions_func_0x61.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/functions_func_0x62.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/functions_func_0x62.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/functions_func_0x63.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/functions_func_0x63.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/functions_func_0x64.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/functions_func_0x64.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/functions_func_0x65.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/functions_func_0x65.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/functions_func_0x66.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/functions_func_0x66.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/functions_func_0x67.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/functions_func_0x67.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/functions_func_0x68.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/functions_func_0x68.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/functions_func_0x69.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/functions_func_0x69.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/functions_func_0x6c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/functions_func_0x6c.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/functions_func_0x6d.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/functions_func_0x6d.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/functions_func_0x6e.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/functions_func_0x6e.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/functions_func_0x6f.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/functions_func_0x6f.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/functions_func_0x70.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/functions_func_0x70.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/functions_func_0x71.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/functions_func_0x71.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/functions_func_0x72.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/functions_func_0x72.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/functions_func_0x73.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/functions_func_0x73.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/functions_func_0x74.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/functions_func_0x74.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/functions_func_0x75.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/functions_func_0x75.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/functions_func_0x76.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/functions_func_0x76.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/functions_func_0x77.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/functions_func_0x77.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/functions_func_0x78.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/functions_func_0x78.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/functions_func_0x7a.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/functions_func_0x7a.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/functions_func_0x7e.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/functions_func_0x7e.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/functions_type.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/functions_type.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/functions_vars.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/functions_vars.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/globals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/globals.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/globals_defs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/globals_defs.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/globals_type.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/globals_type.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/hierarchy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/hierarchy.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/index.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/namespaceTCLAP.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/namespaceTCLAP.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/namespacemembers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/namespacemembers.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/namespacemembers_func.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/namespacemembers_func.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/namespacemembers_type.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/namespacemembers_type.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/namespaces.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/namespaces.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/structTCLAP_1_1ArgTraits-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/structTCLAP_1_1ArgTraits-members.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/structTCLAP_1_1ArgTraits.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/structTCLAP_1_1ArgTraits.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/structTCLAP_1_1ArgTraits_3_01bool_01_4-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/structTCLAP_1_1ArgTraits_3_01bool_01_4-members.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/structTCLAP_1_1ArgTraits_3_01bool_01_4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/structTCLAP_1_1ArgTraits_3_01bool_01_4.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/structTCLAP_1_1ArgTraits_3_01char_01_4-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/structTCLAP_1_1ArgTraits_3_01char_01_4-members.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/structTCLAP_1_1ArgTraits_3_01char_01_4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/structTCLAP_1_1ArgTraits_3_01char_01_4.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/structTCLAP_1_1ArgTraits_3_01double_01_4-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/structTCLAP_1_1ArgTraits_3_01double_01_4-members.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/structTCLAP_1_1ArgTraits_3_01double_01_4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/structTCLAP_1_1ArgTraits_3_01double_01_4.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/structTCLAP_1_1ArgTraits_3_01float_01_4-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/structTCLAP_1_1ArgTraits_3_01float_01_4-members.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/structTCLAP_1_1ArgTraits_3_01float_01_4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/structTCLAP_1_1ArgTraits_3_01float_01_4.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/structTCLAP_1_1ArgTraits_3_01int_01_4-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/structTCLAP_1_1ArgTraits_3_01int_01_4-members.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/structTCLAP_1_1ArgTraits_3_01int_01_4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/structTCLAP_1_1ArgTraits_3_01int_01_4.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/structTCLAP_1_1ArgTraits_3_01long_01_4-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/structTCLAP_1_1ArgTraits_3_01long_01_4-members.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/structTCLAP_1_1ArgTraits_3_01long_01_4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/structTCLAP_1_1ArgTraits_3_01long_01_4.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/structTCLAP_1_1ArgTraits_3_01short_01_4-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/structTCLAP_1_1ArgTraits_3_01short_01_4-members.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/structTCLAP_1_1ArgTraits_3_01short_01_4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/structTCLAP_1_1ArgTraits_3_01short_01_4.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/structTCLAP_1_1ArgTraits_3_01std_1_1string_01_4-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/structTCLAP_1_1ArgTraits_3_01std_1_1string_01_4-members.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/structTCLAP_1_1ArgTraits_3_01std_1_1string_01_4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/structTCLAP_1_1ArgTraits_3_01std_1_1string_01_4.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/structTCLAP_1_1ArgTraits_3_01unsigned_01char_01_4-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/structTCLAP_1_1ArgTraits_3_01unsigned_01char_01_4-members.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/structTCLAP_1_1ArgTraits_3_01unsigned_01char_01_4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/structTCLAP_1_1ArgTraits_3_01unsigned_01char_01_4.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/structTCLAP_1_1ArgTraits_3_01unsigned_01int_01_4-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/structTCLAP_1_1ArgTraits_3_01unsigned_01int_01_4-members.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/structTCLAP_1_1ArgTraits_3_01unsigned_01int_01_4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/structTCLAP_1_1ArgTraits_3_01unsigned_01int_01_4.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/structTCLAP_1_1ArgTraits_3_01unsigned_01long_01_4-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/structTCLAP_1_1ArgTraits_3_01unsigned_01long_01_4-members.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/structTCLAP_1_1ArgTraits_3_01unsigned_01long_01_4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/structTCLAP_1_1ArgTraits_3_01unsigned_01long_01_4.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/structTCLAP_1_1ArgTraits_3_01unsigned_01short_01_4-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/structTCLAP_1_1ArgTraits_3_01unsigned_01short_01_4-members.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/structTCLAP_1_1ArgTraits_3_01unsigned_01short_01_4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/structTCLAP_1_1ArgTraits_3_01unsigned_01short_01_4.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/structTCLAP_1_1ArgTraits_3_01wchar__t_01_4-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/structTCLAP_1_1ArgTraits_3_01wchar__t_01_4-members.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/structTCLAP_1_1ArgTraits_3_01wchar__t_01_4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/structTCLAP_1_1ArgTraits_3_01wchar__t_01_4.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/structTCLAP_1_1StringLike-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/structTCLAP_1_1StringLike-members.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/structTCLAP_1_1StringLike.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/structTCLAP_1_1StringLike.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/structTCLAP_1_1StringLikeTrait-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/structTCLAP_1_1StringLikeTrait-members.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/structTCLAP_1_1StringLikeTrait.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/structTCLAP_1_1StringLikeTrait.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/structTCLAP_1_1ValueLike-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/structTCLAP_1_1ValueLike-members.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/structTCLAP_1_1ValueLike.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/structTCLAP_1_1ValueLike.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/structTCLAP_1_1ValueLikeTrait-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/structTCLAP_1_1ValueLikeTrait-members.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/structTCLAP_1_1ValueLikeTrait.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/structTCLAP_1_1ValueLikeTrait.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/tab_b.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/tab_b.gif -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/tab_l.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/tab_l.gif -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/tab_r.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/tab_r.gif -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/html/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/html/tabs.css -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/index.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/manual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/manual.html -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/manual.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/manual.xml -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/docs/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/docs/style.css -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/examples/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/examples/Makefile.am -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/examples/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/examples/Makefile.in -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/examples/test1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/examples/test1.cpp -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/examples/test10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/examples/test10.cpp -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/examples/test11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/examples/test11.cpp -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/examples/test12.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/examples/test12.cpp -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/examples/test13.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/examples/test13.cpp -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/examples/test14.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/examples/test14.cpp -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/examples/test15.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/examples/test15.cpp -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/examples/test16.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/examples/test16.cpp -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/examples/test17-a.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/examples/test17.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main() { } 4 | -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/examples/test18.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/examples/test18.cpp -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/examples/test19.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/examples/test19.cpp -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/examples/test2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/examples/test2.cpp -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/examples/test20.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/examples/test20.cpp -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/examples/test21.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/examples/test21.cpp -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/examples/test3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/examples/test3.cpp -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/examples/test4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/examples/test4.cpp -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/examples/test5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/examples/test5.cpp -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/examples/test6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/examples/test6.cpp -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/examples/test7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/examples/test7.cpp -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/examples/test8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/examples/test8.cpp -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/examples/test9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/examples/test9.cpp -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/include/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = tclap 2 | -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/include/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/include/Makefile.in -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/include/tclap/Arg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/include/tclap/Arg.h -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/include/tclap/ArgException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/include/tclap/ArgException.h -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/include/tclap/ArgTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/include/tclap/ArgTraits.h -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/include/tclap/CmdLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/include/tclap/CmdLine.h -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/include/tclap/CmdLineInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/include/tclap/CmdLineInterface.h -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/include/tclap/CmdLineOutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/include/tclap/CmdLineOutput.h -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/include/tclap/Constraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/include/tclap/Constraint.h -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/include/tclap/DocBookOutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/include/tclap/DocBookOutput.h -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/include/tclap/HelpVisitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/include/tclap/HelpVisitor.h -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/include/tclap/IgnoreRestVisitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/include/tclap/IgnoreRestVisitor.h -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/include/tclap/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/include/tclap/Makefile.am -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/include/tclap/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/include/tclap/Makefile.in -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/include/tclap/MultiArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/include/tclap/MultiArg.h -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/include/tclap/MultiSwitchArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/include/tclap/MultiSwitchArg.h -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/include/tclap/OptionalUnlabeledTracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/include/tclap/OptionalUnlabeledTracker.h -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/include/tclap/StandardTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/include/tclap/StandardTraits.h -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/include/tclap/StdOutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/include/tclap/StdOutput.h -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/include/tclap/SwitchArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/include/tclap/SwitchArg.h -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/include/tclap/UnlabeledMultiArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/include/tclap/UnlabeledMultiArg.h -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/include/tclap/UnlabeledValueArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/include/tclap/UnlabeledValueArg.h -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/include/tclap/ValueArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/include/tclap/ValueArg.h -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/include/tclap/ValuesConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/include/tclap/ValuesConstraint.h -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/include/tclap/VersionVisitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/include/tclap/VersionVisitor.h -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/include/tclap/Visitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/include/tclap/Visitor.h -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/include/tclap/XorHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/include/tclap/XorHandler.h -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/include/tclap/ZshCompletionOutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/include/tclap/ZshCompletionOutput.h -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/msc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/msc/Makefile.am -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/msc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/msc/Makefile.in -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/msc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/msc/README -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/msc/examples/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/msc/examples/Makefile.am -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/msc/examples/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/msc/examples/Makefile.in -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/msc/examples/test1.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/msc/examples/test1.vcproj -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/msc/examples/test2.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/msc/examples/test2.vcproj -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/msc/examples/test3.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/msc/examples/test3.vcproj -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/msc/examples/test4.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/msc/examples/test4.vcproj -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/msc/examples/test5.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/msc/examples/test5.vcproj -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/msc/examples/test6.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/msc/examples/test6.vcproj -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/msc/examples/test7.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/msc/examples/test7.vcproj -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/msc/examples/test8.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/msc/examples/test8.vcproj -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/msc/tclap-beta.ncb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/msc/tclap-beta.ncb -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/msc/tclap-beta.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/msc/tclap-beta.sln -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/msc/tclap-beta.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/msc/tclap-beta.suo -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/msc/tclap-beta.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/msc/tclap-beta.vcproj -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/tclap.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/tclap.pc.in -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/tests/Makefile.am -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/tests/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/tests/Makefile.in -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/tests/test1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/tests/test1.sh -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/tests/test10.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/tests/test10.sh -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/tests/test11.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/tests/test11.sh -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/tests/test12.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/tests/test12.sh -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/tests/test13.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/tests/test13.sh -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/tests/test14.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/tests/test14.sh -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/tests/test15.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/tests/test15.sh -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/tests/test16.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/tests/test16.sh -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/tests/test17.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/tests/test17.sh -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/tests/test18.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/tests/test18.sh -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/tests/test19.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/tests/test19.sh -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/tests/test2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/tests/test2.sh -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/tests/test20.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/tests/test20.sh -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/tests/test21.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/tests/test21.sh -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/tests/test22.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/tests/test22.sh -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/tests/test23.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/tests/test23.sh -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/tests/test24.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/tests/test24.sh -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/tests/test25.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/tests/test25.sh -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/tests/test26.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/tests/test26.sh -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/tests/test27.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/tests/test27.sh -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/tests/test28.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/tests/test28.sh -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/tests/test29.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/tests/test29.sh -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/tests/test3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/tests/test3.sh -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/tests/test30.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/tests/test30.sh -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/tests/test31.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/tests/test31.sh -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/tests/test32.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/tests/test32.sh -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/tests/test33.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/tests/test33.sh -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/tests/test34.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/tests/test34.sh -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/tests/test35.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/tests/test35.sh -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/tests/test36.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/tests/test36.sh -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/tests/test37.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/tests/test37.sh -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/tests/test38.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/tests/test38.sh -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/tests/test39.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/tests/test39.sh -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/tests/test4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/tests/test4.sh -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/tests/test40.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/tests/test40.sh -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/tests/test41.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/tests/test41.sh -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/tests/test42.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/tests/test42.sh -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/tests/test43.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/tests/test43.sh -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/tests/test44.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/tests/test44.sh -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/tests/test45.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/tests/test45.sh -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/tests/test46.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/tests/test46.sh -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/tests/test47.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/tests/test47.sh -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/tests/test48.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/tests/test48.sh -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/tests/test49.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/tests/test49.sh -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/tests/test5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/tests/test5.sh -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/tests/test50.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/tests/test50.sh -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/tests/test51.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/tests/test51.sh -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/tests/test52.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/tests/test52.sh -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/tests/test53.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/tests/test53.sh -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/tests/test54.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/tests/test54.sh -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/tests/test55.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/tests/test55.sh -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/tests/test56.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/tests/test56.sh -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/tests/test57.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/tests/test57.sh -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/tests/test58.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/tests/test58.sh -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/tests/test59.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/tests/test59.sh -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/tests/test6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/tests/test6.sh -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/tests/test60.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/tests/test60.sh -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/tests/test61.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/tests/test61.sh -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/tests/test62.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/tests/test62.sh -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/tests/test63.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/tests/test63.sh -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/tests/test64.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/tests/test64.sh -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/tests/test65.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/tests/test65.sh -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/tests/test66.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/tests/test66.sh -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/tests/test67.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/tests/test67.sh -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/tests/test68.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/tests/test68.sh -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/tests/test69.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/tests/test69.sh -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/tests/test7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/tests/test7.sh -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/tests/test70.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/tests/test70.sh -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/tests/test71.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/tests/test71.sh -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/tests/test72.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/tests/test72.sh -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/tests/test73.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/tests/test73.sh -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/tests/test74.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/tests/test74.sh -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/tests/test75.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/tests/test75.sh -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/tests/test76.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/tests/test76.sh -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/tests/test77.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/tests/test77.sh -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/tests/test78.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/tests/test78.sh -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/tests/test8.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/tests/test8.sh -------------------------------------------------------------------------------- /tools/random-input-generation/tclap-1.2.1/tests/test9.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/random-input-generation/tclap-1.2.1/tests/test9.sh -------------------------------------------------------------------------------- /tools/split-dataset.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/tools/split-dataset.rb -------------------------------------------------------------------------------- /website/BallTree(nmslib).html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/website/BallTree(nmslib).html -------------------------------------------------------------------------------- /website/BallTree(nmslib).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/website/BallTree(nmslib).png -------------------------------------------------------------------------------- /website/MP-lsh(lshkit).html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/website/MP-lsh(lshkit).html -------------------------------------------------------------------------------- /website/MP-lsh(lshkit).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/website/MP-lsh(lshkit).png -------------------------------------------------------------------------------- /website/SW-graph(nmslib).html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/website/SW-graph(nmslib).html -------------------------------------------------------------------------------- /website/SW-graph(nmslib).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/website/SW-graph(nmslib).png -------------------------------------------------------------------------------- /website/annoy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/website/annoy.html -------------------------------------------------------------------------------- /website/annoy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/website/annoy.png -------------------------------------------------------------------------------- /website/ball.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/website/ball.html -------------------------------------------------------------------------------- /website/ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/website/ball.png -------------------------------------------------------------------------------- /website/bitsampling.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/website/bitsampling.html -------------------------------------------------------------------------------- /website/bitsampling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/website/bitsampling.png -------------------------------------------------------------------------------- /website/bruteforce-blas.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/website/bruteforce-blas.html -------------------------------------------------------------------------------- /website/bruteforce-blas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/website/bruteforce-blas.png -------------------------------------------------------------------------------- /website/bruteforce.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/website/bruteforce.html -------------------------------------------------------------------------------- /website/bruteforce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/website/bruteforce.png -------------------------------------------------------------------------------- /website/bruteforce0(nmslib).html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/website/bruteforce0(nmslib).html -------------------------------------------------------------------------------- /website/bruteforce0(nmslib).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/website/bruteforce0(nmslib).png -------------------------------------------------------------------------------- /website/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/website/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /website/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/website/css/bootstrap.min.css -------------------------------------------------------------------------------- /website/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/website/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /website/css/style.css: -------------------------------------------------------------------------------- 1 | body { 2 | padding-top: 50px; 3 | } 4 | -------------------------------------------------------------------------------- /website/faiss-lsh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/website/faiss-lsh.html -------------------------------------------------------------------------------- /website/faiss-lsh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/website/faiss-lsh.png -------------------------------------------------------------------------------- /website/falconn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/website/falconn.html -------------------------------------------------------------------------------- /website/falconn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/website/falconn.png -------------------------------------------------------------------------------- /website/flann.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/website/flann.html -------------------------------------------------------------------------------- /website/flann.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/website/flann.png -------------------------------------------------------------------------------- /website/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/website/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /website/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/website/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /website/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/website/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /website/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/website/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /website/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/website/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /website/glove.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/website/glove.html -------------------------------------------------------------------------------- /website/glove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/website/glove.png -------------------------------------------------------------------------------- /website/hnsw(nmslib).html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/website/hnsw(nmslib).html -------------------------------------------------------------------------------- /website/hnsw(nmslib).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/website/hnsw(nmslib).png -------------------------------------------------------------------------------- /website/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/website/index.html -------------------------------------------------------------------------------- /website/js/Chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/website/js/Chart.js -------------------------------------------------------------------------------- /website/js/Chart.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/website/js/Chart.min.js -------------------------------------------------------------------------------- /website/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/website/js/bootstrap.js -------------------------------------------------------------------------------- /website/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/website/js/bootstrap.min.js -------------------------------------------------------------------------------- /website/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/website/js/npm.js -------------------------------------------------------------------------------- /website/kd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/website/kd.html -------------------------------------------------------------------------------- /website/kd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/website/kd.png -------------------------------------------------------------------------------- /website/kgraph.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/website/kgraph.html -------------------------------------------------------------------------------- /website/kgraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/website/kgraph.png -------------------------------------------------------------------------------- /website/lshf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/website/lshf.html -------------------------------------------------------------------------------- /website/lshf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/website/lshf.png -------------------------------------------------------------------------------- /website/mih.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/website/mih.html -------------------------------------------------------------------------------- /website/mih.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/website/mih.png -------------------------------------------------------------------------------- /website/mnist-data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/website/mnist-data.html -------------------------------------------------------------------------------- /website/mnist-data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/website/mnist-data.png -------------------------------------------------------------------------------- /website/nearpy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/website/nearpy.html -------------------------------------------------------------------------------- /website/nearpy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/website/nearpy.png -------------------------------------------------------------------------------- /website/nytimes-hamming-data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/website/nytimes-hamming-data.html -------------------------------------------------------------------------------- /website/nytimes-hamming-data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/website/nytimes-hamming-data.png -------------------------------------------------------------------------------- /website/nytimes.tfidf.256.data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/website/nytimes.tfidf.256.data.html -------------------------------------------------------------------------------- /website/nytimes.tfidf.256.data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/website/nytimes.tfidf.256.data.png -------------------------------------------------------------------------------- /website/panns.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/website/panns.html -------------------------------------------------------------------------------- /website/panns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/website/panns.png -------------------------------------------------------------------------------- /website/rand-unit-data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/website/rand-unit-data.html -------------------------------------------------------------------------------- /website/rand-unit-data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/website/rand-unit-data.png -------------------------------------------------------------------------------- /website/rand7-data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/website/rand7-data.html -------------------------------------------------------------------------------- /website/rand7-data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/website/rand7-data.png -------------------------------------------------------------------------------- /website/rpforest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/website/rpforest.html -------------------------------------------------------------------------------- /website/rpforest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/website/rpforest.png -------------------------------------------------------------------------------- /website/sift-data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/website/sift-data.html -------------------------------------------------------------------------------- /website/sift-data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/website/sift-data.png -------------------------------------------------------------------------------- /website/sift-hamming-data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/website/sift-hamming-data.html -------------------------------------------------------------------------------- /website/sift-hamming-data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/website/sift-hamming-data.png -------------------------------------------------------------------------------- /website/sift.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/website/sift.html -------------------------------------------------------------------------------- /website/sift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/website/sift.png -------------------------------------------------------------------------------- /website/webspam-data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/website/webspam-data.html -------------------------------------------------------------------------------- /website/webspam-data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maumueller/ann-benchmarks/HEAD/website/webspam-data.png --------------------------------------------------------------------------------