gitextract__vrufcg9/ ├── .github/ │ └── workflows/ │ ├── ci.yml │ └── publish.yml ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── MANIFEST.in ├── README.rst ├── README_GO.rst ├── README_Lua.md ├── RELEASE.md ├── annoy/ │ ├── __init__.py │ ├── __init__.pyi │ └── py.typed ├── annoy-dev-1.rockspec ├── debian/ │ ├── changelog │ ├── compat │ ├── control │ └── rules ├── examples/ │ ├── mmap_test.py │ ├── precision_test.cpp │ ├── precision_test.py │ ├── s_compile_cpp.sh │ └── simple_test.py ├── setup.cfg ├── setup.py ├── src/ │ ├── annoygomodule.h │ ├── annoygomodule.i │ ├── annoylib.h │ ├── annoyluamodule.cc │ ├── annoymodule.cc │ ├── kissrandom.h │ └── mman.h ├── test/ │ ├── accuracy_test.py │ ├── angular_index_test.py │ ├── annoy_test.go │ ├── annoy_test.lua │ ├── dot_index_test.py │ ├── euclidean_index_test.py │ ├── examples_test.py │ ├── hamming_index_test.py │ ├── holes_test.py │ ├── index_test.py │ ├── manhattan_index_test.py │ ├── memory_leak_test.py │ ├── multithreaded_build_test.py │ ├── on_disk_build_test.py │ ├── seed_test.py │ ├── threading_test.py │ └── types_test.py └── tox.ini