├── .DS_Store ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── algorithms ├── .DS_Store ├── GA │ ├── efanna_graph │ │ ├── CMakeFiles │ │ │ ├── 3.13.4 │ │ │ │ ├── CMakeCCompiler.cmake │ │ │ │ ├── CMakeCXXCompiler.cmake │ │ │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ │ │ ├── CMakeSystem.cmake │ │ │ │ ├── CompilerIdC │ │ │ │ │ ├── CMakeCCompilerId.c │ │ │ │ │ └── a.out │ │ │ │ └── CompilerIdCXX │ │ │ │ │ ├── CMakeCXXCompilerId.cpp │ │ │ │ │ └── a.out │ │ │ ├── CMakeDirectoryInformation.cmake │ │ │ ├── CMakeOutput.log │ │ │ ├── FindOpenMP │ │ │ │ ├── OpenMPCheckVersion.c │ │ │ │ ├── OpenMPCheckVersion.cpp │ │ │ │ ├── OpenMPTryFlag.c │ │ │ │ ├── OpenMPTryFlag.cpp │ │ │ │ ├── ompver_C.bin │ │ │ │ └── ompver_CXX.bin │ │ │ ├── Makefile.cmake │ │ │ ├── Makefile2 │ │ │ ├── TargetDirectories.txt │ │ │ ├── cmake.check_cache │ │ │ ├── feature_tests.bin │ │ │ ├── feature_tests.c │ │ │ ├── feature_tests.cxx │ │ │ └── progress.marks │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── cmake │ │ │ └── module │ │ │ │ └── FindOpenBLAS.cmake │ │ ├── cmake_install.cmake │ │ ├── include │ │ │ └── efanna2e │ │ │ │ ├── distance.h │ │ │ │ ├── exceptions.h │ │ │ │ ├── exp_data.h │ │ │ │ ├── index.h │ │ │ │ ├── index_graph.h │ │ │ │ ├── index_kdtree.h │ │ │ │ ├── index_pq.h │ │ │ │ ├── index_random.h │ │ │ │ ├── neighbor.h │ │ │ │ ├── parameters.h │ │ │ │ └── util.h │ │ ├── src │ │ │ ├── CMakeFiles │ │ │ │ ├── CMakeDirectoryInformation.cmake │ │ │ │ ├── efanna2e.dir │ │ │ │ │ ├── CXX.includecache │ │ │ │ │ ├── DependInfo.cmake │ │ │ │ │ ├── build.make │ │ │ │ │ ├── cmake_clean.cmake │ │ │ │ │ ├── cmake_clean_target.cmake │ │ │ │ │ ├── depend.internal │ │ │ │ │ ├── depend.make │ │ │ │ │ ├── flags.make │ │ │ │ │ ├── index.cpp.o │ │ │ │ │ ├── index_graph.cpp.o │ │ │ │ │ ├── index_kdtree.cpp.o │ │ │ │ │ ├── index_pq.cpp.o │ │ │ │ │ ├── index_random.cpp.o │ │ │ │ │ ├── link.txt │ │ │ │ │ └── progress.make │ │ │ │ ├── efanna2e_s.dir │ │ │ │ │ ├── CXX.includecache │ │ │ │ │ ├── DependInfo.cmake │ │ │ │ │ ├── build.make │ │ │ │ │ ├── cmake_clean.cmake │ │ │ │ │ ├── cmake_clean_target.cmake │ │ │ │ │ ├── depend.internal │ │ │ │ │ ├── depend.make │ │ │ │ │ ├── flags.make │ │ │ │ │ ├── index.cpp.o │ │ │ │ │ ├── index_graph.cpp.o │ │ │ │ │ ├── index_kdtree.cpp.o │ │ │ │ │ ├── index_pq.cpp.o │ │ │ │ │ ├── index_random.cpp.o │ │ │ │ │ ├── link.txt │ │ │ │ │ └── progress.make │ │ │ │ └── progress.marks │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ ├── cmake_install.cmake │ │ │ ├── index.cpp │ │ │ ├── index_graph.cpp │ │ │ ├── index_kdtree.cpp │ │ │ ├── index_pq.cpp │ │ │ ├── index_random.cpp │ │ │ ├── libefanna2e.a │ │ │ └── libefanna2e_s.a │ │ └── tests │ │ │ ├── CMakeFiles │ │ │ ├── CMakeDirectoryInformation.cmake │ │ │ ├── progress.marks │ │ │ ├── test_faiss_graph.dir │ │ │ │ ├── CXX.includecache │ │ │ │ ├── DependInfo.cmake │ │ │ │ ├── build.make │ │ │ │ ├── cmake_clean.cmake │ │ │ │ ├── depend.internal │ │ │ │ ├── depend.make │ │ │ │ ├── flags.make │ │ │ │ ├── link.txt │ │ │ │ ├── progress.make │ │ │ │ └── test_faiss_graph.cpp.o │ │ │ ├── test_kdtree_graph.dir │ │ │ │ ├── CXX.includecache │ │ │ │ ├── DependInfo.cmake │ │ │ │ ├── build.make │ │ │ │ ├── cmake_clean.cmake │ │ │ │ ├── depend.internal │ │ │ │ ├── depend.make │ │ │ │ ├── flags.make │ │ │ │ ├── link.txt │ │ │ │ ├── progress.make │ │ │ │ └── test_kdtree_graph.cpp.o │ │ │ ├── test_nndescent.dir │ │ │ │ ├── CXX.includecache │ │ │ │ ├── DependInfo.cmake │ │ │ │ ├── build.make │ │ │ │ ├── cmake_clean.cmake │ │ │ │ ├── depend.internal │ │ │ │ ├── depend.make │ │ │ │ ├── flags.make │ │ │ │ ├── link.txt │ │ │ │ ├── progress.make │ │ │ │ └── test_nndescent.cpp.o │ │ │ └── test_nndescent_refine.dir │ │ │ │ ├── CXX.includecache │ │ │ │ ├── DependInfo.cmake │ │ │ │ ├── build.make │ │ │ │ ├── cmake_clean.cmake │ │ │ │ ├── depend.internal │ │ │ │ ├── depend.make │ │ │ │ ├── flags.make │ │ │ │ ├── link.txt │ │ │ │ ├── progress.make │ │ │ │ └── test_nndescent_refine.cpp.o │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ ├── cmake_install.cmake │ │ │ ├── test_faiss_graph.cpp │ │ │ ├── test_kdtree_graph.cpp │ │ │ ├── test_nndescent.cpp │ │ │ └── test_nndescent_refine.cpp │ ├── hnsw │ │ ├── .travis.yml │ │ ├── .vscode │ │ │ └── settings.json │ │ ├── INSTALL.rst │ │ ├── LICENSE │ │ ├── MANIFEST.in │ │ ├── Makefile │ │ ├── README.md │ │ ├── benchmarks │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── benchmark_script.py │ │ │ ├── datasets │ │ │ │ └── convert_texmex_fvec.py │ │ │ ├── requirements.txt │ │ │ └── youtube_reproduce.py │ │ ├── bindings │ │ │ ├── go │ │ │ │ ├── n2.go │ │ │ │ ├── n2gomodule.h │ │ │ │ ├── n2gomodule.i │ │ │ │ └── n2gomodule_wrap.cxx │ │ │ └── python │ │ │ │ ├── n2.cpp │ │ │ │ └── n2.pyx │ │ ├── build │ │ │ ├── lib.linux-x86_64-3.6 │ │ │ │ └── n2.cpython-36m-x86_64-linux-gnu.so │ │ │ ├── lib │ │ │ │ ├── libn2.so │ │ │ │ ├── libn2.so.0.1.4 │ │ │ │ └── static │ │ │ │ │ └── libn2.a │ │ │ ├── obj │ │ │ │ ├── gtest-all.o │ │ │ │ └── gtest_main.o │ │ │ └── temp.linux-x86_64-3.6 │ │ │ │ ├── bindings │ │ │ │ └── python │ │ │ │ │ └── n2.o │ │ │ │ └── src │ │ │ │ ├── base.o │ │ │ │ ├── distance.o │ │ │ │ ├── heuristic.o │ │ │ │ ├── hnsw.o │ │ │ │ ├── hnsw_node.o │ │ │ │ └── mmap.o │ │ ├── dist │ │ │ └── n2-0.1.4-py3.6-linux-x86_64.egg │ │ ├── examples │ │ │ ├── cpp │ │ │ │ └── example_l2.cpp │ │ │ ├── go │ │ │ │ ├── example_angular.go │ │ │ │ └── example_l2.go │ │ │ └── python │ │ │ │ ├── example_angular.py │ │ │ │ └── example_l2.py │ │ ├── include │ │ │ └── n2 │ │ │ │ ├── base.h │ │ │ │ ├── common.h │ │ │ │ ├── distance.h │ │ │ │ ├── exp_data.h │ │ │ │ ├── heuristic.h │ │ │ │ ├── hnsw.h │ │ │ │ ├── hnsw_node.h │ │ │ │ ├── min_heap.h │ │ │ │ ├── mmap.h │ │ │ │ └── sort.h │ │ ├── n2.egg-info │ │ │ ├── PKG-INFO │ │ │ ├── SOURCES.txt │ │ │ ├── dependency_links.txt │ │ │ ├── requires.txt │ │ │ └── top_level.txt │ │ ├── setup.py │ │ ├── src │ │ │ ├── Makefile │ │ │ ├── base.cc │ │ │ ├── base.o │ │ │ ├── distance.cc │ │ │ ├── distance.o │ │ │ ├── heuristic.cc │ │ │ ├── heuristic.o │ │ │ ├── hnsw.cc │ │ │ ├── hnsw.o │ │ │ ├── hnsw_node.cc │ │ │ ├── hnsw_node.o │ │ │ ├── mmap.cc │ │ │ └── mmap.o │ │ ├── test.n2 │ │ ├── tests │ │ │ ├── cpp_test │ │ │ │ ├── Makefile │ │ │ │ └── evaluation.cpp │ │ │ ├── golang_test │ │ │ │ └── n2_test.go │ │ │ ├── model │ │ │ │ └── test.n2 │ │ │ └── python_test │ │ │ │ ├── __init__.py │ │ │ │ └── test_n2.py │ │ └── third_party │ │ │ ├── googletest │ │ │ ├── .clang-format │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── BUILD.bazel │ │ │ ├── CMakeLists.txt │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── Makefile.am │ │ │ ├── README.md │ │ │ ├── WORKSPACE │ │ │ ├── appveyor.yml │ │ │ ├── ci │ │ │ │ ├── build-linux-autotools.sh │ │ │ │ ├── build-linux-bazel.sh │ │ │ │ ├── build-platformio.sh │ │ │ │ ├── env-linux.sh │ │ │ │ ├── env-osx.sh │ │ │ │ ├── get-nprocessors.sh │ │ │ │ ├── install-linux.sh │ │ │ │ ├── install-osx.sh │ │ │ │ ├── install-platformio.sh │ │ │ │ ├── log-config.sh │ │ │ │ └── travis.sh │ │ │ ├── configure.ac │ │ │ ├── googlemock │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CONTRIBUTORS │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile.am │ │ │ │ ├── README.md │ │ │ │ ├── cmake │ │ │ │ │ ├── gmock.pc.in │ │ │ │ │ └── gmock_main.pc.in │ │ │ │ ├── configure.ac │ │ │ │ ├── docs │ │ │ │ │ ├── CheatSheet.md │ │ │ │ │ ├── CookBook.md │ │ │ │ │ ├── DesignDoc.md │ │ │ │ │ ├── Documentation.md │ │ │ │ │ ├── ForDummies.md │ │ │ │ │ ├── FrequentlyAskedQuestions.md │ │ │ │ │ └── KnownIssues.md │ │ │ │ ├── include │ │ │ │ │ └── gmock │ │ │ │ │ │ ├── gmock-actions.h │ │ │ │ │ │ ├── gmock-cardinalities.h │ │ │ │ │ │ ├── gmock-function-mocker.h │ │ │ │ │ │ ├── gmock-generated-actions.h │ │ │ │ │ │ ├── gmock-generated-actions.h.pump │ │ │ │ │ │ ├── gmock-generated-function-mockers.h │ │ │ │ │ │ ├── gmock-generated-function-mockers.h.pump │ │ │ │ │ │ ├── gmock-generated-matchers.h │ │ │ │ │ │ ├── gmock-generated-matchers.h.pump │ │ │ │ │ │ ├── gmock-matchers.h │ │ │ │ │ │ ├── gmock-more-actions.h │ │ │ │ │ │ ├── gmock-more-matchers.h │ │ │ │ │ │ ├── gmock-nice-strict.h │ │ │ │ │ │ ├── gmock-spec-builders.h │ │ │ │ │ │ ├── gmock.h │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── custom │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── gmock-generated-actions.h │ │ │ │ │ │ ├── gmock-generated-actions.h.pump │ │ │ │ │ │ ├── gmock-matchers.h │ │ │ │ │ │ └── gmock-port.h │ │ │ │ │ │ ├── gmock-internal-utils.h │ │ │ │ │ │ ├── gmock-port.h │ │ │ │ │ │ └── gmock-pp.h │ │ │ │ ├── msvc │ │ │ │ │ ├── 2005 │ │ │ │ │ │ ├── gmock.sln │ │ │ │ │ │ ├── gmock.vcproj │ │ │ │ │ │ ├── gmock_config.vsprops │ │ │ │ │ │ ├── gmock_main.vcproj │ │ │ │ │ │ └── gmock_test.vcproj │ │ │ │ │ ├── 2010 │ │ │ │ │ │ ├── gmock.sln │ │ │ │ │ │ ├── gmock.vcxproj │ │ │ │ │ │ ├── gmock_config.props │ │ │ │ │ │ ├── gmock_main.vcxproj │ │ │ │ │ │ └── gmock_test.vcxproj │ │ │ │ │ └── 2015 │ │ │ │ │ │ ├── gmock.sln │ │ │ │ │ │ ├── gmock.vcxproj │ │ │ │ │ │ ├── gmock_config.props │ │ │ │ │ │ ├── gmock_main.vcxproj │ │ │ │ │ │ └── gmock_test.vcxproj │ │ │ │ ├── scripts │ │ │ │ │ ├── fuse_gmock_files.py │ │ │ │ │ ├── generator │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── README.cppclean │ │ │ │ │ │ ├── cpp │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── ast.py │ │ │ │ │ │ │ ├── gmock_class.py │ │ │ │ │ │ │ ├── gmock_class_test.py │ │ │ │ │ │ │ ├── keywords.py │ │ │ │ │ │ │ ├── tokenize.py │ │ │ │ │ │ │ └── utils.py │ │ │ │ │ │ └── gmock_gen.py │ │ │ │ │ ├── gmock-config.in │ │ │ │ │ ├── gmock_doctor.py │ │ │ │ │ ├── upload.py │ │ │ │ │ └── upload_gmock.py │ │ │ │ ├── src │ │ │ │ │ ├── gmock-all.cc │ │ │ │ │ ├── gmock-cardinalities.cc │ │ │ │ │ ├── gmock-internal-utils.cc │ │ │ │ │ ├── gmock-matchers.cc │ │ │ │ │ ├── gmock-spec-builders.cc │ │ │ │ │ ├── gmock.cc │ │ │ │ │ └── gmock_main.cc │ │ │ │ └── test │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ ├── gmock-actions_test.cc │ │ │ │ │ ├── gmock-cardinalities_test.cc │ │ │ │ │ ├── gmock-function-mocker_nc.cc │ │ │ │ │ ├── gmock-function-mocker_nc_test.py │ │ │ │ │ ├── gmock-function-mocker_test.cc │ │ │ │ │ ├── gmock-generated-actions_test.cc │ │ │ │ │ ├── gmock-generated-function-mockers_test.cc │ │ │ │ │ ├── gmock-generated-matchers_test.cc │ │ │ │ │ ├── gmock-internal-utils_test.cc │ │ │ │ │ ├── gmock-matchers_test.cc │ │ │ │ │ ├── gmock-more-actions_test.cc │ │ │ │ │ ├── gmock-nice-strict_test.cc │ │ │ │ │ ├── gmock-port_test.cc │ │ │ │ │ ├── gmock-pp-string_test.cc │ │ │ │ │ ├── gmock-pp_test.cc │ │ │ │ │ ├── gmock-spec-builders_test.cc │ │ │ │ │ ├── gmock_all_test.cc │ │ │ │ │ ├── gmock_ex_test.cc │ │ │ │ │ ├── gmock_leak_test.py │ │ │ │ │ ├── gmock_leak_test_.cc │ │ │ │ │ ├── gmock_link2_test.cc │ │ │ │ │ ├── gmock_link_test.cc │ │ │ │ │ ├── gmock_link_test.h │ │ │ │ │ ├── gmock_output_test.py │ │ │ │ │ ├── gmock_output_test_.cc │ │ │ │ │ ├── gmock_output_test_golden.txt │ │ │ │ │ ├── gmock_stress_test.cc │ │ │ │ │ ├── gmock_test.cc │ │ │ │ │ └── gmock_test_utils.py │ │ │ ├── googletest │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CONTRIBUTORS │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile.am │ │ │ │ ├── README.md │ │ │ │ ├── cmake │ │ │ │ │ ├── Config.cmake.in │ │ │ │ │ ├── gtest.pc.in │ │ │ │ │ ├── gtest_main.pc.in │ │ │ │ │ ├── internal_utils.cmake │ │ │ │ │ └── libgtest.la.in │ │ │ │ ├── codegear │ │ │ │ │ ├── gtest.cbproj │ │ │ │ │ ├── gtest.groupproj │ │ │ │ │ ├── gtest_all.cc │ │ │ │ │ ├── gtest_link.cc │ │ │ │ │ ├── gtest_main.cbproj │ │ │ │ │ └── gtest_unittest.cbproj │ │ │ │ ├── configure.ac │ │ │ │ ├── docs │ │ │ │ │ ├── Pkgconfig.md │ │ │ │ │ ├── PumpManual.md │ │ │ │ │ ├── XcodeGuide.md │ │ │ │ │ ├── advanced.md │ │ │ │ │ ├── faq.md │ │ │ │ │ ├── primer.md │ │ │ │ │ └── samples.md │ │ │ │ ├── include │ │ │ │ │ └── gtest │ │ │ │ │ │ ├── gtest-death-test.h │ │ │ │ │ │ ├── gtest-matchers.h │ │ │ │ │ │ ├── gtest-message.h │ │ │ │ │ │ ├── gtest-param-test.h │ │ │ │ │ │ ├── gtest-printers.h │ │ │ │ │ │ ├── gtest-spi.h │ │ │ │ │ │ ├── gtest-test-part.h │ │ │ │ │ │ ├── gtest-typed-test.h │ │ │ │ │ │ ├── gtest.h │ │ │ │ │ │ ├── gtest_pred_impl.h │ │ │ │ │ │ ├── gtest_prod.h │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── custom │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── gtest-port.h │ │ │ │ │ │ ├── gtest-printers.h │ │ │ │ │ │ └── gtest.h │ │ │ │ │ │ ├── gtest-death-test-internal.h │ │ │ │ │ │ ├── gtest-filepath.h │ │ │ │ │ │ ├── gtest-internal.h │ │ │ │ │ │ ├── gtest-param-util.h │ │ │ │ │ │ ├── gtest-port-arch.h │ │ │ │ │ │ ├── gtest-port.h │ │ │ │ │ │ ├── gtest-string.h │ │ │ │ │ │ ├── gtest-type-util.h │ │ │ │ │ │ └── gtest-type-util.h.pump │ │ │ │ ├── m4 │ │ │ │ │ ├── acx_pthread.m4 │ │ │ │ │ └── gtest.m4 │ │ │ │ ├── msvc │ │ │ │ │ └── 2010 │ │ │ │ │ │ ├── gtest-md.sln │ │ │ │ │ │ ├── gtest-md.vcxproj │ │ │ │ │ │ ├── gtest-md.vcxproj.filters │ │ │ │ │ │ ├── gtest.sln │ │ │ │ │ │ ├── gtest.vcxproj │ │ │ │ │ │ ├── gtest.vcxproj.filters │ │ │ │ │ │ ├── gtest_main-md.vcxproj │ │ │ │ │ │ ├── gtest_main-md.vcxproj.filters │ │ │ │ │ │ ├── gtest_main.vcxproj │ │ │ │ │ │ ├── gtest_main.vcxproj.filters │ │ │ │ │ │ ├── gtest_prod_test-md.vcxproj │ │ │ │ │ │ ├── gtest_prod_test-md.vcxproj.filters │ │ │ │ │ │ ├── gtest_prod_test.vcxproj │ │ │ │ │ │ ├── gtest_prod_test.vcxproj.filters │ │ │ │ │ │ ├── gtest_unittest-md.vcxproj │ │ │ │ │ │ ├── gtest_unittest-md.vcxproj.filters │ │ │ │ │ │ ├── gtest_unittest.vcxproj │ │ │ │ │ │ └── gtest_unittest.vcxproj.filters │ │ │ │ ├── samples │ │ │ │ │ ├── prime_tables.h │ │ │ │ │ ├── sample1.cc │ │ │ │ │ ├── sample1.h │ │ │ │ │ ├── sample10_unittest.cc │ │ │ │ │ ├── sample1_unittest.cc │ │ │ │ │ ├── sample2.cc │ │ │ │ │ ├── sample2.h │ │ │ │ │ ├── sample2_unittest.cc │ │ │ │ │ ├── sample3-inl.h │ │ │ │ │ ├── sample3_unittest.cc │ │ │ │ │ ├── sample4.cc │ │ │ │ │ ├── sample4.h │ │ │ │ │ ├── sample4_unittest.cc │ │ │ │ │ ├── sample5_unittest.cc │ │ │ │ │ ├── sample6_unittest.cc │ │ │ │ │ ├── sample7_unittest.cc │ │ │ │ │ ├── sample8_unittest.cc │ │ │ │ │ └── sample9_unittest.cc │ │ │ │ ├── scripts │ │ │ │ │ ├── common.py │ │ │ │ │ ├── fuse_gtest_files.py │ │ │ │ │ ├── gen_gtest_pred_impl.py │ │ │ │ │ ├── gtest-config.in │ │ │ │ │ ├── pump.py │ │ │ │ │ ├── release_docs.py │ │ │ │ │ ├── upload.py │ │ │ │ │ └── upload_gtest.py │ │ │ │ ├── src │ │ │ │ │ ├── gtest-all.cc │ │ │ │ │ ├── gtest-death-test.cc │ │ │ │ │ ├── gtest-filepath.cc │ │ │ │ │ ├── gtest-internal-inl.h │ │ │ │ │ ├── gtest-matchers.cc │ │ │ │ │ ├── gtest-port.cc │ │ │ │ │ ├── gtest-printers.cc │ │ │ │ │ ├── gtest-test-part.cc │ │ │ │ │ ├── gtest-typed-test.cc │ │ │ │ │ ├── gtest.cc │ │ │ │ │ └── gtest_main.cc │ │ │ │ ├── test │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ ├── googletest-break-on-failure-unittest.py │ │ │ │ │ ├── googletest-break-on-failure-unittest_.cc │ │ │ │ │ ├── googletest-catch-exceptions-test.py │ │ │ │ │ ├── googletest-catch-exceptions-test_.cc │ │ │ │ │ ├── googletest-color-test.py │ │ │ │ │ ├── googletest-color-test_.cc │ │ │ │ │ ├── googletest-death-test-test.cc │ │ │ │ │ ├── googletest-death-test_ex_test.cc │ │ │ │ │ ├── googletest-env-var-test.py │ │ │ │ │ ├── googletest-env-var-test_.cc │ │ │ │ │ ├── googletest-filepath-test.cc │ │ │ │ │ ├── googletest-filter-unittest.py │ │ │ │ │ ├── googletest-filter-unittest_.cc │ │ │ │ │ ├── googletest-json-outfiles-test.py │ │ │ │ │ ├── googletest-json-output-unittest.py │ │ │ │ │ ├── googletest-list-tests-unittest.py │ │ │ │ │ ├── googletest-list-tests-unittest_.cc │ │ │ │ │ ├── googletest-listener-test.cc │ │ │ │ │ ├── googletest-message-test.cc │ │ │ │ │ ├── googletest-options-test.cc │ │ │ │ │ ├── googletest-output-test-golden-lin.txt │ │ │ │ │ ├── googletest-output-test.py │ │ │ │ │ ├── googletest-output-test_.cc │ │ │ │ │ ├── googletest-param-test-invalid-name1-test.py │ │ │ │ │ ├── googletest-param-test-invalid-name1-test_.cc │ │ │ │ │ ├── googletest-param-test-invalid-name2-test.py │ │ │ │ │ ├── googletest-param-test-invalid-name2-test_.cc │ │ │ │ │ ├── googletest-param-test-test.cc │ │ │ │ │ ├── googletest-param-test-test.h │ │ │ │ │ ├── googletest-param-test2-test.cc │ │ │ │ │ ├── googletest-port-test.cc │ │ │ │ │ ├── googletest-printers-test.cc │ │ │ │ │ ├── googletest-shuffle-test.py │ │ │ │ │ ├── googletest-shuffle-test_.cc │ │ │ │ │ ├── googletest-test-part-test.cc │ │ │ │ │ ├── googletest-test2_test.cc │ │ │ │ │ ├── googletest-throw-on-failure-test.py │ │ │ │ │ ├── googletest-throw-on-failure-test_.cc │ │ │ │ │ ├── googletest-uninitialized-test.py │ │ │ │ │ ├── googletest-uninitialized-test_.cc │ │ │ │ │ ├── gtest-typed-test2_test.cc │ │ │ │ │ ├── gtest-typed-test_test.cc │ │ │ │ │ ├── gtest-typed-test_test.h │ │ │ │ │ ├── gtest-unittest-api_test.cc │ │ │ │ │ ├── gtest_all_test.cc │ │ │ │ │ ├── gtest_assert_by_exception_test.cc │ │ │ │ │ ├── gtest_environment_test.cc │ │ │ │ │ ├── gtest_help_test.py │ │ │ │ │ ├── gtest_help_test_.cc │ │ │ │ │ ├── gtest_json_test_utils.py │ │ │ │ │ ├── gtest_list_output_unittest.py │ │ │ │ │ ├── gtest_list_output_unittest_.cc │ │ │ │ │ ├── gtest_main_unittest.cc │ │ │ │ │ ├── gtest_no_test_unittest.cc │ │ │ │ │ ├── gtest_pred_impl_unittest.cc │ │ │ │ │ ├── gtest_premature_exit_test.cc │ │ │ │ │ ├── gtest_prod_test.cc │ │ │ │ │ ├── gtest_repeat_test.cc │ │ │ │ │ ├── gtest_skip_test.cc │ │ │ │ │ ├── gtest_sole_header_test.cc │ │ │ │ │ ├── gtest_stress_test.cc │ │ │ │ │ ├── gtest_test_macro_stack_footprint_test.cc │ │ │ │ │ ├── gtest_test_utils.py │ │ │ │ │ ├── gtest_testbridge_test.py │ │ │ │ │ ├── gtest_testbridge_test_.cc │ │ │ │ │ ├── gtest_throw_on_failure_ex_test.cc │ │ │ │ │ ├── gtest_unittest.cc │ │ │ │ │ ├── gtest_xml_outfile1_test_.cc │ │ │ │ │ ├── gtest_xml_outfile2_test_.cc │ │ │ │ │ ├── gtest_xml_outfiles_test.py │ │ │ │ │ ├── gtest_xml_output_unittest.py │ │ │ │ │ ├── gtest_xml_output_unittest_.cc │ │ │ │ │ ├── gtest_xml_test_utils.py │ │ │ │ │ ├── production.cc │ │ │ │ │ └── production.h │ │ │ │ └── xcode │ │ │ │ │ ├── Config │ │ │ │ │ ├── DebugProject.xcconfig │ │ │ │ │ ├── FrameworkTarget.xcconfig │ │ │ │ │ ├── General.xcconfig │ │ │ │ │ ├── ReleaseProject.xcconfig │ │ │ │ │ ├── StaticLibraryTarget.xcconfig │ │ │ │ │ └── TestTarget.xcconfig │ │ │ │ │ ├── Resources │ │ │ │ │ └── Info.plist │ │ │ │ │ ├── Samples │ │ │ │ │ └── FrameworkSample │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ ├── WidgetFramework.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ │ ├── runtests.sh │ │ │ │ │ │ ├── widget.cc │ │ │ │ │ │ ├── widget.h │ │ │ │ │ │ └── widget_test.cc │ │ │ │ │ ├── Scripts │ │ │ │ │ ├── runtests.sh │ │ │ │ │ └── versiongenerate.py │ │ │ │ │ └── gtest.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ ├── library.json │ │ │ └── platformio.ini │ │ │ └── spdlog │ │ │ ├── async_logger.h │ │ │ ├── common.h │ │ │ ├── contrib │ │ │ ├── README.md │ │ │ └── sinks │ │ │ │ └── step_file_sink.h │ │ │ ├── details │ │ │ ├── async_log_helper.h │ │ │ ├── async_logger_impl.h │ │ │ ├── file_helper.h │ │ │ ├── log_msg.h │ │ │ ├── logger_impl.h │ │ │ ├── mpmc_blocking_q.h │ │ │ ├── null_mutex.h │ │ │ ├── os.h │ │ │ ├── pattern_formatter_impl.h │ │ │ ├── registry.h │ │ │ └── spdlog_impl.h │ │ │ ├── fmt │ │ │ ├── bundled │ │ │ │ ├── format.cc │ │ │ │ ├── format.h │ │ │ │ ├── ostream.cc │ │ │ │ ├── ostream.h │ │ │ │ ├── posix.cc │ │ │ │ ├── posix.h │ │ │ │ ├── printf.cc │ │ │ │ ├── printf.h │ │ │ │ └── time.h │ │ │ ├── fmt.h │ │ │ └── ostr.h │ │ │ ├── formatter.h │ │ │ ├── logger.h │ │ │ ├── sinks │ │ │ ├── android_sink.h │ │ │ ├── ansicolor_sink.h │ │ │ ├── base_sink.h │ │ │ ├── dist_sink.h │ │ │ ├── file_sinks.h │ │ │ ├── msvc_sink.h │ │ │ ├── null_sink.h │ │ │ ├── ostream_sink.h │ │ │ ├── sink.h │ │ │ ├── stdout_sinks.h │ │ │ ├── syslog_sink.h │ │ │ ├── wincolor_sink.h │ │ │ └── windebug_sink.h │ │ │ ├── spdlog.h │ │ │ └── tweakme.h │ ├── nsg │ │ ├── .dockerignore │ │ ├── .vscode │ │ │ └── settings.json │ │ ├── CMakeLists.txt │ │ ├── Dockerfile │ │ ├── LICENSE │ │ ├── README.md │ │ ├── include │ │ │ └── efanna2e │ │ │ │ ├── distance.h │ │ │ │ ├── exceptions.h │ │ │ │ ├── exp_data.h │ │ │ │ ├── index.h │ │ │ │ ├── index_nsg.h │ │ │ │ ├── neighbor.h │ │ │ │ ├── parameters.h │ │ │ │ └── util.h │ │ ├── src │ │ │ ├── CMakeLists.txt │ │ │ ├── index.cpp │ │ │ └── index_nsg.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ └── evaluation.cpp │ └── nssg │ │ ├── .vscode │ │ └── settings.json │ │ ├── CMakeLists.txt │ │ ├── LICENSE │ │ ├── README.md │ │ ├── include │ │ ├── distance.h │ │ ├── exceptions.h │ │ ├── exp_data.h │ │ ├── index.h │ │ ├── index_random.h │ │ ├── index_ssg.h │ │ ├── neighbor.h │ │ ├── parameters.h │ │ └── util.h │ │ ├── src │ │ ├── CMakeLists.txt │ │ ├── index.cpp │ │ ├── index_random.cpp │ │ ├── index_ssg.cpp │ │ └── util.cpp │ │ └── tests │ │ ├── CMakeLists.txt │ │ └── evaluation.cpp ├── TOGG-KDT │ ├── .DS_Store │ ├── hnsw │ │ ├── .gitignore │ │ ├── .gitmodules │ │ ├── .travis.yml │ │ ├── .vscode │ │ │ └── settings.json │ │ ├── AUTHORS.md │ │ ├── INSTALL.rst │ │ ├── LICENSE │ │ ├── MANIFEST.in │ │ ├── Makefile │ │ ├── README.md │ │ ├── benchmarks │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── benchmark_script.py │ │ │ ├── datasets │ │ │ │ └── convert_texmex_fvec.py │ │ │ ├── requirements.txt │ │ │ └── youtube_reproduce.py │ │ ├── bindings │ │ │ ├── go │ │ │ │ ├── n2.go │ │ │ │ ├── n2gomodule.h │ │ │ │ ├── n2gomodule.i │ │ │ │ └── n2gomodule_wrap.cxx │ │ │ └── python │ │ │ │ └── n2.pyx │ │ ├── examples │ │ │ ├── cpp │ │ │ │ └── example_l2.cpp │ │ │ ├── go │ │ │ │ ├── example_angular.go │ │ │ │ └── example_l2.go │ │ │ └── python │ │ │ │ ├── example_angular.py │ │ │ │ ├── example_l2.py │ │ │ │ ├── tempCodeRunnerFile.py │ │ │ │ └── test.py │ │ ├── include │ │ │ └── n2 │ │ │ │ ├── base.h │ │ │ │ ├── common.h │ │ │ │ ├── distance.h │ │ │ │ ├── exp_data.h │ │ │ │ ├── heuristic.h │ │ │ │ ├── hnsw.h │ │ │ │ ├── hnsw_node.h │ │ │ │ ├── min_heap.h │ │ │ │ ├── mmap.h │ │ │ │ ├── sort.h │ │ │ │ └── spdlog │ │ │ │ ├── async_logger.h │ │ │ │ ├── common.h │ │ │ │ ├── contrib │ │ │ │ ├── README.md │ │ │ │ └── sinks │ │ │ │ │ └── step_file_sink.h │ │ │ │ ├── details │ │ │ │ ├── async_log_helper.h │ │ │ │ ├── async_logger_impl.h │ │ │ │ ├── file_helper.h │ │ │ │ ├── log_msg.h │ │ │ │ ├── logger_impl.h │ │ │ │ ├── mpmc_blocking_q.h │ │ │ │ ├── null_mutex.h │ │ │ │ ├── os.h │ │ │ │ ├── pattern_formatter_impl.h │ │ │ │ ├── registry.h │ │ │ │ └── spdlog_impl.h │ │ │ │ ├── fmt │ │ │ │ ├── bundled │ │ │ │ │ ├── format.cc │ │ │ │ │ ├── format.h │ │ │ │ │ ├── ostream.cc │ │ │ │ │ ├── ostream.h │ │ │ │ │ ├── posix.cc │ │ │ │ │ ├── posix.h │ │ │ │ │ ├── printf.cc │ │ │ │ │ ├── printf.h │ │ │ │ │ └── time.h │ │ │ │ ├── fmt.h │ │ │ │ └── ostr.h │ │ │ │ ├── formatter.h │ │ │ │ ├── logger.h │ │ │ │ ├── sinks │ │ │ │ ├── android_sink.h │ │ │ │ ├── ansicolor_sink.h │ │ │ │ ├── base_sink.h │ │ │ │ ├── dist_sink.h │ │ │ │ ├── file_sinks.h │ │ │ │ ├── msvc_sink.h │ │ │ │ ├── null_sink.h │ │ │ │ ├── ostream_sink.h │ │ │ │ ├── sink.h │ │ │ │ ├── stdout_sinks.h │ │ │ │ ├── syslog_sink.h │ │ │ │ ├── wincolor_sink.h │ │ │ │ └── windebug_sink.h │ │ │ │ ├── spdlog.h │ │ │ │ └── tweakme.h │ │ ├── setup.py │ │ ├── src │ │ │ ├── Makefile │ │ │ ├── base.cc │ │ │ ├── distance.cc │ │ │ ├── heuristic.cc │ │ │ ├── hnsw.cc │ │ │ ├── hnsw_node.cc │ │ │ └── mmap.cc │ │ ├── tests │ │ │ ├── cpp_test │ │ │ │ ├── Makefile │ │ │ │ └── evaluation.cpp │ │ │ ├── golang_test │ │ │ │ └── n2_test.go │ │ │ ├── model │ │ │ │ └── test.n2 │ │ │ └── python_test │ │ │ │ ├── __init__.py │ │ │ │ └── test_n2.py │ │ └── third_party │ │ │ └── spdlog │ │ │ ├── async_logger.h │ │ │ ├── common.h │ │ │ ├── contrib │ │ │ ├── README.md │ │ │ └── sinks │ │ │ │ └── step_file_sink.h │ │ │ ├── details │ │ │ ├── async_log_helper.h │ │ │ ├── async_logger_impl.h │ │ │ ├── file_helper.h │ │ │ ├── log_msg.h │ │ │ ├── logger_impl.h │ │ │ ├── mpmc_blocking_q.h │ │ │ ├── null_mutex.h │ │ │ ├── os.h │ │ │ ├── pattern_formatter_impl.h │ │ │ ├── registry.h │ │ │ └── spdlog_impl.h │ │ │ ├── fmt │ │ │ ├── bundled │ │ │ │ ├── format.cc │ │ │ │ ├── format.h │ │ │ │ ├── ostream.cc │ │ │ │ ├── ostream.h │ │ │ │ ├── posix.cc │ │ │ │ ├── posix.h │ │ │ │ ├── printf.cc │ │ │ │ ├── printf.h │ │ │ │ └── time.h │ │ │ ├── fmt.h │ │ │ └── ostr.h │ │ │ ├── formatter.h │ │ │ ├── logger.h │ │ │ ├── sinks │ │ │ ├── android_sink.h │ │ │ ├── ansicolor_sink.h │ │ │ ├── base_sink.h │ │ │ ├── dist_sink.h │ │ │ ├── file_sinks.h │ │ │ ├── msvc_sink.h │ │ │ ├── null_sink.h │ │ │ ├── ostream_sink.h │ │ │ ├── sink.h │ │ │ ├── stdout_sinks.h │ │ │ ├── syslog_sink.h │ │ │ ├── wincolor_sink.h │ │ │ └── windebug_sink.h │ │ │ ├── spdlog.h │ │ │ └── tweakme.h │ ├── nsg │ │ ├── .DS_Store │ │ ├── .dockerignore │ │ ├── .vscode │ │ │ └── settings.json │ │ ├── CMakeLists.txt │ │ ├── Dockerfile │ │ ├── LICENSE │ │ ├── README.md │ │ ├── include │ │ │ └── efanna2e │ │ │ │ ├── distance.h │ │ │ │ ├── exceptions.h │ │ │ │ ├── exp_data.h │ │ │ │ ├── index.h │ │ │ │ ├── index_nsg.h │ │ │ │ ├── neighbor.h │ │ │ │ ├── parameters.h │ │ │ │ └── util.h │ │ ├── src │ │ │ ├── CMakeLists.txt │ │ │ ├── index.cpp │ │ │ └── index_nsg.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ └── evaluation.cpp │ └── nssg │ │ ├── .DS_Store │ │ ├── CMakeLists.txt │ │ ├── LICENSE │ │ ├── README.md │ │ ├── include │ │ ├── distance.h │ │ ├── exceptions.h │ │ ├── exp_data.h │ │ ├── index.h │ │ ├── index_random.h │ │ ├── index_ssg.h │ │ ├── neighbor.h │ │ ├── parameters.h │ │ └── util.h │ │ ├── src │ │ ├── CMakeLists.txt │ │ ├── index.cpp │ │ ├── index_random.cpp │ │ ├── index_ssg.cpp │ │ └── util.cpp │ │ └── tests │ │ ├── CMakeLists.txt │ │ └── evaluation.cpp └── TOGG-KMC │ ├── .DS_Store │ ├── hnsw │ ├── .gitignore │ ├── .gitmodules │ ├── .travis.yml │ ├── .vscode │ │ └── settings.json │ ├── INSTALL.rst │ ├── LICENSE │ ├── MANIFEST.in │ ├── Makefile │ ├── README.md │ ├── benchmarks │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── README.md │ │ ├── benchmark_script.py │ │ ├── datasets │ │ │ └── convert_texmex_fvec.py │ │ ├── requirements.txt │ │ └── youtube_reproduce.py │ ├── bindings │ │ ├── go │ │ │ ├── n2.go │ │ │ ├── n2gomodule.h │ │ │ ├── n2gomodule.i │ │ │ └── n2gomodule_wrap.cxx │ │ └── python │ │ │ └── n2.pyx │ ├── examples │ │ ├── cpp │ │ │ └── example_l2.cpp │ │ ├── go │ │ │ ├── example_angular.go │ │ │ └── example_l2.go │ │ └── python │ │ │ ├── example_angular.py │ │ │ ├── example_l2.py │ │ │ ├── tempCodeRunnerFile.py │ │ │ └── test.py │ ├── include │ │ └── n2 │ │ │ ├── base.h │ │ │ ├── common.h │ │ │ ├── distance.h │ │ │ ├── exp_data.h │ │ │ ├── heuristic.h │ │ │ ├── hnsw.h │ │ │ ├── hnsw_node.h │ │ │ ├── min_heap.h │ │ │ ├── mmap.h │ │ │ ├── neighbor_cluster.h │ │ │ └── sort.h │ ├── setup.py │ ├── src │ │ ├── Makefile │ │ ├── base.cc │ │ ├── distance.cc │ │ ├── heuristic.cc │ │ ├── hnsw.cc │ │ ├── hnsw_node.cc │ │ ├── mmap.cc │ │ └── neighbor_cluster.cc │ ├── tests │ │ ├── cpp_test │ │ │ ├── Makefile │ │ │ └── evaluation.cpp │ │ ├── golang_test │ │ │ └── n2_test.go │ │ ├── model │ │ │ └── test.n2 │ │ └── python_test │ │ │ ├── __init__.py │ │ │ └── test_n2.py │ └── third_party │ │ └── spdlog │ │ ├── async_logger.h │ │ ├── common.h │ │ ├── contrib │ │ ├── README.md │ │ └── sinks │ │ │ └── step_file_sink.h │ │ ├── details │ │ ├── async_log_helper.h │ │ ├── async_logger_impl.h │ │ ├── file_helper.h │ │ ├── log_msg.h │ │ ├── logger_impl.h │ │ ├── mpmc_blocking_q.h │ │ ├── null_mutex.h │ │ ├── os.h │ │ ├── pattern_formatter_impl.h │ │ ├── registry.h │ │ └── spdlog_impl.h │ │ ├── fmt │ │ ├── bundled │ │ │ ├── format.cc │ │ │ ├── format.h │ │ │ ├── ostream.cc │ │ │ ├── ostream.h │ │ │ ├── posix.cc │ │ │ ├── posix.h │ │ │ ├── printf.cc │ │ │ ├── printf.h │ │ │ └── time.h │ │ ├── fmt.h │ │ └── ostr.h │ │ ├── formatter.h │ │ ├── logger.h │ │ ├── sinks │ │ ├── android_sink.h │ │ ├── ansicolor_sink.h │ │ ├── base_sink.h │ │ ├── dist_sink.h │ │ ├── file_sinks.h │ │ ├── msvc_sink.h │ │ ├── null_sink.h │ │ ├── ostream_sink.h │ │ ├── sink.h │ │ ├── stdout_sinks.h │ │ ├── syslog_sink.h │ │ ├── wincolor_sink.h │ │ └── windebug_sink.h │ │ ├── spdlog.h │ │ └── tweakme.h │ ├── nsg │ ├── .DS_Store │ ├── .dockerignore │ ├── CMakeLists.txt │ ├── Dockerfile │ ├── LICENSE │ ├── README.md │ ├── include │ │ └── efanna2e │ │ │ ├── distance.h │ │ │ ├── exceptions.h │ │ │ ├── exp_data.h │ │ │ ├── index.h │ │ │ ├── index_nsg.h │ │ │ ├── neighbor.h │ │ │ ├── parameters.h │ │ │ └── util.h │ ├── src │ │ ├── CMakeLists.txt │ │ ├── index.cpp │ │ └── index_nsg.cpp │ └── tests │ │ ├── CMakeLists.txt │ │ └── evaluation.cpp │ └── nssg │ ├── .DS_Store │ ├── .vscode │ └── settings.json │ ├── CMakeLists.txt │ ├── LICENSE │ ├── README.md │ ├── include │ ├── distance.h │ ├── exceptions.h │ ├── exp_data.h │ ├── index.h │ ├── index_random.h │ ├── index_ssg.h │ ├── neighbor.h │ ├── parameters.h │ └── util.h │ ├── src │ ├── CMakeLists.txt │ ├── index.cpp │ ├── index_random.cpp │ ├── index_ssg.cpp │ └── util.cpp │ └── tests │ ├── CMakeLists.txt │ └── evaluation.cpp ├── performance └── speedup_vs_recall.png └── routing_evaluation ├── .DS_Store ├── .gitignore ├── .idea ├── WEAVESS.iml ├── misc.xml ├── modules.xml └── vcs.xml ├── .vscode └── settings.json ├── CMakeLists.txt ├── LICENSE ├── algo ├── ieh │ ├── LSH_compress.m │ ├── LSH_learn.m │ ├── LSHrun.m │ ├── excshell.py │ ├── fvecs_read.m │ └── ivecs_read.m └── knn │ ├── CMakeLists.txt │ └── gen_knn.cpp ├── cmake └── module │ └── FindOpenBLAS.cmake ├── dataset ├── CMakeLists.txt ├── README.md ├── main.cpp └── other2vecs.py ├── include └── weavess │ ├── CommonDataStructure.h │ ├── builder.h │ ├── component.h │ ├── distance.h │ ├── exp_data.h │ ├── index.h │ ├── parameters.h │ ├── policy.h │ └── util.h ├── parameters └── README.md ├── src ├── CMakeLists.txt ├── builder.cpp ├── component_candidate.cpp ├── component_conn.cpp ├── component_entry.cpp ├── component_init.cpp ├── component_load.cpp ├── component_prune.cpp ├── component_refine.cpp ├── component_route.cpp └── component_search_entry.cpp └── test ├── CMakeLists.txt └── evaluation.cpp /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/.DS_Store -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/README.md -------------------------------------------------------------------------------- /algorithms/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/.DS_Store -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/CMakeFiles/3.13.4/CMakeCCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/CMakeFiles/3.13.4/CMakeCCompiler.cmake -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/CMakeFiles/3.13.4/CMakeCXXCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/CMakeFiles/3.13.4/CMakeCXXCompiler.cmake -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/CMakeFiles/3.13.4/CMakeDetermineCompilerABI_C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/CMakeFiles/3.13.4/CMakeDetermineCompilerABI_C.bin -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/CMakeFiles/3.13.4/CMakeSystem.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/CMakeFiles/3.13.4/CMakeSystem.cmake -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/CMakeFiles/3.13.4/CompilerIdC/CMakeCCompilerId.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/CMakeFiles/3.13.4/CompilerIdC/CMakeCCompilerId.c -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/CMakeFiles/3.13.4/CompilerIdC/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/CMakeFiles/3.13.4/CompilerIdC/a.out -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/CMakeFiles/3.13.4/CompilerIdCXX/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/CMakeFiles/3.13.4/CompilerIdCXX/a.out -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/CMakeFiles/CMakeDirectoryInformation.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/CMakeFiles/CMakeDirectoryInformation.cmake -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/CMakeFiles/CMakeOutput.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/CMakeFiles/CMakeOutput.log -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/CMakeFiles/FindOpenMP/OpenMPCheckVersion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/CMakeFiles/FindOpenMP/OpenMPCheckVersion.c -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/CMakeFiles/FindOpenMP/OpenMPCheckVersion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/CMakeFiles/FindOpenMP/OpenMPCheckVersion.cpp -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/CMakeFiles/FindOpenMP/OpenMPTryFlag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/CMakeFiles/FindOpenMP/OpenMPTryFlag.c -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/CMakeFiles/FindOpenMP/OpenMPTryFlag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/CMakeFiles/FindOpenMP/OpenMPTryFlag.cpp -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/CMakeFiles/FindOpenMP/ompver_C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/CMakeFiles/FindOpenMP/ompver_C.bin -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/CMakeFiles/FindOpenMP/ompver_CXX.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/CMakeFiles/FindOpenMP/ompver_CXX.bin -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/CMakeFiles/Makefile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/CMakeFiles/Makefile.cmake -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/CMakeFiles/Makefile2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/CMakeFiles/Makefile2 -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/CMakeFiles/TargetDirectories.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/CMakeFiles/TargetDirectories.txt -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/CMakeFiles/cmake.check_cache -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/CMakeFiles/feature_tests.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/CMakeFiles/feature_tests.bin -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/CMakeFiles/feature_tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/CMakeFiles/feature_tests.c -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/CMakeFiles/feature_tests.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/CMakeFiles/feature_tests.cxx -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 20 2 | -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/CMakeLists.txt -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/Makefile -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/README.md: -------------------------------------------------------------------------------- 1 | Refer to https://github.com/ZJULearning/efanna_graph for usage details. -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/cmake/module/FindOpenBLAS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/cmake/module/FindOpenBLAS.cmake -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/cmake_install.cmake -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/include/efanna2e/distance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/include/efanna2e/distance.h -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/include/efanna2e/exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/include/efanna2e/exceptions.h -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/include/efanna2e/exp_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/include/efanna2e/exp_data.h -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/include/efanna2e/index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/include/efanna2e/index.h -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/include/efanna2e/index_graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/include/efanna2e/index_graph.h -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/include/efanna2e/index_kdtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/include/efanna2e/index_kdtree.h -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/include/efanna2e/index_pq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/include/efanna2e/index_pq.h -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/include/efanna2e/index_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/include/efanna2e/index_random.h -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/include/efanna2e/neighbor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/include/efanna2e/neighbor.h -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/include/efanna2e/parameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/include/efanna2e/parameters.h -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/include/efanna2e/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/include/efanna2e/util.h -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/src/CMakeFiles/CMakeDirectoryInformation.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/src/CMakeFiles/CMakeDirectoryInformation.cmake -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/src/CMakeFiles/efanna2e.dir/CXX.includecache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/src/CMakeFiles/efanna2e.dir/CXX.includecache -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/src/CMakeFiles/efanna2e.dir/DependInfo.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/src/CMakeFiles/efanna2e.dir/DependInfo.cmake -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/src/CMakeFiles/efanna2e.dir/build.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/src/CMakeFiles/efanna2e.dir/build.make -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/src/CMakeFiles/efanna2e.dir/cmake_clean.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/src/CMakeFiles/efanna2e.dir/cmake_clean.cmake -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/src/CMakeFiles/efanna2e.dir/cmake_clean_target.cmake: -------------------------------------------------------------------------------- 1 | file(REMOVE_RECURSE 2 | "libefanna2e.a" 3 | ) 4 | -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/src/CMakeFiles/efanna2e.dir/depend.internal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/src/CMakeFiles/efanna2e.dir/depend.internal -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/src/CMakeFiles/efanna2e.dir/depend.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/src/CMakeFiles/efanna2e.dir/depend.make -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/src/CMakeFiles/efanna2e.dir/flags.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/src/CMakeFiles/efanna2e.dir/flags.make -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/src/CMakeFiles/efanna2e.dir/index.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/src/CMakeFiles/efanna2e.dir/index.cpp.o -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/src/CMakeFiles/efanna2e.dir/index_graph.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/src/CMakeFiles/efanna2e.dir/index_graph.cpp.o -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/src/CMakeFiles/efanna2e.dir/index_kdtree.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/src/CMakeFiles/efanna2e.dir/index_kdtree.cpp.o -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/src/CMakeFiles/efanna2e.dir/index_pq.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/src/CMakeFiles/efanna2e.dir/index_pq.cpp.o -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/src/CMakeFiles/efanna2e.dir/index_random.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/src/CMakeFiles/efanna2e.dir/index_random.cpp.o -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/src/CMakeFiles/efanna2e.dir/link.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/src/CMakeFiles/efanna2e.dir/link.txt -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/src/CMakeFiles/efanna2e.dir/progress.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/src/CMakeFiles/efanna2e.dir/progress.make -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/src/CMakeFiles/efanna2e_s.dir/CXX.includecache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/src/CMakeFiles/efanna2e_s.dir/CXX.includecache -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/src/CMakeFiles/efanna2e_s.dir/DependInfo.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/src/CMakeFiles/efanna2e_s.dir/DependInfo.cmake -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/src/CMakeFiles/efanna2e_s.dir/build.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/src/CMakeFiles/efanna2e_s.dir/build.make -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/src/CMakeFiles/efanna2e_s.dir/cmake_clean.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/src/CMakeFiles/efanna2e_s.dir/cmake_clean.cmake -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/src/CMakeFiles/efanna2e_s.dir/cmake_clean_target.cmake: -------------------------------------------------------------------------------- 1 | file(REMOVE_RECURSE 2 | "libefanna2e_s.a" 3 | ) 4 | -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/src/CMakeFiles/efanna2e_s.dir/depend.internal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/src/CMakeFiles/efanna2e_s.dir/depend.internal -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/src/CMakeFiles/efanna2e_s.dir/depend.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/src/CMakeFiles/efanna2e_s.dir/depend.make -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/src/CMakeFiles/efanna2e_s.dir/flags.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/src/CMakeFiles/efanna2e_s.dir/flags.make -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/src/CMakeFiles/efanna2e_s.dir/index.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/src/CMakeFiles/efanna2e_s.dir/index.cpp.o -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/src/CMakeFiles/efanna2e_s.dir/index_graph.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/src/CMakeFiles/efanna2e_s.dir/index_graph.cpp.o -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/src/CMakeFiles/efanna2e_s.dir/index_kdtree.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/src/CMakeFiles/efanna2e_s.dir/index_kdtree.cpp.o -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/src/CMakeFiles/efanna2e_s.dir/index_pq.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/src/CMakeFiles/efanna2e_s.dir/index_pq.cpp.o -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/src/CMakeFiles/efanna2e_s.dir/index_random.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/src/CMakeFiles/efanna2e_s.dir/index_random.cpp.o -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/src/CMakeFiles/efanna2e_s.dir/link.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/src/CMakeFiles/efanna2e_s.dir/link.txt -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/src/CMakeFiles/efanna2e_s.dir/progress.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/src/CMakeFiles/efanna2e_s.dir/progress.make -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/src/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 12 2 | -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/src/CMakeLists.txt -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/src/Makefile -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/src/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/src/cmake_install.cmake -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/src/index.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/src/index.cpp -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/src/index_graph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/src/index_graph.cpp -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/src/index_kdtree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/src/index_kdtree.cpp -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/src/index_pq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/src/index_pq.cpp -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/src/index_random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/src/index_random.cpp -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/src/libefanna2e.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/src/libefanna2e.a -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/src/libefanna2e_s.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/src/libefanna2e_s.a -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/tests/CMakeFiles/CMakeDirectoryInformation.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/tests/CMakeFiles/CMakeDirectoryInformation.cmake -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/tests/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 14 2 | -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/tests/CMakeFiles/test_faiss_graph.dir/build.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/tests/CMakeFiles/test_faiss_graph.dir/build.make -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/tests/CMakeFiles/test_faiss_graph.dir/depend.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/tests/CMakeFiles/test_faiss_graph.dir/depend.make -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/tests/CMakeFiles/test_faiss_graph.dir/flags.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/tests/CMakeFiles/test_faiss_graph.dir/flags.make -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/tests/CMakeFiles/test_faiss_graph.dir/link.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/tests/CMakeFiles/test_faiss_graph.dir/link.txt -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/tests/CMakeFiles/test_kdtree_graph.dir/build.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/tests/CMakeFiles/test_kdtree_graph.dir/build.make -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/tests/CMakeFiles/test_kdtree_graph.dir/depend.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/tests/CMakeFiles/test_kdtree_graph.dir/depend.make -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/tests/CMakeFiles/test_kdtree_graph.dir/flags.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/tests/CMakeFiles/test_kdtree_graph.dir/flags.make -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/tests/CMakeFiles/test_kdtree_graph.dir/link.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/tests/CMakeFiles/test_kdtree_graph.dir/link.txt -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/tests/CMakeFiles/test_nndescent.dir/build.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/tests/CMakeFiles/test_nndescent.dir/build.make -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/tests/CMakeFiles/test_nndescent.dir/depend.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/tests/CMakeFiles/test_nndescent.dir/depend.make -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/tests/CMakeFiles/test_nndescent.dir/flags.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/tests/CMakeFiles/test_nndescent.dir/flags.make -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/tests/CMakeFiles/test_nndescent.dir/link.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/tests/CMakeFiles/test_nndescent.dir/link.txt -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/tests/CMakeFiles/test_nndescent.dir/progress.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/tests/CMakeFiles/test_nndescent.dir/progress.make -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/tests/CMakeLists.txt -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/tests/Makefile -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/tests/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/tests/cmake_install.cmake -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/tests/test_faiss_graph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/tests/test_faiss_graph.cpp -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/tests/test_kdtree_graph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/tests/test_kdtree_graph.cpp -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/tests/test_nndescent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/tests/test_nndescent.cpp -------------------------------------------------------------------------------- /algorithms/GA/efanna_graph/tests/test_nndescent_refine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/efanna_graph/tests/test_nndescent_refine.cpp -------------------------------------------------------------------------------- /algorithms/GA/hnsw/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/.travis.yml -------------------------------------------------------------------------------- /algorithms/GA/hnsw/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/.vscode/settings.json -------------------------------------------------------------------------------- /algorithms/GA/hnsw/INSTALL.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/INSTALL.rst -------------------------------------------------------------------------------- /algorithms/GA/hnsw/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/LICENSE -------------------------------------------------------------------------------- /algorithms/GA/hnsw/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/MANIFEST.in -------------------------------------------------------------------------------- /algorithms/GA/hnsw/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/Makefile -------------------------------------------------------------------------------- /algorithms/GA/hnsw/README.md: -------------------------------------------------------------------------------- 1 | Refer to https://github.com/kakao/n2 for usage details. -------------------------------------------------------------------------------- /algorithms/GA/hnsw/benchmarks/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/benchmarks/.gitignore -------------------------------------------------------------------------------- /algorithms/GA/hnsw/benchmarks/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/benchmarks/Makefile -------------------------------------------------------------------------------- /algorithms/GA/hnsw/benchmarks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/benchmarks/README.md -------------------------------------------------------------------------------- /algorithms/GA/hnsw/benchmarks/benchmark_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/benchmarks/benchmark_script.py -------------------------------------------------------------------------------- /algorithms/GA/hnsw/benchmarks/datasets/convert_texmex_fvec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/benchmarks/datasets/convert_texmex_fvec.py -------------------------------------------------------------------------------- /algorithms/GA/hnsw/benchmarks/requirements.txt: -------------------------------------------------------------------------------- 1 | scipy 2 | sklearn 3 | numpy 4 | -------------------------------------------------------------------------------- /algorithms/GA/hnsw/benchmarks/youtube_reproduce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/benchmarks/youtube_reproduce.py -------------------------------------------------------------------------------- /algorithms/GA/hnsw/bindings/go/n2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/bindings/go/n2.go -------------------------------------------------------------------------------- /algorithms/GA/hnsw/bindings/go/n2gomodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/bindings/go/n2gomodule.h -------------------------------------------------------------------------------- /algorithms/GA/hnsw/bindings/go/n2gomodule.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/bindings/go/n2gomodule.i -------------------------------------------------------------------------------- /algorithms/GA/hnsw/bindings/go/n2gomodule_wrap.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/bindings/go/n2gomodule_wrap.cxx -------------------------------------------------------------------------------- /algorithms/GA/hnsw/bindings/python/n2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/bindings/python/n2.cpp -------------------------------------------------------------------------------- /algorithms/GA/hnsw/bindings/python/n2.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/bindings/python/n2.pyx -------------------------------------------------------------------------------- /algorithms/GA/hnsw/build/lib/libn2.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/build/lib/libn2.so -------------------------------------------------------------------------------- /algorithms/GA/hnsw/build/lib/libn2.so.0.1.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/build/lib/libn2.so.0.1.4 -------------------------------------------------------------------------------- /algorithms/GA/hnsw/build/lib/static/libn2.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/build/lib/static/libn2.a -------------------------------------------------------------------------------- /algorithms/GA/hnsw/build/obj/gtest-all.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/build/obj/gtest-all.o -------------------------------------------------------------------------------- /algorithms/GA/hnsw/build/obj/gtest_main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/build/obj/gtest_main.o -------------------------------------------------------------------------------- /algorithms/GA/hnsw/build/temp.linux-x86_64-3.6/bindings/python/n2.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/build/temp.linux-x86_64-3.6/bindings/python/n2.o -------------------------------------------------------------------------------- /algorithms/GA/hnsw/build/temp.linux-x86_64-3.6/src/base.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/build/temp.linux-x86_64-3.6/src/base.o -------------------------------------------------------------------------------- /algorithms/GA/hnsw/build/temp.linux-x86_64-3.6/src/distance.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/build/temp.linux-x86_64-3.6/src/distance.o -------------------------------------------------------------------------------- /algorithms/GA/hnsw/build/temp.linux-x86_64-3.6/src/heuristic.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/build/temp.linux-x86_64-3.6/src/heuristic.o -------------------------------------------------------------------------------- /algorithms/GA/hnsw/build/temp.linux-x86_64-3.6/src/hnsw.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/build/temp.linux-x86_64-3.6/src/hnsw.o -------------------------------------------------------------------------------- /algorithms/GA/hnsw/build/temp.linux-x86_64-3.6/src/hnsw_node.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/build/temp.linux-x86_64-3.6/src/hnsw_node.o -------------------------------------------------------------------------------- /algorithms/GA/hnsw/build/temp.linux-x86_64-3.6/src/mmap.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/build/temp.linux-x86_64-3.6/src/mmap.o -------------------------------------------------------------------------------- /algorithms/GA/hnsw/dist/n2-0.1.4-py3.6-linux-x86_64.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/dist/n2-0.1.4-py3.6-linux-x86_64.egg -------------------------------------------------------------------------------- /algorithms/GA/hnsw/examples/cpp/example_l2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/examples/cpp/example_l2.cpp -------------------------------------------------------------------------------- /algorithms/GA/hnsw/examples/go/example_angular.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/examples/go/example_angular.go -------------------------------------------------------------------------------- /algorithms/GA/hnsw/examples/go/example_l2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/examples/go/example_l2.go -------------------------------------------------------------------------------- /algorithms/GA/hnsw/examples/python/example_angular.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/examples/python/example_angular.py -------------------------------------------------------------------------------- /algorithms/GA/hnsw/examples/python/example_l2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/examples/python/example_l2.py -------------------------------------------------------------------------------- /algorithms/GA/hnsw/include/n2/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/include/n2/base.h -------------------------------------------------------------------------------- /algorithms/GA/hnsw/include/n2/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/include/n2/common.h -------------------------------------------------------------------------------- /algorithms/GA/hnsw/include/n2/distance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/include/n2/distance.h -------------------------------------------------------------------------------- /algorithms/GA/hnsw/include/n2/exp_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/include/n2/exp_data.h -------------------------------------------------------------------------------- /algorithms/GA/hnsw/include/n2/heuristic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/include/n2/heuristic.h -------------------------------------------------------------------------------- /algorithms/GA/hnsw/include/n2/hnsw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/include/n2/hnsw.h -------------------------------------------------------------------------------- /algorithms/GA/hnsw/include/n2/hnsw_node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/include/n2/hnsw_node.h -------------------------------------------------------------------------------- /algorithms/GA/hnsw/include/n2/min_heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/include/n2/min_heap.h -------------------------------------------------------------------------------- /algorithms/GA/hnsw/include/n2/mmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/include/n2/mmap.h -------------------------------------------------------------------------------- /algorithms/GA/hnsw/include/n2/sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/include/n2/sort.h -------------------------------------------------------------------------------- /algorithms/GA/hnsw/n2.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/n2.egg-info/PKG-INFO -------------------------------------------------------------------------------- /algorithms/GA/hnsw/n2.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/n2.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /algorithms/GA/hnsw/n2.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /algorithms/GA/hnsw/n2.egg-info/requires.txt: -------------------------------------------------------------------------------- 1 | cython 2 | -------------------------------------------------------------------------------- /algorithms/GA/hnsw/n2.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | n2 2 | -------------------------------------------------------------------------------- /algorithms/GA/hnsw/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/setup.py -------------------------------------------------------------------------------- /algorithms/GA/hnsw/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/src/Makefile -------------------------------------------------------------------------------- /algorithms/GA/hnsw/src/base.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/src/base.cc -------------------------------------------------------------------------------- /algorithms/GA/hnsw/src/base.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/src/base.o -------------------------------------------------------------------------------- /algorithms/GA/hnsw/src/distance.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/src/distance.cc -------------------------------------------------------------------------------- /algorithms/GA/hnsw/src/distance.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/src/distance.o -------------------------------------------------------------------------------- /algorithms/GA/hnsw/src/heuristic.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/src/heuristic.cc -------------------------------------------------------------------------------- /algorithms/GA/hnsw/src/heuristic.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/src/heuristic.o -------------------------------------------------------------------------------- /algorithms/GA/hnsw/src/hnsw.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/src/hnsw.cc -------------------------------------------------------------------------------- /algorithms/GA/hnsw/src/hnsw.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/src/hnsw.o -------------------------------------------------------------------------------- /algorithms/GA/hnsw/src/hnsw_node.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/src/hnsw_node.cc -------------------------------------------------------------------------------- /algorithms/GA/hnsw/src/hnsw_node.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/src/hnsw_node.o -------------------------------------------------------------------------------- /algorithms/GA/hnsw/src/mmap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/src/mmap.cc -------------------------------------------------------------------------------- /algorithms/GA/hnsw/src/mmap.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/src/mmap.o -------------------------------------------------------------------------------- /algorithms/GA/hnsw/test.n2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/test.n2 -------------------------------------------------------------------------------- /algorithms/GA/hnsw/tests/cpp_test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/tests/cpp_test/Makefile -------------------------------------------------------------------------------- /algorithms/GA/hnsw/tests/cpp_test/evaluation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/tests/cpp_test/evaluation.cpp -------------------------------------------------------------------------------- /algorithms/GA/hnsw/tests/golang_test/n2_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/tests/golang_test/n2_test.go -------------------------------------------------------------------------------- /algorithms/GA/hnsw/tests/model/test.n2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/tests/model/test.n2 -------------------------------------------------------------------------------- /algorithms/GA/hnsw/tests/python_test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /algorithms/GA/hnsw/tests/python_test/test_n2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/tests/python_test/test_n2.py -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/.clang-format -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/.gitignore -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/.travis.yml -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/BUILD.bazel -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/CMakeLists.txt -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/CONTRIBUTING.md -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/LICENSE -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/Makefile.am -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/README.md -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/WORKSPACE -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/appveyor.yml -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/ci/build-linux-autotools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/ci/build-linux-autotools.sh -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/ci/build-linux-bazel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/ci/build-linux-bazel.sh -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/ci/build-platformio.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/ci/build-platformio.sh -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/ci/env-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/ci/env-linux.sh -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/ci/env-osx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/ci/env-osx.sh -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/ci/get-nprocessors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/ci/get-nprocessors.sh -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/ci/install-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/ci/install-linux.sh -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/ci/install-osx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/ci/install-osx.sh -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/ci/install-platformio.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/ci/install-platformio.sh -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/ci/log-config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/ci/log-config.sh -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/ci/travis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/ci/travis.sh -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/configure.ac -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googlemock/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googlemock/CMakeLists.txt -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googlemock/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googlemock/CONTRIBUTORS -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googlemock/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googlemock/LICENSE -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googlemock/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googlemock/Makefile.am -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googlemock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googlemock/README.md -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googlemock/cmake/gmock.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googlemock/cmake/gmock.pc.in -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googlemock/cmake/gmock_main.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googlemock/cmake/gmock_main.pc.in -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googlemock/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googlemock/configure.ac -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googlemock/docs/CheatSheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googlemock/docs/CheatSheet.md -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googlemock/docs/CookBook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googlemock/docs/CookBook.md -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googlemock/docs/DesignDoc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googlemock/docs/DesignDoc.md -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googlemock/docs/Documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googlemock/docs/Documentation.md -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googlemock/docs/ForDummies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googlemock/docs/ForDummies.md -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googlemock/docs/KnownIssues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googlemock/docs/KnownIssues.md -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googlemock/include/gmock/gmock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googlemock/include/gmock/gmock.h -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googlemock/msvc/2005/gmock.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googlemock/msvc/2005/gmock.sln -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googlemock/msvc/2005/gmock.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googlemock/msvc/2005/gmock.vcproj -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googlemock/msvc/2010/gmock.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googlemock/msvc/2010/gmock.sln -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googlemock/msvc/2010/gmock.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googlemock/msvc/2010/gmock.vcxproj -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googlemock/msvc/2015/gmock.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googlemock/msvc/2015/gmock.sln -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googlemock/msvc/2015/gmock.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googlemock/msvc/2015/gmock.vcxproj -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googlemock/scripts/generator/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googlemock/scripts/generator/README -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googlemock/scripts/generator/cpp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googlemock/scripts/gmock-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googlemock/scripts/gmock-config.in -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googlemock/scripts/gmock_doctor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googlemock/scripts/gmock_doctor.py -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googlemock/scripts/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googlemock/scripts/upload.py -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googlemock/scripts/upload_gmock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googlemock/scripts/upload_gmock.py -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googlemock/src/gmock-all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googlemock/src/gmock-all.cc -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googlemock/src/gmock-matchers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googlemock/src/gmock-matchers.cc -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googlemock/src/gmock.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googlemock/src/gmock.cc -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googlemock/src/gmock_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googlemock/src/gmock_main.cc -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googlemock/test/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googlemock/test/BUILD.bazel -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googlemock/test/gmock-port_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googlemock/test/gmock-port_test.cc -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googlemock/test/gmock-pp_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googlemock/test/gmock-pp_test.cc -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googlemock/test/gmock_all_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googlemock/test/gmock_all_test.cc -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googlemock/test/gmock_ex_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googlemock/test/gmock_ex_test.cc -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googlemock/test/gmock_leak_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googlemock/test/gmock_leak_test.py -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googlemock/test/gmock_leak_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googlemock/test/gmock_leak_test_.cc -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googlemock/test/gmock_link2_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googlemock/test/gmock_link2_test.cc -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googlemock/test/gmock_link_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googlemock/test/gmock_link_test.cc -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googlemock/test/gmock_link_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googlemock/test/gmock_link_test.h -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googlemock/test/gmock_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googlemock/test/gmock_test.cc -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googlemock/test/gmock_test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googlemock/test/gmock_test_utils.py -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googletest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googletest/CMakeLists.txt -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googletest/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googletest/CONTRIBUTORS -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googletest/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googletest/LICENSE -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googletest/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googletest/Makefile.am -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googletest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googletest/README.md -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googletest/cmake/Config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googletest/cmake/Config.cmake.in -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googletest/cmake/gtest.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googletest/cmake/gtest.pc.in -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googletest/cmake/gtest_main.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googletest/cmake/gtest_main.pc.in -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googletest/cmake/libgtest.la.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googletest/cmake/libgtest.la.in -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googletest/codegear/gtest.cbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googletest/codegear/gtest.cbproj -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googletest/codegear/gtest.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googletest/codegear/gtest.groupproj -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googletest/codegear/gtest_all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googletest/codegear/gtest_all.cc -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googletest/codegear/gtest_link.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googletest/codegear/gtest_link.cc -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googletest/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googletest/configure.ac -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googletest/docs/Pkgconfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googletest/docs/Pkgconfig.md -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googletest/docs/PumpManual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googletest/docs/PumpManual.md -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googletest/docs/XcodeGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googletest/docs/XcodeGuide.md -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googletest/docs/advanced.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googletest/docs/advanced.md -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googletest/docs/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googletest/docs/faq.md -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googletest/docs/primer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googletest/docs/primer.md -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googletest/docs/samples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googletest/docs/samples.md -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googletest/include/gtest/gtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googletest/include/gtest/gtest.h -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googletest/m4/acx_pthread.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googletest/m4/acx_pthread.m4 -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googletest/m4/gtest.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googletest/m4/gtest.m4 -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googletest/msvc/2010/gtest-md.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googletest/msvc/2010/gtest-md.sln -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googletest/msvc/2010/gtest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googletest/msvc/2010/gtest.sln -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googletest/msvc/2010/gtest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googletest/msvc/2010/gtest.vcxproj -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googletest/samples/prime_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googletest/samples/prime_tables.h -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googletest/samples/sample1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googletest/samples/sample1.cc -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googletest/samples/sample1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googletest/samples/sample1.h -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googletest/samples/sample2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googletest/samples/sample2.cc -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googletest/samples/sample2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googletest/samples/sample2.h -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googletest/samples/sample3-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googletest/samples/sample3-inl.h -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googletest/samples/sample4.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googletest/samples/sample4.cc -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googletest/samples/sample4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googletest/samples/sample4.h -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googletest/scripts/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googletest/scripts/common.py -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googletest/scripts/gtest-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googletest/scripts/gtest-config.in -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googletest/scripts/pump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googletest/scripts/pump.py -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googletest/scripts/release_docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googletest/scripts/release_docs.py -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googletest/scripts/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googletest/scripts/upload.py -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googletest/scripts/upload_gtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googletest/scripts/upload_gtest.py -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googletest/src/gtest-all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googletest/src/gtest-all.cc -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googletest/src/gtest-death-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googletest/src/gtest-death-test.cc -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googletest/src/gtest-filepath.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googletest/src/gtest-filepath.cc -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googletest/src/gtest-internal-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googletest/src/gtest-internal-inl.h -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googletest/src/gtest-matchers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googletest/src/gtest-matchers.cc -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googletest/src/gtest-port.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googletest/src/gtest-port.cc -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googletest/src/gtest-printers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googletest/src/gtest-printers.cc -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googletest/src/gtest-test-part.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googletest/src/gtest-test-part.cc -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googletest/src/gtest-typed-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googletest/src/gtest-typed-test.cc -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googletest/src/gtest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googletest/src/gtest.cc -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googletest/src/gtest_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googletest/src/gtest_main.cc -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googletest/test/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googletest/test/BUILD.bazel -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googletest/test/gtest_all_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googletest/test/gtest_all_test.cc -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googletest/test/gtest_help_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googletest/test/gtest_help_test.py -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googletest/test/gtest_help_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googletest/test/gtest_help_test_.cc -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googletest/test/gtest_prod_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googletest/test/gtest_prod_test.cc -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googletest/test/gtest_skip_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googletest/test/gtest_skip_test.cc -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googletest/test/gtest_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googletest/test/gtest_unittest.cc -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googletest/test/production.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googletest/test/production.cc -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/googletest/test/production.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/googletest/test/production.h -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/library.json -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/googletest/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/googletest/platformio.ini -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/spdlog/async_logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/spdlog/async_logger.h -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/spdlog/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/spdlog/common.h -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/spdlog/contrib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/spdlog/contrib/README.md -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/spdlog/contrib/sinks/step_file_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/spdlog/contrib/sinks/step_file_sink.h -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/spdlog/details/async_log_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/spdlog/details/async_log_helper.h -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/spdlog/details/async_logger_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/spdlog/details/async_logger_impl.h -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/spdlog/details/file_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/spdlog/details/file_helper.h -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/spdlog/details/log_msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/spdlog/details/log_msg.h -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/spdlog/details/logger_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/spdlog/details/logger_impl.h -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/spdlog/details/mpmc_blocking_q.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/spdlog/details/mpmc_blocking_q.h -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/spdlog/details/null_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/spdlog/details/null_mutex.h -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/spdlog/details/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/spdlog/details/os.h -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/spdlog/details/pattern_formatter_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/spdlog/details/pattern_formatter_impl.h -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/spdlog/details/registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/spdlog/details/registry.h -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/spdlog/details/spdlog_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/spdlog/details/spdlog_impl.h -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/spdlog/fmt/bundled/format.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/spdlog/fmt/bundled/format.cc -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/spdlog/fmt/bundled/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/spdlog/fmt/bundled/format.h -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/spdlog/fmt/bundled/ostream.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/spdlog/fmt/bundled/ostream.cc -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/spdlog/fmt/bundled/ostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/spdlog/fmt/bundled/ostream.h -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/spdlog/fmt/bundled/posix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/spdlog/fmt/bundled/posix.cc -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/spdlog/fmt/bundled/posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/spdlog/fmt/bundled/posix.h -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/spdlog/fmt/bundled/printf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/spdlog/fmt/bundled/printf.cc -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/spdlog/fmt/bundled/printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/spdlog/fmt/bundled/printf.h -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/spdlog/fmt/bundled/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/spdlog/fmt/bundled/time.h -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/spdlog/fmt/fmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/spdlog/fmt/fmt.h -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/spdlog/fmt/ostr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/spdlog/fmt/ostr.h -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/spdlog/formatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/spdlog/formatter.h -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/spdlog/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/spdlog/logger.h -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/spdlog/sinks/android_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/spdlog/sinks/android_sink.h -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/spdlog/sinks/ansicolor_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/spdlog/sinks/ansicolor_sink.h -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/spdlog/sinks/base_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/spdlog/sinks/base_sink.h -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/spdlog/sinks/dist_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/spdlog/sinks/dist_sink.h -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/spdlog/sinks/file_sinks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/spdlog/sinks/file_sinks.h -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/spdlog/sinks/msvc_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/spdlog/sinks/msvc_sink.h -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/spdlog/sinks/null_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/spdlog/sinks/null_sink.h -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/spdlog/sinks/ostream_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/spdlog/sinks/ostream_sink.h -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/spdlog/sinks/sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/spdlog/sinks/sink.h -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/spdlog/sinks/stdout_sinks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/spdlog/sinks/stdout_sinks.h -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/spdlog/sinks/syslog_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/spdlog/sinks/syslog_sink.h -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/spdlog/sinks/wincolor_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/spdlog/sinks/wincolor_sink.h -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/spdlog/sinks/windebug_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/spdlog/sinks/windebug_sink.h -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/spdlog/spdlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/spdlog/spdlog.h -------------------------------------------------------------------------------- /algorithms/GA/hnsw/third_party/spdlog/tweakme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/hnsw/third_party/spdlog/tweakme.h -------------------------------------------------------------------------------- /algorithms/GA/nsg/.dockerignore: -------------------------------------------------------------------------------- 1 | build/ 2 | -------------------------------------------------------------------------------- /algorithms/GA/nsg/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/nsg/.vscode/settings.json -------------------------------------------------------------------------------- /algorithms/GA/nsg/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/nsg/CMakeLists.txt -------------------------------------------------------------------------------- /algorithms/GA/nsg/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/nsg/Dockerfile -------------------------------------------------------------------------------- /algorithms/GA/nsg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/nsg/LICENSE -------------------------------------------------------------------------------- /algorithms/GA/nsg/README.md: -------------------------------------------------------------------------------- 1 | Refer to https://github.com/ZJULearning/nsg for usage details. -------------------------------------------------------------------------------- /algorithms/GA/nsg/include/efanna2e/distance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/nsg/include/efanna2e/distance.h -------------------------------------------------------------------------------- /algorithms/GA/nsg/include/efanna2e/exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/nsg/include/efanna2e/exceptions.h -------------------------------------------------------------------------------- /algorithms/GA/nsg/include/efanna2e/exp_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/nsg/include/efanna2e/exp_data.h -------------------------------------------------------------------------------- /algorithms/GA/nsg/include/efanna2e/index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/nsg/include/efanna2e/index.h -------------------------------------------------------------------------------- /algorithms/GA/nsg/include/efanna2e/index_nsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/nsg/include/efanna2e/index_nsg.h -------------------------------------------------------------------------------- /algorithms/GA/nsg/include/efanna2e/neighbor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/nsg/include/efanna2e/neighbor.h -------------------------------------------------------------------------------- /algorithms/GA/nsg/include/efanna2e/parameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/nsg/include/efanna2e/parameters.h -------------------------------------------------------------------------------- /algorithms/GA/nsg/include/efanna2e/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/nsg/include/efanna2e/util.h -------------------------------------------------------------------------------- /algorithms/GA/nsg/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/nsg/src/CMakeLists.txt -------------------------------------------------------------------------------- /algorithms/GA/nsg/src/index.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/nsg/src/index.cpp -------------------------------------------------------------------------------- /algorithms/GA/nsg/src/index_nsg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/nsg/src/index_nsg.cpp -------------------------------------------------------------------------------- /algorithms/GA/nsg/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/nsg/tests/CMakeLists.txt -------------------------------------------------------------------------------- /algorithms/GA/nsg/tests/evaluation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/nsg/tests/evaluation.cpp -------------------------------------------------------------------------------- /algorithms/GA/nssg/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/nssg/.vscode/settings.json -------------------------------------------------------------------------------- /algorithms/GA/nssg/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/nssg/CMakeLists.txt -------------------------------------------------------------------------------- /algorithms/GA/nssg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/nssg/LICENSE -------------------------------------------------------------------------------- /algorithms/GA/nssg/README.md: -------------------------------------------------------------------------------- 1 | Refer to https://github.com/ZJULearning/ssg for usage details. -------------------------------------------------------------------------------- /algorithms/GA/nssg/include/distance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/nssg/include/distance.h -------------------------------------------------------------------------------- /algorithms/GA/nssg/include/exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/nssg/include/exceptions.h -------------------------------------------------------------------------------- /algorithms/GA/nssg/include/exp_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/nssg/include/exp_data.h -------------------------------------------------------------------------------- /algorithms/GA/nssg/include/index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/nssg/include/index.h -------------------------------------------------------------------------------- /algorithms/GA/nssg/include/index_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/nssg/include/index_random.h -------------------------------------------------------------------------------- /algorithms/GA/nssg/include/index_ssg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/nssg/include/index_ssg.h -------------------------------------------------------------------------------- /algorithms/GA/nssg/include/neighbor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/nssg/include/neighbor.h -------------------------------------------------------------------------------- /algorithms/GA/nssg/include/parameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/nssg/include/parameters.h -------------------------------------------------------------------------------- /algorithms/GA/nssg/include/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/nssg/include/util.h -------------------------------------------------------------------------------- /algorithms/GA/nssg/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/nssg/src/CMakeLists.txt -------------------------------------------------------------------------------- /algorithms/GA/nssg/src/index.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/nssg/src/index.cpp -------------------------------------------------------------------------------- /algorithms/GA/nssg/src/index_random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/nssg/src/index_random.cpp -------------------------------------------------------------------------------- /algorithms/GA/nssg/src/index_ssg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/nssg/src/index_ssg.cpp -------------------------------------------------------------------------------- /algorithms/GA/nssg/src/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/nssg/src/util.cpp -------------------------------------------------------------------------------- /algorithms/GA/nssg/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/nssg/tests/CMakeLists.txt -------------------------------------------------------------------------------- /algorithms/GA/nssg/tests/evaluation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/GA/nssg/tests/evaluation.cpp -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/.DS_Store -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/.gitignore -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/.gitmodules -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/.travis.yml -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/.vscode/settings.json -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/AUTHORS.md -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/INSTALL.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/INSTALL.rst -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/LICENSE -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/MANIFEST.in -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/Makefile -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/README.md: -------------------------------------------------------------------------------- 1 | Refer to https://github.com/kakao/n2 for usage details. -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/benchmarks/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/benchmarks/.gitignore -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/benchmarks/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/benchmarks/Makefile -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/benchmarks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/benchmarks/README.md -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/benchmarks/benchmark_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/benchmarks/benchmark_script.py -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/benchmarks/datasets/convert_texmex_fvec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/benchmarks/datasets/convert_texmex_fvec.py -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/benchmarks/requirements.txt: -------------------------------------------------------------------------------- 1 | scipy 2 | sklearn 3 | numpy 4 | -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/benchmarks/youtube_reproduce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/benchmarks/youtube_reproduce.py -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/bindings/go/n2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/bindings/go/n2.go -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/bindings/go/n2gomodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/bindings/go/n2gomodule.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/bindings/go/n2gomodule.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/bindings/go/n2gomodule.i -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/bindings/go/n2gomodule_wrap.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/bindings/go/n2gomodule_wrap.cxx -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/bindings/python/n2.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/bindings/python/n2.pyx -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/examples/cpp/example_l2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/examples/cpp/example_l2.cpp -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/examples/go/example_angular.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/examples/go/example_angular.go -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/examples/go/example_l2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/examples/go/example_l2.go -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/examples/python/example_angular.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/examples/python/example_angular.py -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/examples/python/example_l2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/examples/python/example_l2.py -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/examples/python/tempCodeRunnerFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/examples/python/tempCodeRunnerFile.py -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/examples/python/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/examples/python/test.py -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/include/n2/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/include/n2/base.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/include/n2/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/include/n2/common.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/include/n2/distance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/include/n2/distance.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/include/n2/exp_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/include/n2/exp_data.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/include/n2/heuristic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/include/n2/heuristic.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/include/n2/hnsw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/include/n2/hnsw.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/include/n2/hnsw_node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/include/n2/hnsw_node.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/include/n2/min_heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/include/n2/min_heap.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/include/n2/mmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/include/n2/mmap.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/include/n2/sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/include/n2/sort.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/include/n2/spdlog/async_logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/include/n2/spdlog/async_logger.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/include/n2/spdlog/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/include/n2/spdlog/common.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/include/n2/spdlog/contrib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/include/n2/spdlog/contrib/README.md -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/include/n2/spdlog/contrib/sinks/step_file_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/include/n2/spdlog/contrib/sinks/step_file_sink.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/include/n2/spdlog/details/async_log_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/include/n2/spdlog/details/async_log_helper.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/include/n2/spdlog/details/async_logger_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/include/n2/spdlog/details/async_logger_impl.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/include/n2/spdlog/details/file_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/include/n2/spdlog/details/file_helper.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/include/n2/spdlog/details/log_msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/include/n2/spdlog/details/log_msg.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/include/n2/spdlog/details/logger_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/include/n2/spdlog/details/logger_impl.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/include/n2/spdlog/details/mpmc_blocking_q.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/include/n2/spdlog/details/mpmc_blocking_q.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/include/n2/spdlog/details/null_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/include/n2/spdlog/details/null_mutex.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/include/n2/spdlog/details/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/include/n2/spdlog/details/os.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/include/n2/spdlog/details/pattern_formatter_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/include/n2/spdlog/details/pattern_formatter_impl.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/include/n2/spdlog/details/registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/include/n2/spdlog/details/registry.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/include/n2/spdlog/details/spdlog_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/include/n2/spdlog/details/spdlog_impl.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/include/n2/spdlog/fmt/bundled/format.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/include/n2/spdlog/fmt/bundled/format.cc -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/include/n2/spdlog/fmt/bundled/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/include/n2/spdlog/fmt/bundled/format.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/include/n2/spdlog/fmt/bundled/ostream.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/include/n2/spdlog/fmt/bundled/ostream.cc -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/include/n2/spdlog/fmt/bundled/ostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/include/n2/spdlog/fmt/bundled/ostream.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/include/n2/spdlog/fmt/bundled/posix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/include/n2/spdlog/fmt/bundled/posix.cc -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/include/n2/spdlog/fmt/bundled/posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/include/n2/spdlog/fmt/bundled/posix.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/include/n2/spdlog/fmt/bundled/printf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/include/n2/spdlog/fmt/bundled/printf.cc -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/include/n2/spdlog/fmt/bundled/printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/include/n2/spdlog/fmt/bundled/printf.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/include/n2/spdlog/fmt/bundled/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/include/n2/spdlog/fmt/bundled/time.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/include/n2/spdlog/fmt/fmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/include/n2/spdlog/fmt/fmt.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/include/n2/spdlog/fmt/ostr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/include/n2/spdlog/fmt/ostr.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/include/n2/spdlog/formatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/include/n2/spdlog/formatter.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/include/n2/spdlog/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/include/n2/spdlog/logger.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/include/n2/spdlog/sinks/android_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/include/n2/spdlog/sinks/android_sink.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/include/n2/spdlog/sinks/ansicolor_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/include/n2/spdlog/sinks/ansicolor_sink.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/include/n2/spdlog/sinks/base_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/include/n2/spdlog/sinks/base_sink.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/include/n2/spdlog/sinks/dist_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/include/n2/spdlog/sinks/dist_sink.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/include/n2/spdlog/sinks/file_sinks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/include/n2/spdlog/sinks/file_sinks.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/include/n2/spdlog/sinks/msvc_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/include/n2/spdlog/sinks/msvc_sink.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/include/n2/spdlog/sinks/null_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/include/n2/spdlog/sinks/null_sink.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/include/n2/spdlog/sinks/ostream_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/include/n2/spdlog/sinks/ostream_sink.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/include/n2/spdlog/sinks/sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/include/n2/spdlog/sinks/sink.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/include/n2/spdlog/sinks/stdout_sinks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/include/n2/spdlog/sinks/stdout_sinks.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/include/n2/spdlog/sinks/syslog_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/include/n2/spdlog/sinks/syslog_sink.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/include/n2/spdlog/sinks/wincolor_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/include/n2/spdlog/sinks/wincolor_sink.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/include/n2/spdlog/sinks/windebug_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/include/n2/spdlog/sinks/windebug_sink.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/include/n2/spdlog/spdlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/include/n2/spdlog/spdlog.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/include/n2/spdlog/tweakme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/include/n2/spdlog/tweakme.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/setup.py -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/src/Makefile -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/src/base.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/src/base.cc -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/src/distance.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/src/distance.cc -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/src/heuristic.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/src/heuristic.cc -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/src/hnsw.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/src/hnsw.cc -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/src/hnsw_node.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/src/hnsw_node.cc -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/src/mmap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/src/mmap.cc -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/tests/cpp_test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/tests/cpp_test/Makefile -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/tests/cpp_test/evaluation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/tests/cpp_test/evaluation.cpp -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/tests/golang_test/n2_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/tests/golang_test/n2_test.go -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/tests/model/test.n2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/tests/model/test.n2 -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/tests/python_test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/tests/python_test/test_n2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/tests/python_test/test_n2.py -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/third_party/spdlog/async_logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/third_party/spdlog/async_logger.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/third_party/spdlog/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/third_party/spdlog/common.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/third_party/spdlog/contrib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/third_party/spdlog/contrib/README.md -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/third_party/spdlog/contrib/sinks/step_file_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/third_party/spdlog/contrib/sinks/step_file_sink.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/third_party/spdlog/details/async_log_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/third_party/spdlog/details/async_log_helper.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/third_party/spdlog/details/async_logger_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/third_party/spdlog/details/async_logger_impl.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/third_party/spdlog/details/file_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/third_party/spdlog/details/file_helper.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/third_party/spdlog/details/log_msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/third_party/spdlog/details/log_msg.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/third_party/spdlog/details/logger_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/third_party/spdlog/details/logger_impl.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/third_party/spdlog/details/mpmc_blocking_q.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/third_party/spdlog/details/mpmc_blocking_q.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/third_party/spdlog/details/null_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/third_party/spdlog/details/null_mutex.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/third_party/spdlog/details/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/third_party/spdlog/details/os.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/third_party/spdlog/details/registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/third_party/spdlog/details/registry.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/third_party/spdlog/details/spdlog_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/third_party/spdlog/details/spdlog_impl.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/third_party/spdlog/fmt/bundled/format.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/third_party/spdlog/fmt/bundled/format.cc -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/third_party/spdlog/fmt/bundled/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/third_party/spdlog/fmt/bundled/format.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/third_party/spdlog/fmt/bundled/ostream.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/third_party/spdlog/fmt/bundled/ostream.cc -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/third_party/spdlog/fmt/bundled/ostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/third_party/spdlog/fmt/bundled/ostream.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/third_party/spdlog/fmt/bundled/posix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/third_party/spdlog/fmt/bundled/posix.cc -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/third_party/spdlog/fmt/bundled/posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/third_party/spdlog/fmt/bundled/posix.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/third_party/spdlog/fmt/bundled/printf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/third_party/spdlog/fmt/bundled/printf.cc -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/third_party/spdlog/fmt/bundled/printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/third_party/spdlog/fmt/bundled/printf.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/third_party/spdlog/fmt/bundled/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/third_party/spdlog/fmt/bundled/time.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/third_party/spdlog/fmt/fmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/third_party/spdlog/fmt/fmt.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/third_party/spdlog/fmt/ostr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/third_party/spdlog/fmt/ostr.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/third_party/spdlog/formatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/third_party/spdlog/formatter.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/third_party/spdlog/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/third_party/spdlog/logger.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/third_party/spdlog/sinks/android_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/third_party/spdlog/sinks/android_sink.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/third_party/spdlog/sinks/ansicolor_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/third_party/spdlog/sinks/ansicolor_sink.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/third_party/spdlog/sinks/base_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/third_party/spdlog/sinks/base_sink.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/third_party/spdlog/sinks/dist_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/third_party/spdlog/sinks/dist_sink.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/third_party/spdlog/sinks/file_sinks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/third_party/spdlog/sinks/file_sinks.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/third_party/spdlog/sinks/msvc_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/third_party/spdlog/sinks/msvc_sink.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/third_party/spdlog/sinks/null_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/third_party/spdlog/sinks/null_sink.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/third_party/spdlog/sinks/ostream_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/third_party/spdlog/sinks/ostream_sink.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/third_party/spdlog/sinks/sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/third_party/spdlog/sinks/sink.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/third_party/spdlog/sinks/stdout_sinks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/third_party/spdlog/sinks/stdout_sinks.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/third_party/spdlog/sinks/syslog_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/third_party/spdlog/sinks/syslog_sink.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/third_party/spdlog/sinks/wincolor_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/third_party/spdlog/sinks/wincolor_sink.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/third_party/spdlog/sinks/windebug_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/third_party/spdlog/sinks/windebug_sink.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/third_party/spdlog/spdlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/third_party/spdlog/spdlog.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/hnsw/third_party/spdlog/tweakme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/hnsw/third_party/spdlog/tweakme.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/nsg/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/nsg/.DS_Store -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/nsg/.dockerignore: -------------------------------------------------------------------------------- 1 | build/ 2 | -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/nsg/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/nsg/.vscode/settings.json -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/nsg/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/nsg/CMakeLists.txt -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/nsg/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/nsg/Dockerfile -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/nsg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/nsg/LICENSE -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/nsg/README.md: -------------------------------------------------------------------------------- 1 | Refer to https://github.com/ZJULearning/nsg for usage details. -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/nsg/include/efanna2e/distance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/nsg/include/efanna2e/distance.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/nsg/include/efanna2e/exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/nsg/include/efanna2e/exceptions.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/nsg/include/efanna2e/exp_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/nsg/include/efanna2e/exp_data.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/nsg/include/efanna2e/index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/nsg/include/efanna2e/index.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/nsg/include/efanna2e/index_nsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/nsg/include/efanna2e/index_nsg.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/nsg/include/efanna2e/neighbor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/nsg/include/efanna2e/neighbor.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/nsg/include/efanna2e/parameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/nsg/include/efanna2e/parameters.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/nsg/include/efanna2e/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/nsg/include/efanna2e/util.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/nsg/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/nsg/src/CMakeLists.txt -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/nsg/src/index.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/nsg/src/index.cpp -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/nsg/src/index_nsg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/nsg/src/index_nsg.cpp -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/nsg/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/nsg/tests/CMakeLists.txt -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/nsg/tests/evaluation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/nsg/tests/evaluation.cpp -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/nssg/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/nssg/.DS_Store -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/nssg/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/nssg/CMakeLists.txt -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/nssg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/nssg/LICENSE -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/nssg/README.md: -------------------------------------------------------------------------------- 1 | Refer to https://github.com/ZJULearning/ssg for usage details. -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/nssg/include/distance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/nssg/include/distance.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/nssg/include/exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/nssg/include/exceptions.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/nssg/include/exp_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/nssg/include/exp_data.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/nssg/include/index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/nssg/include/index.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/nssg/include/index_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/nssg/include/index_random.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/nssg/include/index_ssg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/nssg/include/index_ssg.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/nssg/include/neighbor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/nssg/include/neighbor.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/nssg/include/parameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/nssg/include/parameters.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/nssg/include/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/nssg/include/util.h -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/nssg/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/nssg/src/CMakeLists.txt -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/nssg/src/index.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/nssg/src/index.cpp -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/nssg/src/index_random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/nssg/src/index_random.cpp -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/nssg/src/index_ssg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/nssg/src/index_ssg.cpp -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/nssg/src/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/nssg/src/util.cpp -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/nssg/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/nssg/tests/CMakeLists.txt -------------------------------------------------------------------------------- /algorithms/TOGG-KDT/nssg/tests/evaluation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KDT/nssg/tests/evaluation.cpp -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/.DS_Store -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/.gitignore -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/.gitmodules -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/.travis.yml -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/.vscode/settings.json -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/INSTALL.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/INSTALL.rst -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/LICENSE -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/MANIFEST.in -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/Makefile -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/README.md: -------------------------------------------------------------------------------- 1 | Refer to https://github.com/kakao/n2 for usage details. -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/benchmarks/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/benchmarks/.gitignore -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/benchmarks/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/benchmarks/Makefile -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/benchmarks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/benchmarks/README.md -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/benchmarks/benchmark_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/benchmarks/benchmark_script.py -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/benchmarks/datasets/convert_texmex_fvec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/benchmarks/datasets/convert_texmex_fvec.py -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/benchmarks/requirements.txt: -------------------------------------------------------------------------------- 1 | scipy 2 | sklearn 3 | numpy 4 | -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/benchmarks/youtube_reproduce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/benchmarks/youtube_reproduce.py -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/bindings/go/n2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/bindings/go/n2.go -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/bindings/go/n2gomodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/bindings/go/n2gomodule.h -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/bindings/go/n2gomodule.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/bindings/go/n2gomodule.i -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/bindings/go/n2gomodule_wrap.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/bindings/go/n2gomodule_wrap.cxx -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/bindings/python/n2.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/bindings/python/n2.pyx -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/examples/cpp/example_l2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/examples/cpp/example_l2.cpp -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/examples/go/example_angular.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/examples/go/example_angular.go -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/examples/go/example_l2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/examples/go/example_l2.go -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/examples/python/example_angular.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/examples/python/example_angular.py -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/examples/python/example_l2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/examples/python/example_l2.py -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/examples/python/tempCodeRunnerFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/examples/python/tempCodeRunnerFile.py -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/examples/python/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/examples/python/test.py -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/include/n2/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/include/n2/base.h -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/include/n2/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/include/n2/common.h -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/include/n2/distance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/include/n2/distance.h -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/include/n2/exp_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/include/n2/exp_data.h -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/include/n2/heuristic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/include/n2/heuristic.h -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/include/n2/hnsw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/include/n2/hnsw.h -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/include/n2/hnsw_node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/include/n2/hnsw_node.h -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/include/n2/min_heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/include/n2/min_heap.h -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/include/n2/mmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/include/n2/mmap.h -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/include/n2/neighbor_cluster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/include/n2/neighbor_cluster.h -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/include/n2/sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/include/n2/sort.h -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/setup.py -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/src/Makefile -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/src/base.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/src/base.cc -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/src/distance.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/src/distance.cc -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/src/heuristic.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/src/heuristic.cc -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/src/hnsw.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/src/hnsw.cc -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/src/hnsw_node.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/src/hnsw_node.cc -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/src/mmap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/src/mmap.cc -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/src/neighbor_cluster.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/src/neighbor_cluster.cc -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/tests/cpp_test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/tests/cpp_test/Makefile -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/tests/cpp_test/evaluation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/tests/cpp_test/evaluation.cpp -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/tests/golang_test/n2_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/tests/golang_test/n2_test.go -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/tests/model/test.n2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/tests/model/test.n2 -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/tests/python_test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/tests/python_test/test_n2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/tests/python_test/test_n2.py -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/third_party/spdlog/async_logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/third_party/spdlog/async_logger.h -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/third_party/spdlog/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/third_party/spdlog/common.h -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/third_party/spdlog/contrib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/third_party/spdlog/contrib/README.md -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/third_party/spdlog/contrib/sinks/step_file_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/third_party/spdlog/contrib/sinks/step_file_sink.h -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/third_party/spdlog/details/async_log_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/third_party/spdlog/details/async_log_helper.h -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/third_party/spdlog/details/async_logger_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/third_party/spdlog/details/async_logger_impl.h -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/third_party/spdlog/details/file_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/third_party/spdlog/details/file_helper.h -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/third_party/spdlog/details/log_msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/third_party/spdlog/details/log_msg.h -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/third_party/spdlog/details/logger_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/third_party/spdlog/details/logger_impl.h -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/third_party/spdlog/details/mpmc_blocking_q.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/third_party/spdlog/details/mpmc_blocking_q.h -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/third_party/spdlog/details/null_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/third_party/spdlog/details/null_mutex.h -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/third_party/spdlog/details/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/third_party/spdlog/details/os.h -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/third_party/spdlog/details/registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/third_party/spdlog/details/registry.h -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/third_party/spdlog/details/spdlog_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/third_party/spdlog/details/spdlog_impl.h -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/third_party/spdlog/fmt/bundled/format.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/third_party/spdlog/fmt/bundled/format.cc -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/third_party/spdlog/fmt/bundled/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/third_party/spdlog/fmt/bundled/format.h -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/third_party/spdlog/fmt/bundled/ostream.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/third_party/spdlog/fmt/bundled/ostream.cc -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/third_party/spdlog/fmt/bundled/ostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/third_party/spdlog/fmt/bundled/ostream.h -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/third_party/spdlog/fmt/bundled/posix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/third_party/spdlog/fmt/bundled/posix.cc -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/third_party/spdlog/fmt/bundled/posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/third_party/spdlog/fmt/bundled/posix.h -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/third_party/spdlog/fmt/bundled/printf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/third_party/spdlog/fmt/bundled/printf.cc -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/third_party/spdlog/fmt/bundled/printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/third_party/spdlog/fmt/bundled/printf.h -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/third_party/spdlog/fmt/bundled/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/third_party/spdlog/fmt/bundled/time.h -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/third_party/spdlog/fmt/fmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/third_party/spdlog/fmt/fmt.h -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/third_party/spdlog/fmt/ostr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/third_party/spdlog/fmt/ostr.h -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/third_party/spdlog/formatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/third_party/spdlog/formatter.h -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/third_party/spdlog/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/third_party/spdlog/logger.h -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/third_party/spdlog/sinks/android_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/third_party/spdlog/sinks/android_sink.h -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/third_party/spdlog/sinks/ansicolor_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/third_party/spdlog/sinks/ansicolor_sink.h -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/third_party/spdlog/sinks/base_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/third_party/spdlog/sinks/base_sink.h -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/third_party/spdlog/sinks/dist_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/third_party/spdlog/sinks/dist_sink.h -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/third_party/spdlog/sinks/file_sinks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/third_party/spdlog/sinks/file_sinks.h -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/third_party/spdlog/sinks/msvc_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/third_party/spdlog/sinks/msvc_sink.h -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/third_party/spdlog/sinks/null_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/third_party/spdlog/sinks/null_sink.h -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/third_party/spdlog/sinks/ostream_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/third_party/spdlog/sinks/ostream_sink.h -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/third_party/spdlog/sinks/sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/third_party/spdlog/sinks/sink.h -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/third_party/spdlog/sinks/stdout_sinks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/third_party/spdlog/sinks/stdout_sinks.h -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/third_party/spdlog/sinks/syslog_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/third_party/spdlog/sinks/syslog_sink.h -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/third_party/spdlog/sinks/wincolor_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/third_party/spdlog/sinks/wincolor_sink.h -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/third_party/spdlog/sinks/windebug_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/third_party/spdlog/sinks/windebug_sink.h -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/third_party/spdlog/spdlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/third_party/spdlog/spdlog.h -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/hnsw/third_party/spdlog/tweakme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/hnsw/third_party/spdlog/tweakme.h -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/nsg/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/nsg/.DS_Store -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/nsg/.dockerignore: -------------------------------------------------------------------------------- 1 | build/ 2 | -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/nsg/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/nsg/CMakeLists.txt -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/nsg/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/nsg/Dockerfile -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/nsg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/nsg/LICENSE -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/nsg/README.md: -------------------------------------------------------------------------------- 1 | Refer to https://github.com/ZJULearning/nsg for usage details. -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/nsg/include/efanna2e/distance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/nsg/include/efanna2e/distance.h -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/nsg/include/efanna2e/exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/nsg/include/efanna2e/exceptions.h -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/nsg/include/efanna2e/exp_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/nsg/include/efanna2e/exp_data.h -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/nsg/include/efanna2e/index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/nsg/include/efanna2e/index.h -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/nsg/include/efanna2e/index_nsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/nsg/include/efanna2e/index_nsg.h -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/nsg/include/efanna2e/neighbor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/nsg/include/efanna2e/neighbor.h -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/nsg/include/efanna2e/parameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/nsg/include/efanna2e/parameters.h -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/nsg/include/efanna2e/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/nsg/include/efanna2e/util.h -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/nsg/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/nsg/src/CMakeLists.txt -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/nsg/src/index.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/nsg/src/index.cpp -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/nsg/src/index_nsg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/nsg/src/index_nsg.cpp -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/nsg/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/nsg/tests/CMakeLists.txt -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/nsg/tests/evaluation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/nsg/tests/evaluation.cpp -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/nssg/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/nssg/.DS_Store -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/nssg/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/nssg/.vscode/settings.json -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/nssg/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/nssg/CMakeLists.txt -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/nssg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/nssg/LICENSE -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/nssg/README.md: -------------------------------------------------------------------------------- 1 | Refer to https://github.com/ZJULearning/ssg for usage details. -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/nssg/include/distance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/nssg/include/distance.h -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/nssg/include/exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/nssg/include/exceptions.h -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/nssg/include/exp_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/nssg/include/exp_data.h -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/nssg/include/index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/nssg/include/index.h -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/nssg/include/index_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/nssg/include/index_random.h -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/nssg/include/index_ssg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/nssg/include/index_ssg.h -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/nssg/include/neighbor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/nssg/include/neighbor.h -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/nssg/include/parameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/nssg/include/parameters.h -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/nssg/include/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/nssg/include/util.h -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/nssg/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/nssg/src/CMakeLists.txt -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/nssg/src/index.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/nssg/src/index.cpp -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/nssg/src/index_random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/nssg/src/index_random.cpp -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/nssg/src/index_ssg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/nssg/src/index_ssg.cpp -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/nssg/src/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/nssg/src/util.cpp -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/nssg/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/nssg/tests/CMakeLists.txt -------------------------------------------------------------------------------- /algorithms/TOGG-KMC/nssg/tests/evaluation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/algorithms/TOGG-KMC/nssg/tests/evaluation.cpp -------------------------------------------------------------------------------- /performance/speedup_vs_recall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/performance/speedup_vs_recall.png -------------------------------------------------------------------------------- /routing_evaluation/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/routing_evaluation/.DS_Store -------------------------------------------------------------------------------- /routing_evaluation/.gitignore: -------------------------------------------------------------------------------- 1 | ./cmake-build-debug/ 2 | ./idea/ -------------------------------------------------------------------------------- /routing_evaluation/.idea/WEAVESS.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/routing_evaluation/.idea/WEAVESS.iml -------------------------------------------------------------------------------- /routing_evaluation/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/routing_evaluation/.idea/misc.xml -------------------------------------------------------------------------------- /routing_evaluation/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/routing_evaluation/.idea/modules.xml -------------------------------------------------------------------------------- /routing_evaluation/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/routing_evaluation/.idea/vcs.xml -------------------------------------------------------------------------------- /routing_evaluation/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/routing_evaluation/.vscode/settings.json -------------------------------------------------------------------------------- /routing_evaluation/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/routing_evaluation/CMakeLists.txt -------------------------------------------------------------------------------- /routing_evaluation/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/routing_evaluation/LICENSE -------------------------------------------------------------------------------- /routing_evaluation/algo/ieh/LSH_compress.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/routing_evaluation/algo/ieh/LSH_compress.m -------------------------------------------------------------------------------- /routing_evaluation/algo/ieh/LSH_learn.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/routing_evaluation/algo/ieh/LSH_learn.m -------------------------------------------------------------------------------- /routing_evaluation/algo/ieh/LSHrun.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/routing_evaluation/algo/ieh/LSHrun.m -------------------------------------------------------------------------------- /routing_evaluation/algo/ieh/excshell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/routing_evaluation/algo/ieh/excshell.py -------------------------------------------------------------------------------- /routing_evaluation/algo/ieh/fvecs_read.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/routing_evaluation/algo/ieh/fvecs_read.m -------------------------------------------------------------------------------- /routing_evaluation/algo/ieh/ivecs_read.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/routing_evaluation/algo/ieh/ivecs_read.m -------------------------------------------------------------------------------- /routing_evaluation/algo/knn/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/routing_evaluation/algo/knn/CMakeLists.txt -------------------------------------------------------------------------------- /routing_evaluation/algo/knn/gen_knn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/routing_evaluation/algo/knn/gen_knn.cpp -------------------------------------------------------------------------------- /routing_evaluation/cmake/module/FindOpenBLAS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/routing_evaluation/cmake/module/FindOpenBLAS.cmake -------------------------------------------------------------------------------- /routing_evaluation/dataset/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/routing_evaluation/dataset/CMakeLists.txt -------------------------------------------------------------------------------- /routing_evaluation/dataset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/routing_evaluation/dataset/README.md -------------------------------------------------------------------------------- /routing_evaluation/dataset/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/routing_evaluation/dataset/main.cpp -------------------------------------------------------------------------------- /routing_evaluation/dataset/other2vecs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/routing_evaluation/dataset/other2vecs.py -------------------------------------------------------------------------------- /routing_evaluation/include/weavess/CommonDataStructure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/routing_evaluation/include/weavess/CommonDataStructure.h -------------------------------------------------------------------------------- /routing_evaluation/include/weavess/builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/routing_evaluation/include/weavess/builder.h -------------------------------------------------------------------------------- /routing_evaluation/include/weavess/component.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/routing_evaluation/include/weavess/component.h -------------------------------------------------------------------------------- /routing_evaluation/include/weavess/distance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/routing_evaluation/include/weavess/distance.h -------------------------------------------------------------------------------- /routing_evaluation/include/weavess/exp_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/routing_evaluation/include/weavess/exp_data.h -------------------------------------------------------------------------------- /routing_evaluation/include/weavess/index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/routing_evaluation/include/weavess/index.h -------------------------------------------------------------------------------- /routing_evaluation/include/weavess/parameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/routing_evaluation/include/weavess/parameters.h -------------------------------------------------------------------------------- /routing_evaluation/include/weavess/policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/routing_evaluation/include/weavess/policy.h -------------------------------------------------------------------------------- /routing_evaluation/include/weavess/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/routing_evaluation/include/weavess/util.h -------------------------------------------------------------------------------- /routing_evaluation/parameters/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/routing_evaluation/parameters/README.md -------------------------------------------------------------------------------- /routing_evaluation/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/routing_evaluation/src/CMakeLists.txt -------------------------------------------------------------------------------- /routing_evaluation/src/builder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/routing_evaluation/src/builder.cpp -------------------------------------------------------------------------------- /routing_evaluation/src/component_candidate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/routing_evaluation/src/component_candidate.cpp -------------------------------------------------------------------------------- /routing_evaluation/src/component_conn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/routing_evaluation/src/component_conn.cpp -------------------------------------------------------------------------------- /routing_evaluation/src/component_entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/routing_evaluation/src/component_entry.cpp -------------------------------------------------------------------------------- /routing_evaluation/src/component_init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/routing_evaluation/src/component_init.cpp -------------------------------------------------------------------------------- /routing_evaluation/src/component_load.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/routing_evaluation/src/component_load.cpp -------------------------------------------------------------------------------- /routing_evaluation/src/component_prune.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/routing_evaluation/src/component_prune.cpp -------------------------------------------------------------------------------- /routing_evaluation/src/component_refine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/routing_evaluation/src/component_refine.cpp -------------------------------------------------------------------------------- /routing_evaluation/src/component_route.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/routing_evaluation/src/component_route.cpp -------------------------------------------------------------------------------- /routing_evaluation/src/component_search_entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/routing_evaluation/src/component_search_entry.cpp -------------------------------------------------------------------------------- /routing_evaluation/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/routing_evaluation/test/CMakeLists.txt -------------------------------------------------------------------------------- /routing_evaluation/test/evaluation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whenever5225/TOGG/HEAD/routing_evaluation/test/evaluation.cpp --------------------------------------------------------------------------------