smart-bbox 0.1.13__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1839) hide show
  1. smart_bbox-0.1.13/CITATION.cff +24 -0
  2. smart_bbox-0.1.13/LICENSE +418 -0
  3. smart_bbox-0.1.13/MANIFEST.in +51 -0
  4. smart_bbox-0.1.13/PKG-INFO +397 -0
  5. smart_bbox-0.1.13/README.md +354 -0
  6. smart_bbox-0.1.13/cmake/ftetwild_compat.cmake +3 -0
  7. smart_bbox-0.1.13/configs/README.md +22 -0
  8. smart_bbox-0.1.13/configs/demo.yaml +73 -0
  9. smart_bbox-0.1.13/configs/example_3x3.yaml +98 -0
  10. smart_bbox-0.1.13/configs/expanded_full.yaml +58 -0
  11. smart_bbox-0.1.13/configs/paper_like.yaml +85 -0
  12. smart_bbox-0.1.13/configs/smoke_5.yaml +112 -0
  13. smart_bbox-0.1.13/cpp/README.md +24 -0
  14. smart_bbox-0.1.13/cpp/manifold_bridge.cpp +1499 -0
  15. smart_bbox-0.1.13/cpp/smart_cpp_module.cpp +7819 -0
  16. smart_bbox-0.1.13/cpp/smart_native_cli.cpp +3232 -0
  17. smart_bbox-0.1.13/cpp/smart_native_core.cpp +1464 -0
  18. smart_bbox-0.1.13/cpp/smart_native_core.hpp +218 -0
  19. smart_bbox-0.1.13/cpp/smart_native_engine.cpp +2265 -0
  20. smart_bbox-0.1.13/cpp/smart_native_engine.hpp +106 -0
  21. smart_bbox-0.1.13/docs/PIPELINE.md +117 -0
  22. smart_bbox-0.1.13/docs/PYTHON_PACKAGE.md +138 -0
  23. smart_bbox-0.1.13/docs/QUICKSTART.md +250 -0
  24. smart_bbox-0.1.13/docs/RELEASE.md +203 -0
  25. smart_bbox-0.1.13/docs/RELEASE_NOTES_0.1.0.md +122 -0
  26. smart_bbox-0.1.13/docs/REPOSITORY_STRUCTURE.md +106 -0
  27. smart_bbox-0.1.13/docs/RESEARCH_PLAN.md +124 -0
  28. smart_bbox-0.1.13/docs/TETRA_FAILURE_PLAYBOOK.md +161 -0
  29. smart_bbox-0.1.13/docs/teaser.png +0 -0
  30. smart_bbox-0.1.13/pymesh.py +9 -0
  31. smart_bbox-0.1.13/pyproject.toml +74 -0
  32. smart_bbox-0.1.13/scripts/README.md +22 -0
  33. smart_bbox-0.1.13/scripts/__init__.py +1 -0
  34. smart_bbox-0.1.13/scripts/analyze_pipeline_failures.py +128 -0
  35. smart_bbox-0.1.13/scripts/audit_release_wheel.py +513 -0
  36. smart_bbox-0.1.13/scripts/ci_build_manifold.py +71 -0
  37. smart_bbox-0.1.13/scripts/prepare_shapenet_samples.py +444 -0
  38. smart_bbox-0.1.13/scripts/quickstart_reproduce.py +119 -0
  39. smart_bbox-0.1.13/scripts/release_preflight.py +190 -0
  40. smart_bbox-0.1.13/scripts/smoke_console_scripts.py +129 -0
  41. smart_bbox-0.1.13/scripts/smoke_native_sanitizers.py +138 -0
  42. smart_bbox-0.1.13/setup.cfg +4 -0
  43. smart_bbox-0.1.13/setup.py +7 -0
  44. smart_bbox-0.1.13/setup_cpp.py +373 -0
  45. smart_bbox-0.1.13/smart/__init__.py +200 -0
  46. smart_bbox-0.1.13/smart/__main__.py +7 -0
  47. smart_bbox-0.1.13/smart/action_prior.py +2610 -0
  48. smart_bbox-0.1.13/smart/api.py +260 -0
  49. smart_bbox-0.1.13/smart/box_proposal.py +1452 -0
  50. smart_bbox-0.1.13/smart/candidate_pruning_gate.py +551 -0
  51. smart_bbox-0.1.13/smart/cli.py +1092 -0
  52. smart_bbox-0.1.13/smart/configs/__init__.py +1 -0
  53. smart_bbox-0.1.13/smart/configs/demo.yaml +73 -0
  54. smart_bbox-0.1.13/smart/configs/example_3x3.yaml +98 -0
  55. smart_bbox-0.1.13/smart/configs/expanded_full.yaml +58 -0
  56. smart_bbox-0.1.13/smart/configs/paper_like.yaml +85 -0
  57. smart_bbox-0.1.13/smart/configs/smoke_5.yaml +112 -0
  58. smart_bbox-0.1.13/smart/cpp.py +846 -0
  59. smart_bbox-0.1.13/smart/evaluation.py +454 -0
  60. smart_bbox-0.1.13/smart/legacy/__init__.py +1 -0
  61. smart_bbox-0.1.13/smart/legacy/merging/__init__.py +1 -0
  62. smart_bbox-0.1.13/smart/legacy/merging/configs/__init__.py +1 -0
  63. smart_bbox-0.1.13/smart/legacy/merging/configs/args.py +342 -0
  64. smart_bbox-0.1.13/smart/legacy/merging/greedy_all.py +159 -0
  65. smart_bbox-0.1.13/smart/legacy/merging/run.py +67 -0
  66. smart_bbox-0.1.13/smart/legacy/merging/src/__init__.py +0 -0
  67. smart_bbox-0.1.13/smart/legacy/merging/src/buffer/__init__.py +0 -0
  68. smart_bbox-0.1.13/smart/legacy/merging/src/buffer/buffer.py +203 -0
  69. smart_bbox-0.1.13/smart/legacy/merging/src/buffer/perbuffer.py +148 -0
  70. smart_bbox-0.1.13/smart/legacy/merging/src/datamodules/__init__.py +0 -0
  71. smart_bbox-0.1.13/smart/legacy/merging/src/datamodules/datasets/__init__.py +0 -0
  72. smart_bbox-0.1.13/smart/legacy/merging/src/datamodules/datasets/gen_3d_cuboids.py +128 -0
  73. smart_bbox-0.1.13/smart/legacy/merging/src/datamodules/tetmesh_datamodule.py +137 -0
  74. smart_bbox-0.1.13/smart/legacy/merging/src/eval.py +71 -0
  75. smart_bbox-0.1.13/smart/legacy/merging/src/gen_dataset.py +97 -0
  76. smart_bbox-0.1.13/smart/legacy/merging/src/greedy.py +361 -0
  77. smart_bbox-0.1.13/smart/legacy/merging/src/greedy_chanho.py +146 -0
  78. smart_bbox-0.1.13/smart/legacy/merging/src/models/__init__.py +0 -0
  79. smart_bbox-0.1.13/smart/legacy/merging/src/models/dqn.py +915 -0
  80. smart_bbox-0.1.13/smart/legacy/merging/src/models/policies.py +118 -0
  81. smart_bbox-0.1.13/smart/legacy/merging/src/train.py +53 -0
  82. smart_bbox-0.1.13/smart/legacy/merging/src/utils/__init__.py +0 -0
  83. smart_bbox-0.1.13/smart/legacy/merging/src/utils/bounding_box.py +305 -0
  84. smart_bbox-0.1.13/smart/legacy/merging/src/utils/bsp_preseg.py +351 -0
  85. smart_bbox-0.1.13/smart/legacy/merging/src/utils/l2_preseg.py +125 -0
  86. smart_bbox-0.1.13/smart/legacy/merging/src/utils/preseg.py +416 -0
  87. smart_bbox-0.1.13/smart/legacy/merging/src/utils/utils.py +132 -0
  88. smart_bbox-0.1.13/smart/legacy/merging/src/var3dseg.py +57 -0
  89. smart_bbox-0.1.13/smart/legacy/mesh2tet/__init__.py +1 -0
  90. smart_bbox-0.1.13/smart/legacy/mesh2tet/scripts/__init__.py +1 -0
  91. smart_bbox-0.1.13/smart/legacy/mesh2tet/scripts/mesh2tetra.py +125 -0
  92. smart_bbox-0.1.13/smart/legacy/refine/__init__.py +1 -0
  93. smart_bbox-0.1.13/smart/legacy/refine/configs/__init__.py +1 -0
  94. smart_bbox-0.1.13/smart/legacy/refine/configs/args.py +814 -0
  95. smart_bbox-0.1.13/smart/legacy/refine/run.py +68 -0
  96. smart_bbox-0.1.13/smart/legacy/refine/src/__init__.py +0 -0
  97. smart_bbox-0.1.13/smart/legacy/refine/src/buffer/__init__.py +0 -0
  98. smart_bbox-0.1.13/smart/legacy/refine/src/buffer/buffer.py +199 -0
  99. smart_bbox-0.1.13/smart/legacy/refine/src/buffer/perbuffer.py +152 -0
  100. smart_bbox-0.1.13/smart/legacy/refine/src/datamodules/__init__.py +0 -0
  101. smart_bbox-0.1.13/smart/legacy/refine/src/datamodules/tetmesh_datamodule.py +137 -0
  102. smart_bbox-0.1.13/smart/legacy/refine/src/eval.py +71 -0
  103. smart_bbox-0.1.13/smart/legacy/refine/src/greedy.py +258 -0
  104. smart_bbox-0.1.13/smart/legacy/refine/src/mcts.py +402 -0
  105. smart_bbox-0.1.13/smart/legacy/refine/src/models/__init__.py +0 -0
  106. smart_bbox-0.1.13/smart/legacy/refine/src/models/dqn.py +1197 -0
  107. smart_bbox-0.1.13/smart/legacy/refine/src/models/policies.py +109 -0
  108. smart_bbox-0.1.13/smart/legacy/refine/src/models/tree_search.py +1347 -0
  109. smart_bbox-0.1.13/smart/legacy/refine/src/train.py +53 -0
  110. smart_bbox-0.1.13/smart/legacy/refine/src/utils/__init__.py +0 -0
  111. smart_bbox-0.1.13/smart/legacy/refine/src/utils/bbox_bsp_preseg.py +173 -0
  112. smart_bbox-0.1.13/smart/legacy/refine/src/utils/bounding_box.py +290 -0
  113. smart_bbox-0.1.13/smart/legacy/refine/src/utils/utils.py +134 -0
  114. smart_bbox-0.1.13/smart/legacy/renderer/__init__.py +1 -0
  115. smart_bbox-0.1.13/smart/legacy/renderer/blender_mesh_teaser.py +460 -0
  116. smart_bbox-0.1.13/smart/legacy/renderer/boxes.blend +0 -0
  117. smart_bbox-0.1.13/smart/legacy/renderer/render_all.py +238 -0
  118. smart_bbox-0.1.13/smart/legacy/renderer/render_all_teaser.py +219 -0
  119. smart_bbox-0.1.13/smart/legacy/renderer/render_teaser.py +690 -0
  120. smart_bbox-0.1.13/smart/legacy/renderer/semantic_colors.txt +57 -0
  121. smart_bbox-0.1.13/smart/legacy/renderer/vis_utils.py +461 -0
  122. smart_bbox-0.1.13/smart/local_refine_gate.py +665 -0
  123. smart_bbox-0.1.13/smart/native.py +43 -0
  124. smart_bbox-0.1.13/smart/native_compat.py +2221 -0
  125. smart_bbox-0.1.13/smart/native_executable.py +91 -0
  126. smart_bbox-0.1.13/smart/native_runner.py +1507 -0
  127. smart_bbox-0.1.13/smart/pipeline/__init__.py +8 -0
  128. smart_bbox-0.1.13/smart/pipeline/config.py +469 -0
  129. smart_bbox-0.1.13/smart/pipeline/manifest.py +82 -0
  130. smart_bbox-0.1.13/smart/pipeline/runner.py +121 -0
  131. smart_bbox-0.1.13/smart/pipeline/stages.py +3978 -0
  132. smart_bbox-0.1.13/smart/pipeline/tools.py +1169 -0
  133. smart_bbox-0.1.13/smart/py.typed +1 -0
  134. smart_bbox-0.1.13/smart/pymanifold_runtime/.gitkeep +1 -0
  135. smart_bbox-0.1.13/smart/pymesh_compat.py +268 -0
  136. smart_bbox-0.1.13/smart/quality.py +262 -0
  137. smart_bbox-0.1.13/smart/vendor/manifold/.clang-format +1 -0
  138. smart_bbox-0.1.13/smart/vendor/manifold/.codecov.yml +8 -0
  139. smart_bbox-0.1.13/smart/vendor/manifold/.gitignore +116 -0
  140. smart_bbox-0.1.13/smart/vendor/manifold/.gitmodules +13 -0
  141. smart_bbox-0.1.13/smart/vendor/manifold/AUTHORS +9 -0
  142. smart_bbox-0.1.13/smart/vendor/manifold/CMakeLists.txt +89 -0
  143. smart_bbox-0.1.13/smart/vendor/manifold/CONTRIBUTING.md +29 -0
  144. smart_bbox-0.1.13/smart/vendor/manifold/Doxyfile +2584 -0
  145. smart_bbox-0.1.13/smart/vendor/manifold/LICENSE +201 -0
  146. smart_bbox-0.1.13/smart/vendor/manifold/README.md +106 -0
  147. smart_bbox-0.1.13/smart/vendor/manifold/bindings/CMakeLists.txt +25 -0
  148. smart_bbox-0.1.13/smart/vendor/manifold/bindings/c/CMakeLists.txt +18 -0
  149. smart_bbox-0.1.13/smart/vendor/manifold/bindings/c/box.cpp +94 -0
  150. smart_bbox-0.1.13/smart/vendor/manifold/bindings/c/conv.cpp +166 -0
  151. smart_bbox-0.1.13/smart/vendor/manifold/bindings/c/include/conv.h +55 -0
  152. smart_bbox-0.1.13/smart/vendor/manifold/bindings/c/include/manifoldc.h +224 -0
  153. smart_bbox-0.1.13/smart/vendor/manifold/bindings/c/include/types.h +74 -0
  154. smart_bbox-0.1.13/smart/vendor/manifold/bindings/c/manifoldc.cpp +462 -0
  155. smart_bbox-0.1.13/smart/vendor/manifold/bindings/c/meshio.cpp +72 -0
  156. smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/CMakeLists.txt +24 -0
  157. smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/examples/bricks.py +79 -0
  158. smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/examples/cube_with_dents.py +30 -0
  159. smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/examples/maze.py +4040 -0
  160. smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/examples/run_all.py +42 -0
  161. smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/examples/union_failure.py +7 -0
  162. smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/pymanifold.cpp +515 -0
  163. smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/CMakeLists.txt +1 -0
  164. smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/.appveyor.yml +37 -0
  165. smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/.clang-format +19 -0
  166. smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/.clang-tidy +66 -0
  167. smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/.cmake-format.yaml +73 -0
  168. smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/.gitignore +45 -0
  169. smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/.pre-commit-config.yaml +151 -0
  170. smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/.readthedocs.yml +3 -0
  171. smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/CMakeLists.txt +299 -0
  172. smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/LICENSE +29 -0
  173. smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/MANIFEST.in +6 -0
  174. smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/README.rst +180 -0
  175. smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/include/pybind11/attr.h +613 -0
  176. smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/include/pybind11/buffer_info.h +144 -0
  177. smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/include/pybind11/cast.h +1422 -0
  178. smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/include/pybind11/chrono.h +211 -0
  179. smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/include/pybind11/common.h +2 -0
  180. smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/include/pybind11/complex.h +65 -0
  181. smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/include/pybind11/detail/class.h +709 -0
  182. smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/include/pybind11/detail/common.h +1063 -0
  183. smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/include/pybind11/detail/descr.h +133 -0
  184. smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/include/pybind11/detail/init.h +346 -0
  185. smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/include/pybind11/detail/internals.h +553 -0
  186. smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/include/pybind11/detail/type_caster_base.h +985 -0
  187. smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/include/pybind11/detail/typeid.h +55 -0
  188. smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/include/pybind11/eigen.h +608 -0
  189. smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/include/pybind11/embed.h +296 -0
  190. smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/include/pybind11/eval.h +163 -0
  191. smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/include/pybind11/functional.h +121 -0
  192. smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/include/pybind11/gil.h +193 -0
  193. smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/include/pybind11/iostream.h +275 -0
  194. smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/include/pybind11/numpy.h +1741 -0
  195. smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/include/pybind11/operators.h +163 -0
  196. smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/include/pybind11/options.h +65 -0
  197. smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/include/pybind11/pybind11.h +2573 -0
  198. smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/include/pybind11/pytypes.h +1924 -0
  199. smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/include/pybind11/stl/filesystem.h +103 -0
  200. smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/include/pybind11/stl.h +375 -0
  201. smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/include/pybind11/stl_bind.h +747 -0
  202. smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/noxfile.py +93 -0
  203. smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/pybind11/__init__.py +11 -0
  204. smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/pybind11/__main__.py +52 -0
  205. smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/pybind11/_version.py +12 -0
  206. smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/pybind11/_version.pyi +6 -0
  207. smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/pybind11/commands.py +21 -0
  208. smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/pybind11/py.typed +0 -0
  209. smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/pybind11/setup_helpers.py +494 -0
  210. smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/pybind11/setup_helpers.pyi +63 -0
  211. smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/pyproject.toml +41 -0
  212. smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/setup.cfg +63 -0
  213. smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/setup.py +162 -0
  214. smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/tools/FindCatch.cmake +70 -0
  215. smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/tools/FindEigen3.cmake +86 -0
  216. smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/tools/FindPythonLibsNew.cmake +257 -0
  217. smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/tools/check-style.sh +44 -0
  218. smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/tools/cmake_uninstall.cmake.in +23 -0
  219. smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/tools/libsize.py +39 -0
  220. smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/tools/make_changelog.py +64 -0
  221. smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/tools/pybind11Common.cmake +411 -0
  222. smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/tools/pybind11Config.cmake.in +233 -0
  223. smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/tools/pybind11NewTools.cmake +278 -0
  224. smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/tools/pybind11Tools.cmake +219 -0
  225. smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/tools/pyproject.toml +3 -0
  226. smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/tools/setup_global.py.in +65 -0
  227. smart_bbox-0.1.13/smart/vendor/manifold/bindings/python/third_party/pybind11/tools/setup_main.py.in +41 -0
  228. smart_bbox-0.1.13/smart/vendor/manifold/extras/CMakeLists.txt +33 -0
  229. smart_bbox-0.1.13/smart/vendor/manifold/extras/perf +22 -0
  230. smart_bbox-0.1.13/smart/vendor/manifold/extras/perf_test.cpp +34 -0
  231. smart_bbox-0.1.13/smart/vendor/manifold/extras/perf_test_cgal.cpp +79 -0
  232. smart_bbox-0.1.13/smart/vendor/manifold/flake.lock +42 -0
  233. smart_bbox-0.1.13/smart/vendor/manifold/flake.nix +131 -0
  234. smart_bbox-0.1.13/smart/vendor/manifold/src/CMakeLists.txt +20 -0
  235. smart_bbox-0.1.13/smart/vendor/manifold/src/collider/CMakeLists.txt +30 -0
  236. smart_bbox-0.1.13/smart/vendor/manifold/src/collider/include/collider.h +45 -0
  237. smart_bbox-0.1.13/smart/vendor/manifold/src/collider/src/collider.cpp +340 -0
  238. smart_bbox-0.1.13/smart/vendor/manifold/src/manifold/CMakeLists.txt +33 -0
  239. smart_bbox-0.1.13/smart/vendor/manifold/src/manifold/include/manifold.h +204 -0
  240. smart_bbox-0.1.13/smart/vendor/manifold/src/manifold/src/boolean3.cpp +617 -0
  241. smart_bbox-0.1.13/smart/vendor/manifold/src/manifold/src/boolean3.h +62 -0
  242. smart_bbox-0.1.13/smart/vendor/manifold/src/manifold/src/boolean_result.cpp +730 -0
  243. smart_bbox-0.1.13/smart/vendor/manifold/src/manifold/src/constructors.cpp +478 -0
  244. smart_bbox-0.1.13/smart/vendor/manifold/src/manifold/src/csg_tree.cpp +457 -0
  245. smart_bbox-0.1.13/smart/vendor/manifold/src/manifold/src/csg_tree.h +104 -0
  246. smart_bbox-0.1.13/smart/vendor/manifold/src/manifold/src/edge_op.cpp +522 -0
  247. smart_bbox-0.1.13/smart/vendor/manifold/src/manifold/src/face_op.cpp +173 -0
  248. smart_bbox-0.1.13/smart/vendor/manifold/src/manifold/src/impl.cpp +861 -0
  249. smart_bbox-0.1.13/smart/vendor/manifold/src/manifold/src/impl.h +134 -0
  250. smart_bbox-0.1.13/smart/vendor/manifold/src/manifold/src/manifold.cpp +739 -0
  251. smart_bbox-0.1.13/smart/vendor/manifold/src/manifold/src/properties.cpp +373 -0
  252. smart_bbox-0.1.13/smart/vendor/manifold/src/manifold/src/shared.h +236 -0
  253. smart_bbox-0.1.13/smart/vendor/manifold/src/manifold/src/smoothing.cpp +499 -0
  254. smart_bbox-0.1.13/smart/vendor/manifold/src/manifold/src/sort.cpp +435 -0
  255. smart_bbox-0.1.13/smart/vendor/manifold/src/polygon/CMakeLists.txt +28 -0
  256. smart_bbox-0.1.13/smart/vendor/manifold/src/polygon/include/polygon.h +30 -0
  257. smart_bbox-0.1.13/smart/vendor/manifold/src/polygon/src/polygon.cpp +1074 -0
  258. smart_bbox-0.1.13/smart/vendor/manifold/src/sdf/CMakeLists.txt +24 -0
  259. smart_bbox-0.1.13/smart/vendor/manifold/src/sdf/include/sdf.h +385 -0
  260. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/CMakeLists.txt +1 -0
  261. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/.appveyor.yml +87 -0
  262. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/.gitignore +61 -0
  263. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/.travis.yml +735 -0
  264. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/CMakeLists.txt +15 -0
  265. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/cmake/glm/glmConfig-version.cmake +11 -0
  266. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/cmake/glm/glmConfig.cmake +22 -0
  267. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/copying.txt +54 -0
  268. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/CMakeLists.txt +70 -0
  269. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/common.hpp +539 -0
  270. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/_features.hpp +394 -0
  271. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/_fixes.hpp +27 -0
  272. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/_noise.hpp +81 -0
  273. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/_swizzle.hpp +804 -0
  274. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/_swizzle_func.hpp +682 -0
  275. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/_vectorize.hpp +162 -0
  276. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/compute_common.hpp +50 -0
  277. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/compute_vector_relational.hpp +30 -0
  278. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/func_common.inl +792 -0
  279. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/func_common_simd.inl +231 -0
  280. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/func_exponential.inl +152 -0
  281. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/func_exponential_simd.inl +37 -0
  282. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/func_geometric.inl +243 -0
  283. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/func_geometric_simd.inl +163 -0
  284. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/func_integer.inl +372 -0
  285. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/func_integer_simd.inl +65 -0
  286. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/func_matrix.inl +398 -0
  287. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/func_matrix_simd.inl +249 -0
  288. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/func_packing.inl +189 -0
  289. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/func_packing_simd.inl +6 -0
  290. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/func_trigonometric.inl +197 -0
  291. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/func_trigonometric_simd.inl +0 -0
  292. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/func_vector_relational.inl +87 -0
  293. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/func_vector_relational_simd.inl +6 -0
  294. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/glm.cpp +263 -0
  295. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/qualifier.hpp +230 -0
  296. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/setup.hpp +1135 -0
  297. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/type_float.hpp +68 -0
  298. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/type_half.hpp +16 -0
  299. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/type_half.inl +241 -0
  300. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/type_mat2x2.hpp +177 -0
  301. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/type_mat2x2.inl +536 -0
  302. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/type_mat2x3.hpp +159 -0
  303. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/type_mat2x3.inl +510 -0
  304. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/type_mat2x4.hpp +161 -0
  305. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/type_mat2x4.inl +520 -0
  306. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/type_mat3x2.hpp +167 -0
  307. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/type_mat3x2.inl +532 -0
  308. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/type_mat3x3.hpp +184 -0
  309. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/type_mat3x3.inl +601 -0
  310. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/type_mat3x4.hpp +166 -0
  311. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/type_mat3x4.inl +578 -0
  312. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/type_mat4x2.hpp +171 -0
  313. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/type_mat4x2.inl +574 -0
  314. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/type_mat4x3.hpp +171 -0
  315. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/type_mat4x3.inl +598 -0
  316. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/type_mat4x4.hpp +189 -0
  317. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/type_mat4x4.inl +706 -0
  318. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/type_mat4x4_simd.inl +6 -0
  319. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/type_quat.hpp +186 -0
  320. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/type_quat.inl +408 -0
  321. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/type_quat_simd.inl +188 -0
  322. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/type_vec1.hpp +308 -0
  323. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/type_vec1.inl +551 -0
  324. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/type_vec2.hpp +399 -0
  325. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/type_vec2.inl +913 -0
  326. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/type_vec3.hpp +432 -0
  327. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/type_vec3.inl +1068 -0
  328. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/type_vec4.hpp +505 -0
  329. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/type_vec4.inl +1140 -0
  330. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/detail/type_vec4_simd.inl +775 -0
  331. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/exponential.hpp +110 -0
  332. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_clip_space.hpp +522 -0
  333. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_clip_space.inl +555 -0
  334. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_common.hpp +36 -0
  335. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_common.inl +16 -0
  336. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_double2x2.hpp +23 -0
  337. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_double2x2_precision.hpp +49 -0
  338. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_double2x3.hpp +18 -0
  339. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_double2x3_precision.hpp +31 -0
  340. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_double2x4.hpp +18 -0
  341. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_double2x4_precision.hpp +31 -0
  342. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_double3x2.hpp +18 -0
  343. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_double3x2_precision.hpp +31 -0
  344. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_double3x3.hpp +23 -0
  345. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_double3x3_precision.hpp +49 -0
  346. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_double3x4.hpp +18 -0
  347. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_double3x4_precision.hpp +31 -0
  348. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_double4x2.hpp +18 -0
  349. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_double4x2_precision.hpp +31 -0
  350. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_double4x3.hpp +18 -0
  351. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_double4x3_precision.hpp +31 -0
  352. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_double4x4.hpp +23 -0
  353. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_double4x4_precision.hpp +49 -0
  354. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_float2x2.hpp +23 -0
  355. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_float2x2_precision.hpp +49 -0
  356. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_float2x3.hpp +18 -0
  357. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_float2x3_precision.hpp +31 -0
  358. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_float2x4.hpp +18 -0
  359. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_float2x4_precision.hpp +31 -0
  360. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_float3x2.hpp +18 -0
  361. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_float3x2_precision.hpp +31 -0
  362. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_float3x3.hpp +23 -0
  363. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_float3x3_precision.hpp +49 -0
  364. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_float3x4.hpp +18 -0
  365. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_float3x4_precision.hpp +31 -0
  366. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_float4x2.hpp +18 -0
  367. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_float4x2_precision.hpp +31 -0
  368. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_float4x3.hpp +18 -0
  369. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_float4x3_precision.hpp +31 -0
  370. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_float4x4.hpp +23 -0
  371. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_float4x4_precision.hpp +49 -0
  372. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_int2x2.hpp +38 -0
  373. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_int2x2_sized.hpp +70 -0
  374. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_int2x3.hpp +33 -0
  375. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_int2x3_sized.hpp +49 -0
  376. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_int2x4.hpp +33 -0
  377. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_int2x4_sized.hpp +49 -0
  378. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_int3x2.hpp +33 -0
  379. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_int3x2_sized.hpp +49 -0
  380. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_int3x3.hpp +38 -0
  381. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_int3x3_sized.hpp +70 -0
  382. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_int3x4.hpp +33 -0
  383. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_int3x4_sized.hpp +49 -0
  384. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_int4x2.hpp +33 -0
  385. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_int4x2_sized.hpp +49 -0
  386. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_int4x3.hpp +33 -0
  387. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_int4x3_sized.hpp +49 -0
  388. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_int4x4.hpp +38 -0
  389. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_int4x4_sized.hpp +70 -0
  390. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_projection.hpp +149 -0
  391. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_projection.inl +106 -0
  392. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_relational.hpp +132 -0
  393. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_relational.inl +82 -0
  394. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_transform.hpp +144 -0
  395. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_transform.inl +152 -0
  396. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_uint2x2.hpp +38 -0
  397. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_uint2x2_sized.hpp +70 -0
  398. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_uint2x3.hpp +33 -0
  399. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_uint2x3_sized.hpp +49 -0
  400. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_uint2x4.hpp +33 -0
  401. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_uint2x4_sized.hpp +49 -0
  402. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_uint3x2.hpp +33 -0
  403. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_uint3x2_sized.hpp +49 -0
  404. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_uint3x3.hpp +38 -0
  405. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_uint3x3_sized.hpp +70 -0
  406. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_uint3x4.hpp +33 -0
  407. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_uint3x4_sized.hpp +49 -0
  408. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_uint4x2.hpp +33 -0
  409. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_uint4x2_sized.hpp +49 -0
  410. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_uint4x3.hpp +33 -0
  411. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_uint4x3_sized.hpp +49 -0
  412. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_uint4x4.hpp +38 -0
  413. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/matrix_uint4x4_sized.hpp +70 -0
  414. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/quaternion_common.hpp +135 -0
  415. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/quaternion_common.inl +144 -0
  416. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/quaternion_common_simd.inl +18 -0
  417. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/quaternion_double.hpp +39 -0
  418. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/quaternion_double_precision.hpp +42 -0
  419. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/quaternion_exponential.hpp +63 -0
  420. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/quaternion_exponential.inl +85 -0
  421. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/quaternion_float.hpp +39 -0
  422. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/quaternion_float_precision.hpp +36 -0
  423. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/quaternion_geometric.hpp +70 -0
  424. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/quaternion_geometric.inl +36 -0
  425. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/quaternion_relational.hpp +62 -0
  426. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/quaternion_relational.inl +35 -0
  427. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/quaternion_transform.hpp +47 -0
  428. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/quaternion_transform.inl +24 -0
  429. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/quaternion_trigonometric.hpp +63 -0
  430. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/quaternion_trigonometric.inl +34 -0
  431. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/scalar_common.hpp +157 -0
  432. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/scalar_common.inl +152 -0
  433. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/scalar_constants.hpp +40 -0
  434. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/scalar_constants.inl +24 -0
  435. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/scalar_int_sized.hpp +70 -0
  436. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/scalar_integer.hpp +92 -0
  437. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/scalar_integer.inl +243 -0
  438. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/scalar_packing.hpp +32 -0
  439. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/scalar_packing.inl +0 -0
  440. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/scalar_relational.hpp +65 -0
  441. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/scalar_relational.inl +40 -0
  442. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/scalar_uint_sized.hpp +70 -0
  443. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/scalar_ulp.hpp +74 -0
  444. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/scalar_ulp.inl +284 -0
  445. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_bool1.hpp +30 -0
  446. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_bool1_precision.hpp +34 -0
  447. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_bool2.hpp +18 -0
  448. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_bool2_precision.hpp +31 -0
  449. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_bool3.hpp +18 -0
  450. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_bool3_precision.hpp +31 -0
  451. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_bool4.hpp +18 -0
  452. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_bool4_precision.hpp +31 -0
  453. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_common.hpp +204 -0
  454. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_common.inl +129 -0
  455. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_double1.hpp +31 -0
  456. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_double1_precision.hpp +36 -0
  457. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_double2.hpp +18 -0
  458. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_double2_precision.hpp +31 -0
  459. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_double3.hpp +18 -0
  460. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_double3_precision.hpp +34 -0
  461. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_double4.hpp +18 -0
  462. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_double4_precision.hpp +35 -0
  463. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_float1.hpp +31 -0
  464. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_float1_precision.hpp +36 -0
  465. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_float2.hpp +18 -0
  466. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_float2_precision.hpp +31 -0
  467. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_float3.hpp +18 -0
  468. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_float3_precision.hpp +31 -0
  469. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_float4.hpp +18 -0
  470. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_float4_precision.hpp +31 -0
  471. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_int1.hpp +32 -0
  472. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_int1_sized.hpp +49 -0
  473. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_int2.hpp +18 -0
  474. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_int2_sized.hpp +49 -0
  475. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_int3.hpp +18 -0
  476. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_int3_sized.hpp +49 -0
  477. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_int4.hpp +18 -0
  478. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_int4_sized.hpp +49 -0
  479. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_integer.hpp +149 -0
  480. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_integer.inl +85 -0
  481. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_packing.hpp +32 -0
  482. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_packing.inl +0 -0
  483. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_relational.hpp +107 -0
  484. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_relational.inl +75 -0
  485. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_uint1.hpp +32 -0
  486. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_uint1_sized.hpp +49 -0
  487. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_uint2.hpp +18 -0
  488. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_uint2_sized.hpp +49 -0
  489. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_uint3.hpp +18 -0
  490. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_uint3_sized.hpp +49 -0
  491. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_uint4.hpp +18 -0
  492. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_uint4_sized.hpp +49 -0
  493. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_ulp.hpp +109 -0
  494. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext/vector_ulp.inl +74 -0
  495. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/ext.hpp +253 -0
  496. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/fwd.hpp +1233 -0
  497. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/geometric.hpp +116 -0
  498. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/glm.hpp +136 -0
  499. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtc/bitfield.hpp +266 -0
  500. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtc/bitfield.inl +626 -0
  501. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtc/color_space.hpp +56 -0
  502. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtc/color_space.inl +84 -0
  503. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtc/constants.hpp +165 -0
  504. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtc/constants.inl +167 -0
  505. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtc/epsilon.hpp +60 -0
  506. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtc/epsilon.inl +80 -0
  507. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtc/integer.hpp +65 -0
  508. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtc/integer.inl +68 -0
  509. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtc/matrix_access.hpp +60 -0
  510. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtc/matrix_access.inl +62 -0
  511. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtc/matrix_integer.hpp +433 -0
  512. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtc/matrix_inverse.hpp +50 -0
  513. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtc/matrix_inverse.inl +118 -0
  514. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtc/matrix_transform.hpp +36 -0
  515. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtc/matrix_transform.inl +3 -0
  516. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtc/noise.hpp +61 -0
  517. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtc/noise.inl +807 -0
  518. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtc/packing.hpp +728 -0
  519. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtc/packing.inl +938 -0
  520. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtc/quaternion.hpp +173 -0
  521. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtc/quaternion.inl +202 -0
  522. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtc/quaternion_simd.inl +0 -0
  523. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtc/random.hpp +82 -0
  524. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtc/random.inl +303 -0
  525. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtc/reciprocal.hpp +135 -0
  526. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtc/reciprocal.inl +191 -0
  527. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtc/round.hpp +160 -0
  528. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtc/round.inl +155 -0
  529. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtc/type_aligned.hpp +1315 -0
  530. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtc/type_precision.hpp +2094 -0
  531. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtc/type_precision.inl +6 -0
  532. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtc/type_ptr.hpp +230 -0
  533. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtc/type_ptr.inl +386 -0
  534. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtc/ulp.hpp +152 -0
  535. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtc/ulp.inl +173 -0
  536. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtc/vec1.hpp +30 -0
  537. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/associated_min_max.hpp +207 -0
  538. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/associated_min_max.inl +354 -0
  539. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/bit.hpp +98 -0
  540. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/bit.inl +92 -0
  541. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/closest_point.hpp +49 -0
  542. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/closest_point.inl +45 -0
  543. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/color_encoding.hpp +54 -0
  544. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/color_encoding.inl +45 -0
  545. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/color_space.hpp +72 -0
  546. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/color_space.inl +141 -0
  547. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/color_space_YCoCg.hpp +60 -0
  548. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/color_space_YCoCg.inl +107 -0
  549. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/common.hpp +76 -0
  550. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/common.inl +125 -0
  551. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/compatibility.hpp +133 -0
  552. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/compatibility.inl +62 -0
  553. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/component_wise.hpp +69 -0
  554. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/component_wise.inl +127 -0
  555. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/dual_quaternion.hpp +274 -0
  556. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/dual_quaternion.inl +352 -0
  557. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/easing.hpp +219 -0
  558. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/easing.inl +436 -0
  559. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/euler_angles.hpp +335 -0
  560. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/euler_angles.inl +899 -0
  561. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/extend.hpp +42 -0
  562. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/extend.inl +48 -0
  563. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/extended_min_max.hpp +137 -0
  564. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/extended_min_max.inl +138 -0
  565. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/exterior_product.hpp +45 -0
  566. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/exterior_product.inl +26 -0
  567. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/fast_exponential.hpp +95 -0
  568. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/fast_exponential.inl +136 -0
  569. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/fast_square_root.hpp +92 -0
  570. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/fast_square_root.inl +75 -0
  571. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/fast_trigonometry.hpp +79 -0
  572. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/fast_trigonometry.inl +142 -0
  573. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/float_notmalize.inl +13 -0
  574. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/functions.hpp +56 -0
  575. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/functions.inl +30 -0
  576. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/gradient_paint.hpp +53 -0
  577. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/gradient_paint.inl +36 -0
  578. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/handed_coordinate_space.hpp +50 -0
  579. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/handed_coordinate_space.inl +26 -0
  580. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/hash.hpp +142 -0
  581. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/hash.inl +184 -0
  582. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/integer.hpp +76 -0
  583. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/integer.inl +185 -0
  584. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/intersect.hpp +92 -0
  585. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/intersect.inl +200 -0
  586. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/io.hpp +201 -0
  587. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/io.inl +440 -0
  588. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/log_base.hpp +48 -0
  589. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/log_base.inl +16 -0
  590. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/matrix_cross_product.hpp +47 -0
  591. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/matrix_cross_product.inl +37 -0
  592. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/matrix_decompose.hpp +46 -0
  593. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/matrix_decompose.inl +186 -0
  594. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/matrix_factorisation.hpp +69 -0
  595. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/matrix_factorisation.inl +84 -0
  596. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/matrix_interpolation.hpp +60 -0
  597. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/matrix_interpolation.inl +129 -0
  598. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/matrix_major_storage.hpp +119 -0
  599. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/matrix_major_storage.inl +166 -0
  600. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/matrix_operation.hpp +103 -0
  601. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/matrix_operation.inl +176 -0
  602. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/matrix_query.hpp +77 -0
  603. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/matrix_query.inl +113 -0
  604. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/matrix_transform_2d.hpp +81 -0
  605. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/matrix_transform_2d.inl +68 -0
  606. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/mixed_product.hpp +41 -0
  607. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/mixed_product.inl +15 -0
  608. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/norm.hpp +88 -0
  609. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/norm.inl +95 -0
  610. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/normal.hpp +41 -0
  611. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/normal.inl +15 -0
  612. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/normalize_dot.hpp +49 -0
  613. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/normalize_dot.inl +16 -0
  614. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/number_precision.hpp +61 -0
  615. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/number_precision.inl +6 -0
  616. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/optimum_pow.hpp +54 -0
  617. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/optimum_pow.inl +22 -0
  618. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/orthonormalize.hpp +49 -0
  619. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/orthonormalize.inl +29 -0
  620. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/perpendicular.hpp +41 -0
  621. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/perpendicular.inl +10 -0
  622. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/polar_coordinates.hpp +48 -0
  623. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/polar_coordinates.inl +36 -0
  624. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/projection.hpp +43 -0
  625. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/projection.inl +10 -0
  626. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/quaternion.hpp +174 -0
  627. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/quaternion.inl +159 -0
  628. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/range.hpp +98 -0
  629. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/raw_data.hpp +51 -0
  630. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/raw_data.inl +2 -0
  631. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/rotate_normalized_axis.hpp +68 -0
  632. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/rotate_normalized_axis.inl +58 -0
  633. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/rotate_vector.hpp +123 -0
  634. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/rotate_vector.inl +187 -0
  635. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/scalar_multiplication.hpp +75 -0
  636. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/scalar_relational.hpp +36 -0
  637. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/scalar_relational.inl +88 -0
  638. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/spline.hpp +65 -0
  639. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/spline.inl +60 -0
  640. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/std_based_type.hpp +68 -0
  641. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/std_based_type.inl +6 -0
  642. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/string_cast.hpp +52 -0
  643. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/string_cast.inl +492 -0
  644. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/texture.hpp +46 -0
  645. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/texture.inl +17 -0
  646. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/transform.hpp +60 -0
  647. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/transform.inl +23 -0
  648. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/transform2.hpp +89 -0
  649. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/transform2.inl +125 -0
  650. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/type_aligned.hpp +982 -0
  651. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/type_aligned.inl +6 -0
  652. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/type_trait.hpp +85 -0
  653. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/type_trait.inl +61 -0
  654. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/vec_swizzle.hpp +2782 -0
  655. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/vector_angle.hpp +57 -0
  656. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/vector_angle.inl +44 -0
  657. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/vector_query.hpp +66 -0
  658. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/vector_query.inl +154 -0
  659. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/wrap.hpp +37 -0
  660. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/gtx/wrap.inl +6 -0
  661. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/integer.hpp +212 -0
  662. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/mat2x2.hpp +9 -0
  663. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/mat2x3.hpp +9 -0
  664. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/mat2x4.hpp +9 -0
  665. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/mat3x2.hpp +9 -0
  666. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/mat3x3.hpp +8 -0
  667. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/mat3x4.hpp +8 -0
  668. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/mat4x2.hpp +9 -0
  669. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/mat4x3.hpp +8 -0
  670. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/mat4x4.hpp +9 -0
  671. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/matrix.hpp +161 -0
  672. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/packing.hpp +173 -0
  673. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/simd/common.h +240 -0
  674. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/simd/exponential.h +20 -0
  675. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/simd/geometric.h +124 -0
  676. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/simd/integer.h +115 -0
  677. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/simd/matrix.h +1028 -0
  678. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/simd/neon.h +155 -0
  679. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/simd/packing.h +8 -0
  680. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/simd/platform.h +398 -0
  681. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/simd/trigonometric.h +9 -0
  682. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/simd/vector_relational.h +8 -0
  683. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/trigonometric.hpp +210 -0
  684. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/vec2.hpp +14 -0
  685. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/vec3.hpp +14 -0
  686. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/vec4.hpp +15 -0
  687. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/glm/vector_relational.hpp +121 -0
  688. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/manual.md +2411 -0
  689. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/glm/readme.md +1209 -0
  690. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/graphlite/CMakeLists.txt +10 -0
  691. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/graphlite/LICENSE.txt +7 -0
  692. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/graphlite/include/graph.h +27 -0
  693. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/graphlite/include/graph_lite.h +1428 -0
  694. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/graphlite/src/connected_components.cpp +53 -0
  695. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/.git-blame-ignore-revs +16 -0
  696. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/.gitignore +6 -0
  697. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/.gitmodules +3 -0
  698. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/CHANGELOG.md +2199 -0
  699. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/CMakeLists.txt +138 -0
  700. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/CODE_OF_CONDUCT.md +96 -0
  701. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/CONTRIBUTING.md +569 -0
  702. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/LICENSE +249 -0
  703. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/README.md +246 -0
  704. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cmake/AppendOptionIfAvailable.cmake +14 -0
  705. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cmake/DetectSupportedStandards.cmake +47 -0
  706. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cmake/PrintCTestRunTimes.cmake +109 -0
  707. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cmake/PrintNinjaBuildTimes.cmake +101 -0
  708. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cmake/ThrustAddSubdir.cmake +6 -0
  709. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cmake/ThrustBuildCompilerTargets.cmake +194 -0
  710. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cmake/ThrustBuildTargetList.cmake +333 -0
  711. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cmake/ThrustCompilerHacks.cmake +110 -0
  712. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cmake/ThrustCudaConfig.cmake +178 -0
  713. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cmake/ThrustFindThrust.cmake +42 -0
  714. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cmake/ThrustHeaderTesting.cmake +138 -0
  715. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cmake/ThrustInstallRules.cmake +48 -0
  716. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cmake/ThrustMultiConfig.cmake +129 -0
  717. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cmake/ThrustRunExample.cmake +49 -0
  718. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cmake/ThrustRunTest.cmake +8 -0
  719. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cmake/ThrustUtilities.cmake +25 -0
  720. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cmake/detect_compute_archs.cu +43 -0
  721. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cmake/filecheck_smoke_test +1 -0
  722. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cmake/header_test.in +61 -0
  723. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cmake/wrap_source_file.cpp.in +1 -0
  724. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/agent/agent_adjacent_difference.cuh +254 -0
  725. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/agent/agent_histogram.cuh +780 -0
  726. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/agent/agent_merge_sort.cuh +750 -0
  727. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/agent/agent_radix_sort_downsweep.cuh +778 -0
  728. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/agent/agent_radix_sort_histogram.cuh +257 -0
  729. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/agent/agent_radix_sort_onesweep.cuh +670 -0
  730. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/agent/agent_radix_sort_upsweep.cuh +521 -0
  731. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/agent/agent_reduce.cuh +383 -0
  732. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/agent/agent_reduce_by_key.cuh +542 -0
  733. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/agent/agent_rle.cuh +831 -0
  734. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/agent/agent_scan.cuh +490 -0
  735. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/agent/agent_scan_by_key.cuh +461 -0
  736. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/agent/agent_segment_fixup.cuh +373 -0
  737. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/agent/agent_segmented_radix_sort.cuh +286 -0
  738. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/agent/agent_select_if.cuh +690 -0
  739. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/agent/agent_spmv_orig.cuh +680 -0
  740. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/agent/agent_sub_warp_merge_sort.cuh +327 -0
  741. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/agent/agent_three_way_partition.cuh +614 -0
  742. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/agent/agent_unique_by_key.cuh +571 -0
  743. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/agent/single_pass_scan_operators.cuh +804 -0
  744. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/block/block_adjacent_difference.cuh +1352 -0
  745. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/block/block_discontinuity.cuh +1150 -0
  746. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/block/block_exchange.cuh +1129 -0
  747. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/block/block_histogram.cuh +428 -0
  748. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/block/block_load.cuh +1306 -0
  749. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/block/block_merge_sort.cuh +805 -0
  750. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/block/block_radix_rank.cuh +1132 -0
  751. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/block/block_radix_sort.cuh +905 -0
  752. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/block/block_raking_layout.cuh +145 -0
  753. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/block/block_reduce.cuh +608 -0
  754. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/block/block_run_length_decode.cuh +392 -0
  755. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/block/block_scan.cuh +2131 -0
  756. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/block/block_shuffle.cuh +296 -0
  757. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/block/block_store.cuh +1070 -0
  758. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/block/radix_rank_sort_operations.cuh +145 -0
  759. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/block/specializations/block_histogram_atomic.cuh +77 -0
  760. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/block/specializations/block_histogram_sort.cuh +221 -0
  761. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/block/specializations/block_reduce_raking.cuh +221 -0
  762. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/block/specializations/block_reduce_raking_commutative_only.cuh +195 -0
  763. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/block/specializations/block_reduce_warp_reductions.cuh +212 -0
  764. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/block/specializations/block_scan_raking.cuh +660 -0
  765. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/block/specializations/block_scan_warp_scans.cuh +386 -0
  766. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/block/specializations/block_scan_warp_scans2.cuh +430 -0
  767. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/block/specializations/block_scan_warp_scans3.cuh +412 -0
  768. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/cmake/cub-config-version.cmake +31 -0
  769. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/cmake/cub-config.cmake +75 -0
  770. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/cmake/cub-header-search.cmake +7 -0
  771. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/cmake/cub-header-search.cmake.in +8 -0
  772. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/config.cuh +40 -0
  773. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/cub.cuh +108 -0
  774. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/detail/device_double_buffer.cuh +90 -0
  775. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/detail/device_synchronize.cuh +70 -0
  776. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/detail/exec_check_disable.cuh +41 -0
  777. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/detail/temporary_storage.cuh +350 -0
  778. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/detail/type_traits.cuh +54 -0
  779. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/device/device_adjacent_difference.cuh +641 -0
  780. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/device/device_histogram.cuh +861 -0
  781. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/device/device_merge_sort.cuh +876 -0
  782. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/device/device_partition.cuh +606 -0
  783. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/device/device_radix_sort.cuh +939 -0
  784. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/device/device_reduce.cuh +733 -0
  785. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/device/device_run_length_encode.cuh +272 -0
  786. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/device/device_scan.cuh +873 -0
  787. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/device/device_segmented_radix_sort.cuh +882 -0
  788. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/device/device_segmented_reduce.cuh +635 -0
  789. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/device/device_segmented_sort.cuh +2569 -0
  790. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/device/device_select.cuh +447 -0
  791. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/device/device_spmv.cuh +168 -0
  792. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/device/dispatch/dispatch_adjacent_difference.cuh +383 -0
  793. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/device/dispatch/dispatch_histogram.cuh +1018 -0
  794. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/device/dispatch/dispatch_merge_sort.cuh +858 -0
  795. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/device/dispatch/dispatch_radix_sort.cuh +1995 -0
  796. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/device/dispatch/dispatch_reduce.cuh +842 -0
  797. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/device/dispatch/dispatch_reduce_by_key.cuh +449 -0
  798. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/device/dispatch/dispatch_rle.cuh +429 -0
  799. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/device/dispatch/dispatch_scan.cuh +449 -0
  800. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/device/dispatch/dispatch_scan_by_key.cuh +437 -0
  801. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/device/dispatch/dispatch_segmented_sort.cuh +1582 -0
  802. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/device/dispatch/dispatch_select_if.cuh +448 -0
  803. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/device/dispatch/dispatch_spmv_orig.cuh +744 -0
  804. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/device/dispatch/dispatch_three_way_partition.cuh +523 -0
  805. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/device/dispatch/dispatch_unique_by_key.cuh +431 -0
  806. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/grid/grid_barrier.cuh +206 -0
  807. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/grid/grid_even_share.cuh +221 -0
  808. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/grid/grid_mapping.cuh +108 -0
  809. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/grid/grid_queue.cuh +239 -0
  810. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/host/mutex.cuh +162 -0
  811. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/iterator/arg_index_input_iterator.cuh +254 -0
  812. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/iterator/cache_modified_input_iterator.cuh +235 -0
  813. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/iterator/cache_modified_output_iterator.cuh +249 -0
  814. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/iterator/constant_input_iterator.cuh +230 -0
  815. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/iterator/counting_input_iterator.cuh +223 -0
  816. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/iterator/discard_output_iterator.cuh +208 -0
  817. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/iterator/tex_obj_input_iterator.cuh +318 -0
  818. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/iterator/tex_ref_input_iterator.cuh +436 -0
  819. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/iterator/transform_input_iterator.cuh +241 -0
  820. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/thread/thread_load.cuh +422 -0
  821. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/thread/thread_operators.cuh +355 -0
  822. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/thread/thread_reduce.cuh +147 -0
  823. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/thread/thread_scan.cuh +263 -0
  824. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/thread/thread_search.cuh +152 -0
  825. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/thread/thread_sort.cuh +105 -0
  826. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/thread/thread_store.cuh +415 -0
  827. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/util_allocator.cuh +718 -0
  828. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/util_arch.cuh +182 -0
  829. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/util_compiler.cuh +81 -0
  830. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/util_cpp_dialect.cuh +151 -0
  831. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/util_debug.cuh +157 -0
  832. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/util_deprecated.cuh +54 -0
  833. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/util_device.cuh +713 -0
  834. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/util_macro.cuh +118 -0
  835. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/util_math.cuh +123 -0
  836. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/util_namespace.cuh +143 -0
  837. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/util_ptx.cuh +767 -0
  838. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/util_type.cuh +1225 -0
  839. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/version.cuh +70 -0
  840. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/warp/specializations/warp_reduce_shfl.cuh +537 -0
  841. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/warp/specializations/warp_reduce_smem.cuh +361 -0
  842. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/warp/specializations/warp_scan_shfl.cuh +624 -0
  843. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/warp/specializations/warp_scan_smem.cuh +389 -0
  844. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/warp/warp_exchange.cuh +473 -0
  845. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/warp/warp_load.cuh +691 -0
  846. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/warp/warp_merge_sort.cuh +172 -0
  847. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/warp/warp_reduce.cuh +608 -0
  848. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/warp/warp_scan.cuh +932 -0
  849. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/cub/warp/warp_store.cuh +537 -0
  850. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/.git-blame-ignore-revs +16 -0
  851. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/.gitignore +4 -0
  852. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/CHANGELOG.md +1372 -0
  853. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/CMakeLists.txt +120 -0
  854. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/CODE_OF_CONDUCT.md +97 -0
  855. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/CONTRIBUTING.md +92 -0
  856. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/LICENSE.TXT +24 -0
  857. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/README.md +215 -0
  858. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cmake/AppendOptionIfAvailable.cmake +13 -0
  859. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cmake/CubAddSubdir.cmake +4 -0
  860. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cmake/CubBuildCompilerTargets.cmake +124 -0
  861. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cmake/CubBuildTargetList.cmake +289 -0
  862. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cmake/CubCompilerHacks.cmake +93 -0
  863. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cmake/CubCudaConfig.cmake +147 -0
  864. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cmake/CubHeaderTesting.cmake +38 -0
  865. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cmake/CubInstallRules.cmake +29 -0
  866. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cmake/CubUtilities.cmake +12 -0
  867. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cmake/header_test.in +52 -0
  868. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/common.mk +195 -0
  869. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/agent/agent_adjacent_difference.cuh +254 -0
  870. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/agent/agent_histogram.cuh +780 -0
  871. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/agent/agent_merge_sort.cuh +750 -0
  872. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/agent/agent_radix_sort_downsweep.cuh +778 -0
  873. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/agent/agent_radix_sort_histogram.cuh +257 -0
  874. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/agent/agent_radix_sort_onesweep.cuh +670 -0
  875. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/agent/agent_radix_sort_upsweep.cuh +521 -0
  876. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/agent/agent_reduce.cuh +383 -0
  877. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/agent/agent_reduce_by_key.cuh +542 -0
  878. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/agent/agent_rle.cuh +831 -0
  879. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/agent/agent_scan.cuh +490 -0
  880. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/agent/agent_scan_by_key.cuh +461 -0
  881. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/agent/agent_segment_fixup.cuh +373 -0
  882. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/agent/agent_segmented_radix_sort.cuh +286 -0
  883. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/agent/agent_select_if.cuh +690 -0
  884. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/agent/agent_spmv_orig.cuh +680 -0
  885. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/agent/agent_sub_warp_merge_sort.cuh +327 -0
  886. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/agent/agent_three_way_partition.cuh +614 -0
  887. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/agent/agent_unique_by_key.cuh +571 -0
  888. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/agent/single_pass_scan_operators.cuh +804 -0
  889. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/block/block_adjacent_difference.cuh +1352 -0
  890. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/block/block_discontinuity.cuh +1150 -0
  891. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/block/block_exchange.cuh +1129 -0
  892. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/block/block_histogram.cuh +428 -0
  893. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/block/block_load.cuh +1306 -0
  894. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/block/block_merge_sort.cuh +805 -0
  895. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/block/block_radix_rank.cuh +1132 -0
  896. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/block/block_radix_sort.cuh +905 -0
  897. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/block/block_raking_layout.cuh +145 -0
  898. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/block/block_reduce.cuh +608 -0
  899. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/block/block_run_length_decode.cuh +392 -0
  900. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/block/block_scan.cuh +2131 -0
  901. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/block/block_shuffle.cuh +296 -0
  902. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/block/block_store.cuh +1070 -0
  903. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/block/radix_rank_sort_operations.cuh +145 -0
  904. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/block/specializations/block_histogram_atomic.cuh +77 -0
  905. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/block/specializations/block_histogram_sort.cuh +221 -0
  906. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/block/specializations/block_reduce_raking.cuh +221 -0
  907. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/block/specializations/block_reduce_raking_commutative_only.cuh +195 -0
  908. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/block/specializations/block_reduce_warp_reductions.cuh +212 -0
  909. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/block/specializations/block_scan_raking.cuh +660 -0
  910. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/block/specializations/block_scan_warp_scans.cuh +386 -0
  911. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/block/specializations/block_scan_warp_scans2.cuh +430 -0
  912. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/block/specializations/block_scan_warp_scans3.cuh +412 -0
  913. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/cmake/cub-config-version.cmake +31 -0
  914. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/cmake/cub-config.cmake +75 -0
  915. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/cmake/cub-header-search.cmake +7 -0
  916. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/cmake/cub-header-search.cmake.in +8 -0
  917. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/config.cuh +40 -0
  918. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/cub.cuh +108 -0
  919. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/detail/device_double_buffer.cuh +90 -0
  920. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/detail/device_synchronize.cuh +70 -0
  921. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/detail/exec_check_disable.cuh +41 -0
  922. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/detail/temporary_storage.cuh +350 -0
  923. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/detail/type_traits.cuh +54 -0
  924. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/device/device_adjacent_difference.cuh +641 -0
  925. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/device/device_histogram.cuh +861 -0
  926. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/device/device_merge_sort.cuh +876 -0
  927. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/device/device_partition.cuh +606 -0
  928. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/device/device_radix_sort.cuh +939 -0
  929. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/device/device_reduce.cuh +733 -0
  930. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/device/device_run_length_encode.cuh +272 -0
  931. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/device/device_scan.cuh +873 -0
  932. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/device/device_segmented_radix_sort.cuh +882 -0
  933. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/device/device_segmented_reduce.cuh +635 -0
  934. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/device/device_segmented_sort.cuh +2569 -0
  935. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/device/device_select.cuh +447 -0
  936. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/device/device_spmv.cuh +168 -0
  937. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/device/dispatch/dispatch_adjacent_difference.cuh +383 -0
  938. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/device/dispatch/dispatch_histogram.cuh +1018 -0
  939. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/device/dispatch/dispatch_merge_sort.cuh +858 -0
  940. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/device/dispatch/dispatch_radix_sort.cuh +1995 -0
  941. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/device/dispatch/dispatch_reduce.cuh +842 -0
  942. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/device/dispatch/dispatch_reduce_by_key.cuh +449 -0
  943. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/device/dispatch/dispatch_rle.cuh +429 -0
  944. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/device/dispatch/dispatch_scan.cuh +449 -0
  945. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/device/dispatch/dispatch_scan_by_key.cuh +437 -0
  946. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/device/dispatch/dispatch_segmented_sort.cuh +1582 -0
  947. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/device/dispatch/dispatch_select_if.cuh +448 -0
  948. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/device/dispatch/dispatch_spmv_orig.cuh +744 -0
  949. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/device/dispatch/dispatch_three_way_partition.cuh +523 -0
  950. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/device/dispatch/dispatch_unique_by_key.cuh +431 -0
  951. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/grid/grid_barrier.cuh +206 -0
  952. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/grid/grid_even_share.cuh +221 -0
  953. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/grid/grid_mapping.cuh +108 -0
  954. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/grid/grid_queue.cuh +239 -0
  955. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/host/mutex.cuh +162 -0
  956. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/iterator/arg_index_input_iterator.cuh +254 -0
  957. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/iterator/cache_modified_input_iterator.cuh +235 -0
  958. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/iterator/cache_modified_output_iterator.cuh +249 -0
  959. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/iterator/constant_input_iterator.cuh +230 -0
  960. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/iterator/counting_input_iterator.cuh +223 -0
  961. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/iterator/discard_output_iterator.cuh +208 -0
  962. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/iterator/tex_obj_input_iterator.cuh +318 -0
  963. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/iterator/tex_ref_input_iterator.cuh +436 -0
  964. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/iterator/transform_input_iterator.cuh +241 -0
  965. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/thread/thread_load.cuh +422 -0
  966. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/thread/thread_operators.cuh +355 -0
  967. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/thread/thread_reduce.cuh +147 -0
  968. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/thread/thread_scan.cuh +263 -0
  969. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/thread/thread_search.cuh +152 -0
  970. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/thread/thread_sort.cuh +105 -0
  971. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/thread/thread_store.cuh +415 -0
  972. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/util_allocator.cuh +718 -0
  973. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/util_arch.cuh +182 -0
  974. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/util_compiler.cuh +81 -0
  975. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/util_cpp_dialect.cuh +151 -0
  976. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/util_debug.cuh +157 -0
  977. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/util_deprecated.cuh +54 -0
  978. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/util_device.cuh +713 -0
  979. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/util_macro.cuh +118 -0
  980. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/util_math.cuh +123 -0
  981. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/util_namespace.cuh +143 -0
  982. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/util_ptx.cuh +767 -0
  983. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/util_type.cuh +1225 -0
  984. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/version.cuh +70 -0
  985. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/warp/specializations/warp_reduce_shfl.cuh +537 -0
  986. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/warp/specializations/warp_reduce_smem.cuh +361 -0
  987. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/warp/specializations/warp_scan_shfl.cuh +624 -0
  988. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/warp/specializations/warp_scan_smem.cuh +389 -0
  989. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/warp/warp_exchange.cuh +473 -0
  990. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/warp/warp_load.cuh +691 -0
  991. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/warp/warp_merge_sort.cuh +172 -0
  992. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/warp/warp_reduce.cuh +608 -0
  993. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/warp/warp_scan.cuh +932 -0
  994. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/dependencies/cub/cub/warp/warp_store.cuh +537 -0
  995. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/generate_mk.py +146 -0
  996. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/addressof.h +31 -0
  997. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/adjacent_difference.h +244 -0
  998. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/advance.h +140 -0
  999. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/allocate_unique.h +443 -0
  1000. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/async/copy.h +148 -0
  1001. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/async/for_each.h +117 -0
  1002. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/async/reduce.h +440 -0
  1003. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/async/scan.h +344 -0
  1004. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/async/sort.h +274 -0
  1005. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/async/transform.h +132 -0
  1006. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/binary_search.h +1899 -0
  1007. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/cmake/FindTBB.cmake +445 -0
  1008. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/cmake/README.md +215 -0
  1009. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/cmake/thrust-config-version.cmake +31 -0
  1010. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/cmake/thrust-config.cmake +665 -0
  1011. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/cmake/thrust-header-search.cmake +8 -0
  1012. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/cmake/thrust-header-search.cmake.in +8 -0
  1013. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/complex.h +1041 -0
  1014. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/copy.h +512 -0
  1015. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/count.h +231 -0
  1016. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/adjacent_difference.inl +89 -0
  1017. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/advance.inl +77 -0
  1018. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/algorithm_wrapper.h +27 -0
  1019. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/alignment.h +230 -0
  1020. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/allocator/allocator_traits.h +442 -0
  1021. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/allocator/allocator_traits.inl +463 -0
  1022. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/allocator/copy_construct_range.h +46 -0
  1023. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/allocator/copy_construct_range.inl +308 -0
  1024. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/allocator/default_construct_range.h +36 -0
  1025. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/allocator/default_construct_range.inl +110 -0
  1026. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/allocator/destroy_range.h +33 -0
  1027. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/allocator/destroy_range.inl +165 -0
  1028. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/allocator/fill_construct_range.h +35 -0
  1029. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/allocator/fill_construct_range.inl +112 -0
  1030. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/allocator/malloc_allocator.h +51 -0
  1031. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/allocator/malloc_allocator.inl +63 -0
  1032. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/allocator/no_throw_allocator.h +70 -0
  1033. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/allocator/tagged_allocator.h +100 -0
  1034. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/allocator/tagged_allocator.inl +102 -0
  1035. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/allocator/temporary_allocator.h +84 -0
  1036. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/allocator/temporary_allocator.inl +74 -0
  1037. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/allocator_aware_execution_policy.h +101 -0
  1038. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/binary_search.inl +483 -0
  1039. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/caching_allocator.h +47 -0
  1040. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/complex/arithmetic.h +303 -0
  1041. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/complex/c99math.h +197 -0
  1042. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/complex/catrig.h +785 -0
  1043. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/complex/catrigf.h +500 -0
  1044. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/complex/ccosh.h +215 -0
  1045. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/complex/ccoshf.h +143 -0
  1046. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/complex/cexp.h +185 -0
  1047. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/complex/cexpf.h +163 -0
  1048. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/complex/clog.h +214 -0
  1049. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/complex/clogf.h +200 -0
  1050. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/complex/complex.inl +354 -0
  1051. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/complex/cpow.h +57 -0
  1052. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/complex/cproj.h +72 -0
  1053. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/complex/csinh.h +207 -0
  1054. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/complex/csinhf.h +144 -0
  1055. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/complex/csqrt.h +154 -0
  1056. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/complex/csqrtf.h +149 -0
  1057. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/complex/ctanh.h +202 -0
  1058. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/complex/ctanhf.h +126 -0
  1059. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/complex/math_private.h +136 -0
  1060. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/complex/stream.h +74 -0
  1061. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/config/compiler.h +189 -0
  1062. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/config/compiler_fence.h +62 -0
  1063. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/config/config.h +40 -0
  1064. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/config/cpp_compatibility.h +84 -0
  1065. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/config/cpp_dialect.h +140 -0
  1066. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/config/debug.h +32 -0
  1067. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/config/deprecated.h +42 -0
  1068. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/config/device_system.h +61 -0
  1069. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/config/exec_check_disable.h +43 -0
  1070. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/config/forceinline.h +36 -0
  1071. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/config/global_workarounds.h +27 -0
  1072. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/config/host_device.h +44 -0
  1073. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/config/host_system.h +58 -0
  1074. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/config/memory_resource.h +35 -0
  1075. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/config/namespace.h +120 -0
  1076. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/config/simple_defines.h +30 -0
  1077. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/config.h +24 -0
  1078. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/contiguous_storage.h +235 -0
  1079. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/contiguous_storage.inl +551 -0
  1080. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/copy.h +90 -0
  1081. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/copy.inl +128 -0
  1082. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/copy_if.h +71 -0
  1083. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/copy_if.inl +105 -0
  1084. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/count.inl +80 -0
  1085. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/cpp11_required.h +26 -0
  1086. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/cpp14_required.h +26 -0
  1087. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/cstdint.h +83 -0
  1088. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/dependencies_aware_execution_policy.h +106 -0
  1089. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/device_delete.inl +47 -0
  1090. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/device_free.inl +42 -0
  1091. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/device_malloc.inl +56 -0
  1092. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/device_new.inl +59 -0
  1093. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/device_ptr.inl +67 -0
  1094. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/distance.inl +38 -0
  1095. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/equal.inl +83 -0
  1096. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/event_error.h +164 -0
  1097. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/execute_with_allocator.h +149 -0
  1098. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/execute_with_allocator_fwd.h +106 -0
  1099. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/execute_with_dependencies.h +267 -0
  1100. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/execution_policy.h +76 -0
  1101. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/extrema.inl +168 -0
  1102. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/fill.inl +89 -0
  1103. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/find.inl +111 -0
  1104. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/for_each.inl +89 -0
  1105. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/function.h +161 -0
  1106. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/functional/actor.h +155 -0
  1107. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/functional/actor.inl +112 -0
  1108. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/functional/argument.h +74 -0
  1109. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/functional/composite.h +164 -0
  1110. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/functional/operators/arithmetic_operators.h +431 -0
  1111. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/functional/operators/assignment_operator.h +79 -0
  1112. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/functional/operators/bitwise_operators.h +337 -0
  1113. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/functional/operators/compound_assignment_operators.h +512 -0
  1114. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/functional/operators/logical_operators.h +143 -0
  1115. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/functional/operators/operator_adaptors.h +136 -0
  1116. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/functional/operators/relational_operators.h +322 -0
  1117. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/functional/operators.h +25 -0
  1118. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/functional/placeholder.h +38 -0
  1119. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/functional/value.h +79 -0
  1120. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/functional.inl +124 -0
  1121. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/gather.inl +164 -0
  1122. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/generate.inl +96 -0
  1123. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/get_iterator_value.h +55 -0
  1124. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/inner_product.inl +104 -0
  1125. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/integer_math.h +155 -0
  1126. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/integer_traits.h +130 -0
  1127. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/internal_functional.h +558 -0
  1128. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/logical.inl +98 -0
  1129. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/malloc_and_free.h +83 -0
  1130. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/memory_algorithms.h +208 -0
  1131. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/memory_wrapper.h +30 -0
  1132. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/merge.inl +223 -0
  1133. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/minmax.h +51 -0
  1134. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/mismatch.inl +93 -0
  1135. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/modern_gcc_required.h +26 -0
  1136. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/mpl/math.h +175 -0
  1137. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/numeric_traits.h +129 -0
  1138. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/numeric_wrapper.h +27 -0
  1139. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/overlapped_copy.h +131 -0
  1140. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/pair.inl +228 -0
  1141. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/partition.inl +414 -0
  1142. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/pointer.h +249 -0
  1143. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/pointer.inl +206 -0
  1144. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/preprocessor.h +1182 -0
  1145. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/range/head_flags.h +229 -0
  1146. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/range/tail_flags.h +133 -0
  1147. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/raw_pointer_cast.h +50 -0
  1148. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/raw_reference_cast.h +332 -0
  1149. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/reduce.inl +279 -0
  1150. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/reference.h +510 -0
  1151. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/reference_forward_declaration.h +28 -0
  1152. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/remove.inl +249 -0
  1153. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/replace.inl +221 -0
  1154. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/reverse.inl +90 -0
  1155. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/scan.inl +525 -0
  1156. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/scatter.inl +166 -0
  1157. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/select_system.h +84 -0
  1158. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/seq.h +52 -0
  1159. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/sequence.inl +117 -0
  1160. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/set_operations.inl +867 -0
  1161. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/shuffle.inl +85 -0
  1162. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/sort.inl +407 -0
  1163. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/static_assert.h +91 -0
  1164. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/static_map.h +169 -0
  1165. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/swap.h +35 -0
  1166. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/swap.inl +21 -0
  1167. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/swap_ranges.inl +67 -0
  1168. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/tabulate.inl +56 -0
  1169. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/temporary_array.h +181 -0
  1170. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/temporary_array.inl +167 -0
  1171. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/temporary_buffer.h +75 -0
  1172. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/transform.inl +250 -0
  1173. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/transform_reduce.inl +71 -0
  1174. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/transform_scan.inl +120 -0
  1175. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/trivial_sequence.h +96 -0
  1176. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/tuple.inl +1002 -0
  1177. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/tuple_algorithms.h +110 -0
  1178. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/tuple_meta_transform.h +58 -0
  1179. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/tuple_transform.h +84 -0
  1180. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/type_deduction.h +74 -0
  1181. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/type_traits/function_traits.h +97 -0
  1182. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/type_traits/has_member_function.h +38 -0
  1183. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/type_traits/has_nested_type.h +32 -0
  1184. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/type_traits/has_trivial_assign.h +53 -0
  1185. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/type_traits/is_call_possible.h +162 -0
  1186. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/type_traits/is_metafunction_defined.h +42 -0
  1187. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/type_traits/iterator/is_discard_iterator.h +39 -0
  1188. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/type_traits/iterator/is_output_iterator.h +65 -0
  1189. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/type_traits/minimum_type.h +163 -0
  1190. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/type_traits/pointer_traits.h +395 -0
  1191. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/type_traits/result_of_adaptable_function.h +64 -0
  1192. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/type_traits.h +735 -0
  1193. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/uninitialized_copy.inl +98 -0
  1194. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/uninitialized_fill.inl +93 -0
  1195. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/unique.inl +335 -0
  1196. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/use_default.h +26 -0
  1197. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/util/align.h +60 -0
  1198. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/vector_base.h +587 -0
  1199. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/detail/vector_base.inl +1320 -0
  1200. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/device_allocator.h +142 -0
  1201. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/device_delete.h +55 -0
  1202. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/device_free.h +67 -0
  1203. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/device_make_unique.h +58 -0
  1204. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/device_malloc.h +102 -0
  1205. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/device_malloc_allocator.h +182 -0
  1206. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/device_new.h +86 -0
  1207. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/device_new_allocator.h +170 -0
  1208. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/device_ptr.h +190 -0
  1209. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/device_reference.h +988 -0
  1210. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/device_vector.h +491 -0
  1211. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/distance.h +74 -0
  1212. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/equal.h +235 -0
  1213. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/event.h +26 -0
  1214. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/execution_policy.h +393 -0
  1215. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/extrema.h +801 -0
  1216. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/fill.h +206 -0
  1217. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/find.h +381 -0
  1218. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/for_each.h +278 -0
  1219. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/functional.h +1717 -0
  1220. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/future.h +176 -0
  1221. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/gather.h +445 -0
  1222. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/generate.h +211 -0
  1223. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/host_vector.h +510 -0
  1224. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/inner_product.h +262 -0
  1225. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/constant_iterator.h +250 -0
  1226. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/counting_iterator.h +246 -0
  1227. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/detail/any_assign.h +54 -0
  1228. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/detail/any_system_tag.h +33 -0
  1229. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/detail/constant_iterator_base.h +71 -0
  1230. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/detail/counting_iterator.inl +142 -0
  1231. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/detail/device_system_tag.h +30 -0
  1232. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/detail/discard_iterator_base.h +64 -0
  1233. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/detail/distance_from_result.h +41 -0
  1234. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/detail/host_system_tag.h +30 -0
  1235. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/detail/is_iterator_category.h +59 -0
  1236. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/detail/iterator_adaptor_base.h +112 -0
  1237. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/detail/iterator_category_to_system.h +79 -0
  1238. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/detail/iterator_category_to_traversal.h +130 -0
  1239. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/detail/iterator_category_with_system_and_traversal.h +56 -0
  1240. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/detail/iterator_facade_category.h +252 -0
  1241. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/detail/iterator_traits.inl +139 -0
  1242. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/detail/iterator_traversal_tags.h +42 -0
  1243. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/detail/join_iterator.h +133 -0
  1244. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/detail/minimum_category.h +53 -0
  1245. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/detail/minimum_system.h +81 -0
  1246. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/detail/normal_iterator.h +79 -0
  1247. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/detail/permutation_iterator_base.h +54 -0
  1248. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/detail/retag.h +147 -0
  1249. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/detail/reverse_iterator.inl +116 -0
  1250. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/detail/reverse_iterator_base.h +43 -0
  1251. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/detail/tagged_iterator.h +70 -0
  1252. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/detail/transform_input_output_iterator.inl +115 -0
  1253. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/detail/transform_iterator.inl +73 -0
  1254. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/detail/transform_output_iterator.inl +79 -0
  1255. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/detail/tuple_of_iterator_references.h +146 -0
  1256. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/detail/universal_categories.h +86 -0
  1257. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/detail/zip_iterator.inl +152 -0
  1258. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/detail/zip_iterator_base.h +353 -0
  1259. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/discard_iterator.h +174 -0
  1260. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/iterator_adaptor.h +242 -0
  1261. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/iterator_categories.h +223 -0
  1262. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/iterator_facade.h +542 -0
  1263. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/iterator_traits.h +65 -0
  1264. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/permutation_iterator.h +216 -0
  1265. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/retag.h +69 -0
  1266. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/reverse_iterator.h +237 -0
  1267. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/transform_input_output_iterator.h +162 -0
  1268. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/transform_iterator.h +355 -0
  1269. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/transform_output_iterator.h +162 -0
  1270. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/iterator/zip_iterator.h +258 -0
  1271. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/limits.h +18 -0
  1272. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/logical.h +275 -0
  1273. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/memory.h +545 -0
  1274. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/merge.h +677 -0
  1275. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/mismatch.h +257 -0
  1276. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/mr/allocator.h +250 -0
  1277. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/mr/device_memory_resource.h +38 -0
  1278. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/mr/disjoint_pool.h +489 -0
  1279. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/mr/disjoint_sync_pool.h +119 -0
  1280. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/mr/disjoint_tls_pool.h +69 -0
  1281. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/mr/fancy_pointer_resource.h +61 -0
  1282. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/mr/host_memory_resource.h +32 -0
  1283. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/mr/memory_resource.h +217 -0
  1284. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/mr/new.h +89 -0
  1285. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/mr/polymorphic_adaptor.h +57 -0
  1286. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/mr/pool.h +506 -0
  1287. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/mr/pool_options.h +127 -0
  1288. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/mr/sync_pool.h +116 -0
  1289. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/mr/tls_pool.h +64 -0
  1290. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/mr/universal_memory_resource.h +22 -0
  1291. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/mr/validator.h +51 -0
  1292. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/optional.h +2885 -0
  1293. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/pair.h +281 -0
  1294. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/partition.h +1436 -0
  1295. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/per_device_resource.h +102 -0
  1296. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/random/detail/discard_block_engine.inl +213 -0
  1297. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/random/detail/linear_congruential_engine.inl +170 -0
  1298. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/random/detail/linear_congruential_engine_discard.h +108 -0
  1299. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/random/detail/linear_feedback_shift_engine.inl +166 -0
  1300. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/random/detail/linear_feedback_shift_engine_wordmask.h +48 -0
  1301. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/random/detail/mod.h +98 -0
  1302. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/random/detail/normal_distribution.inl +256 -0
  1303. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/random/detail/normal_distribution_base.h +148 -0
  1304. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/random/detail/random_core_access.h +58 -0
  1305. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/random/detail/subtract_with_carry_engine.inl +211 -0
  1306. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/random/detail/uniform_int_distribution.inl +247 -0
  1307. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/random/detail/uniform_real_distribution.inl +232 -0
  1308. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/random/detail/xor_combine_engine.inl +216 -0
  1309. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/random/detail/xor_combine_engine_max.h +325 -0
  1310. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/random/discard_block_engine.h +251 -0
  1311. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/random/linear_congruential_engine.h +294 -0
  1312. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/random/linear_feedback_shift_engine.h +229 -0
  1313. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/random/normal_distribution.h +274 -0
  1314. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/random/subtract_with_carry_engine.h +255 -0
  1315. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/random/uniform_int_distribution.h +276 -0
  1316. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/random/uniform_real_distribution.h +273 -0
  1317. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/random/xor_combine_engine.h +270 -0
  1318. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/random.h +117 -0
  1319. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/reduce.h +781 -0
  1320. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/remove.h +802 -0
  1321. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/replace.h +819 -0
  1322. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/reverse.h +211 -0
  1323. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/scan.h +1656 -0
  1324. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/scatter.h +419 -0
  1325. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/sequence.h +293 -0
  1326. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/set_operations.h +2959 -0
  1327. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/shuffle.h +179 -0
  1328. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/sort.h +1358 -0
  1329. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/swap.h +184 -0
  1330. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/adjacent_difference.h +23 -0
  1331. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/assign_value.h +23 -0
  1332. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/binary_search.h +23 -0
  1333. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/copy.h +23 -0
  1334. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/copy_if.h +23 -0
  1335. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/count.h +22 -0
  1336. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/equal.h +22 -0
  1337. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/execution_policy.h +80 -0
  1338. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/extrema.h +23 -0
  1339. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/fill.h +22 -0
  1340. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/find.h +23 -0
  1341. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/for_each.h +23 -0
  1342. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/gather.h +22 -0
  1343. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/generate.h +22 -0
  1344. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/get_value.h +23 -0
  1345. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/inner_product.h +22 -0
  1346. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/iter_swap.h +23 -0
  1347. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/logical.h +22 -0
  1348. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/malloc_and_free.h +23 -0
  1349. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/memory.inl +50 -0
  1350. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/merge.h +23 -0
  1351. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/mismatch.h +22 -0
  1352. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/par.h +61 -0
  1353. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/partition.h +23 -0
  1354. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/per_device_resource.h +22 -0
  1355. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/reduce.h +23 -0
  1356. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/reduce_by_key.h +23 -0
  1357. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/remove.h +23 -0
  1358. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/replace.h +22 -0
  1359. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/reverse.h +22 -0
  1360. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/scan.h +23 -0
  1361. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/scan_by_key.h +23 -0
  1362. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/scatter.h +22 -0
  1363. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/sequence.h +22 -0
  1364. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/set_operations.h +23 -0
  1365. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/sort.h +23 -0
  1366. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/swap_ranges.h +22 -0
  1367. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/tabulate.h +22 -0
  1368. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/temporary_buffer.h +22 -0
  1369. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/transform.h +22 -0
  1370. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/transform_reduce.h +22 -0
  1371. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/transform_scan.h +22 -0
  1372. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/uninitialized_copy.h +22 -0
  1373. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/uninitialized_fill.h +22 -0
  1374. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/unique.h +23 -0
  1375. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/unique_by_key.h +23 -0
  1376. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/detail/vector.inl +125 -0
  1377. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/execution_policy.h +156 -0
  1378. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/memory.h +100 -0
  1379. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/memory_resource.h +71 -0
  1380. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/pointer.h +117 -0
  1381. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cpp/vector.h +82 -0
  1382. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/config.h +109 -0
  1383. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/adjacent_difference.h +541 -0
  1384. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/assign_value.h +102 -0
  1385. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/async/copy.h +537 -0
  1386. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/async/customization.h +127 -0
  1387. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/async/exclusive_scan.h +201 -0
  1388. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/async/for_each.h +158 -0
  1389. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/async/inclusive_scan.h +193 -0
  1390. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/async/reduce.h +349 -0
  1391. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/async/scan.h +33 -0
  1392. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/async/sort.h +521 -0
  1393. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/async/transform.h +162 -0
  1394. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/binary_search.h +19 -0
  1395. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/copy.h +197 -0
  1396. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/copy_if.h +859 -0
  1397. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/core/agent_launcher.h +1186 -0
  1398. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/core/alignment.h +250 -0
  1399. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/core/triple_chevron_launch.h +975 -0
  1400. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/core/util.h +769 -0
  1401. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/count.h +80 -0
  1402. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/cross_system.h +345 -0
  1403. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/dispatch.h +78 -0
  1404. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/equal.h +74 -0
  1405. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/error.inl +99 -0
  1406. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/execution_policy.h +100 -0
  1407. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/extrema.h +572 -0
  1408. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/fill.h +95 -0
  1409. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/find.h +218 -0
  1410. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/for_each.h +109 -0
  1411. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/future.inl +1372 -0
  1412. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/gather.h +107 -0
  1413. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/generate.h +90 -0
  1414. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/get_value.h +98 -0
  1415. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/guarded_cuda_runtime_api.h +39 -0
  1416. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/guarded_driver_types.h +63 -0
  1417. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/inner_product.h +94 -0
  1418. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/internal/copy_cross_system.h +244 -0
  1419. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/internal/copy_device_to_device.h +64 -0
  1420. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/iter_swap.h +67 -0
  1421. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/logical.h +22 -0
  1422. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/make_unsigned_special.h +43 -0
  1423. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/malloc_and_free.h +103 -0
  1424. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/memory.inl +52 -0
  1425. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/merge.h +1019 -0
  1426. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/mismatch.h +116 -0
  1427. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/par.h +257 -0
  1428. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/par_to_seq.h +92 -0
  1429. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/parallel_for.h +178 -0
  1430. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/partition.h +1148 -0
  1431. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/per_device_resource.h +72 -0
  1432. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/reduce.h +1077 -0
  1433. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/reduce_by_key.h +1170 -0
  1434. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/remove.h +134 -0
  1435. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/replace.h +213 -0
  1436. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/reverse.h +97 -0
  1437. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/scan.h +370 -0
  1438. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/scan_by_key.h +1007 -0
  1439. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/scatter.h +106 -0
  1440. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/sequence.h +22 -0
  1441. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/set_operations.h +2002 -0
  1442. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/sort.h +648 -0
  1443. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/swap_ranges.h +107 -0
  1444. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/tabulate.h +88 -0
  1445. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/temporary_buffer.h +22 -0
  1446. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/terminate.h +62 -0
  1447. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/transform.h +426 -0
  1448. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/transform_reduce.h +68 -0
  1449. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/transform_scan.h +113 -0
  1450. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/uninitialized_copy.h +116 -0
  1451. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/uninitialized_fill.h +114 -0
  1452. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/unique.h +803 -0
  1453. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/unique_by_key.h +936 -0
  1454. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/detail/util.h +653 -0
  1455. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/error.h +182 -0
  1456. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/execution_policy.h +31 -0
  1457. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/experimental/pinned_allocator.h +243 -0
  1458. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/future.h +73 -0
  1459. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/memory.h +109 -0
  1460. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/memory_resource.h +126 -0
  1461. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/pointer.h +137 -0
  1462. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/cuda/vector.h +89 -0
  1463. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/adjacent_difference.h +44 -0
  1464. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/assign_value.h +44 -0
  1465. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/async/copy.h +34 -0
  1466. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/async/for_each.h +34 -0
  1467. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/async/reduce.h +34 -0
  1468. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/async/scan.h +34 -0
  1469. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/async/sort.h +34 -0
  1470. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/async/transform.h +34 -0
  1471. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/binary_search.h +44 -0
  1472. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/copy.h +44 -0
  1473. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/copy_if.h +44 -0
  1474. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/count.h +44 -0
  1475. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/equal.h +44 -0
  1476. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/extrema.h +44 -0
  1477. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/fill.h +44 -0
  1478. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/find.h +44 -0
  1479. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/for_each.h +44 -0
  1480. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/gather.h +44 -0
  1481. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/generate.h +44 -0
  1482. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/get_value.h +44 -0
  1483. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/inner_product.h +44 -0
  1484. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/iter_swap.h +44 -0
  1485. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/logical.h +44 -0
  1486. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/malloc_and_free.h +44 -0
  1487. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/merge.h +44 -0
  1488. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/mismatch.h +44 -0
  1489. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/partition.h +44 -0
  1490. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/per_device_resource.h +41 -0
  1491. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/reduce.h +44 -0
  1492. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/reduce_by_key.h +44 -0
  1493. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/remove.h +44 -0
  1494. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/replace.h +44 -0
  1495. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/reverse.h +44 -0
  1496. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/scan.h +44 -0
  1497. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/scan_by_key.h +44 -0
  1498. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/scatter.h +44 -0
  1499. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/sequence.h +44 -0
  1500. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/set_operations.h +44 -0
  1501. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/sort.h +44 -0
  1502. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/swap_ranges.h +44 -0
  1503. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/tabulate.h +44 -0
  1504. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/temporary_buffer.h +44 -0
  1505. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/transform.h +44 -0
  1506. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/transform_reduce.h +44 -0
  1507. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/transform_scan.h +44 -0
  1508. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/uninitialized_copy.h +44 -0
  1509. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/uninitialized_fill.h +44 -0
  1510. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/unique.h +44 -0
  1511. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/adl/unique_by_key.h +44 -0
  1512. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/bad_alloc.h +58 -0
  1513. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/errno.h +119 -0
  1514. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/error_category.inl +237 -0
  1515. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/error_code.inl +198 -0
  1516. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/error_condition.inl +134 -0
  1517. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/adjacent_difference.h +57 -0
  1518. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/adjacent_difference.inl +80 -0
  1519. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/advance.h +40 -0
  1520. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/advance.inl +66 -0
  1521. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/binary_search.h +173 -0
  1522. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/binary_search.inl +401 -0
  1523. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/copy.h +58 -0
  1524. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/copy.inl +80 -0
  1525. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/copy_if.h +63 -0
  1526. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/copy_if.inl +160 -0
  1527. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/count.h +50 -0
  1528. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/count.inl +80 -0
  1529. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/distance.h +42 -0
  1530. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/distance.inl +78 -0
  1531. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/equal.h +47 -0
  1532. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/equal.inl +57 -0
  1533. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/extrema.h +88 -0
  1534. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/extrema.inl +262 -0
  1535. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/fill.h +61 -0
  1536. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/find.h +62 -0
  1537. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/find.inl +149 -0
  1538. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/for_each.h +77 -0
  1539. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/gather.h +80 -0
  1540. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/gather.inl +106 -0
  1541. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/generate.h +56 -0
  1542. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/generate.inl +98 -0
  1543. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/inner_product.h +58 -0
  1544. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/inner_product.inl +71 -0
  1545. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/logical.h +62 -0
  1546. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/memory.h +70 -0
  1547. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/memory.inl +103 -0
  1548. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/merge.h +90 -0
  1549. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/merge.inl +130 -0
  1550. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/mismatch.h +57 -0
  1551. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/mismatch.inl +73 -0
  1552. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/partition.h +169 -0
  1553. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/partition.inl +247 -0
  1554. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/per_device_resource.h +46 -0
  1555. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/reduce.h +58 -0
  1556. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/reduce.inl +80 -0
  1557. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/reduce_by_key.h +88 -0
  1558. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/reduce_by_key.inl +198 -0
  1559. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/remove.h +112 -0
  1560. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/remove.inl +149 -0
  1561. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/replace.h +97 -0
  1562. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/replace.inl +177 -0
  1563. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/reverse.h +55 -0
  1564. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/reverse.inl +74 -0
  1565. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/scalar/binary_search.h +84 -0
  1566. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/scalar/binary_search.inl +157 -0
  1567. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/scan.h +98 -0
  1568. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/scan.inl +127 -0
  1569. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/scan_by_key.h +143 -0
  1570. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/scan_by_key.inl +244 -0
  1571. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/scatter.h +80 -0
  1572. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/scatter.inl +95 -0
  1573. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/select_system.h +124 -0
  1574. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/select_system.inl +178 -0
  1575. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/select_system_exists.h +167 -0
  1576. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/sequence.h +63 -0
  1577. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/sequence.inl +104 -0
  1578. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/set_operations.h +318 -0
  1579. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/set_operations.inl +476 -0
  1580. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/shuffle.h +54 -0
  1581. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/shuffle.inl +190 -0
  1582. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/sort.h +153 -0
  1583. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/sort.inl +219 -0
  1584. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/swap_ranges.h +46 -0
  1585. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/swap_ranges.inl +77 -0
  1586. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/tabulate.h +48 -0
  1587. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/tabulate.inl +59 -0
  1588. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/tag.h +47 -0
  1589. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/temporary_buffer.h +57 -0
  1590. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/temporary_buffer.inl +84 -0
  1591. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/transform.h +105 -0
  1592. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/transform.inl +189 -0
  1593. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/transform_reduce.h +52 -0
  1594. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/transform_reduce.inl +55 -0
  1595. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/transform_scan.h +67 -0
  1596. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/transform_scan.inl +95 -0
  1597. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/uninitialized_copy.h +56 -0
  1598. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/uninitialized_copy.inl +192 -0
  1599. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/uninitialized_fill.h +56 -0
  1600. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/uninitialized_fill.inl +133 -0
  1601. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/unique.h +77 -0
  1602. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/unique.inl +112 -0
  1603. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/unique_by_key.h +94 -0
  1604. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/generic/unique_by_key.inl +139 -0
  1605. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/internal/decompose.h +113 -0
  1606. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/adjacent_difference.h +73 -0
  1607. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/assign_value.h +42 -0
  1608. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/binary_search.h +158 -0
  1609. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/copy.h +62 -0
  1610. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/copy.inl +144 -0
  1611. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/copy_backward.h +53 -0
  1612. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/copy_if.h +72 -0
  1613. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/count.h +22 -0
  1614. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/equal.h +22 -0
  1615. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/execution_policy.h +75 -0
  1616. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/extrema.h +138 -0
  1617. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/fill.h +22 -0
  1618. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/find.h +70 -0
  1619. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/for_each.h +94 -0
  1620. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/gather.h +22 -0
  1621. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/general_copy.h +146 -0
  1622. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/generate.h +22 -0
  1623. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/get_value.h +45 -0
  1624. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/inner_product.h +22 -0
  1625. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/insertion_sort.h +152 -0
  1626. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/iter_swap.h +46 -0
  1627. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/logical.h +22 -0
  1628. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/malloc_and_free.h +53 -0
  1629. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/merge.h +79 -0
  1630. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/merge.inl +152 -0
  1631. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/mismatch.h +22 -0
  1632. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/partition.h +340 -0
  1633. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/per_device_resource.h +22 -0
  1634. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/reduce.h +72 -0
  1635. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/reduce_by_key.h +102 -0
  1636. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/remove.h +201 -0
  1637. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/replace.h +22 -0
  1638. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/reverse.h +22 -0
  1639. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/scan.h +121 -0
  1640. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/scan_by_key.h +149 -0
  1641. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/scatter.h +22 -0
  1642. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/sequence.h +22 -0
  1643. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/set_operations.h +223 -0
  1644. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/sort.h +63 -0
  1645. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/sort.inl +204 -0
  1646. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/stable_merge_sort.h +59 -0
  1647. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/stable_merge_sort.inl +397 -0
  1648. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/stable_primitive_sort.h +55 -0
  1649. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/stable_primitive_sort.inl +160 -0
  1650. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/stable_radix_sort.h +55 -0
  1651. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/stable_radix_sort.inl +595 -0
  1652. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/swap_ranges.h +22 -0
  1653. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/tabulate.h +22 -0
  1654. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/temporary_buffer.h +22 -0
  1655. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/transform.h +22 -0
  1656. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/transform_reduce.h +22 -0
  1657. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/transform_scan.h +22 -0
  1658. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/trivial_copy.h +61 -0
  1659. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/uninitialized_copy.h +22 -0
  1660. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/uninitialized_fill.h +22 -0
  1661. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/unique.h +96 -0
  1662. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/sequential/unique_by_key.h +115 -0
  1663. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/detail/system_error.inl +112 -0
  1664. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/error_code.h +522 -0
  1665. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/adjacent_difference.h +49 -0
  1666. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/assign_value.h +23 -0
  1667. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/binary_search.h +72 -0
  1668. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/copy.h +56 -0
  1669. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/copy.inl +136 -0
  1670. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/copy_if.h +50 -0
  1671. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/copy_if.inl +53 -0
  1672. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/count.h +23 -0
  1673. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/default_decomposition.h +44 -0
  1674. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/default_decomposition.inl +59 -0
  1675. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/equal.h +23 -0
  1676. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/execution_policy.h +106 -0
  1677. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/extrema.h +66 -0
  1678. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/fill.h +23 -0
  1679. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/find.h +50 -0
  1680. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/for_each.h +59 -0
  1681. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/for_each.inl +95 -0
  1682. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/gather.h +23 -0
  1683. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/generate.h +23 -0
  1684. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/get_value.h +23 -0
  1685. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/inner_product.h +23 -0
  1686. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/iter_swap.h +23 -0
  1687. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/logical.h +23 -0
  1688. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/malloc_and_free.h +23 -0
  1689. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/memory.inl +83 -0
  1690. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/merge.h +23 -0
  1691. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/mismatch.h +23 -0
  1692. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/par.h +61 -0
  1693. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/partition.h +90 -0
  1694. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/partition.inl +107 -0
  1695. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/per_device_resource.h +22 -0
  1696. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/pragma_omp.h +56 -0
  1697. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/reduce.h +53 -0
  1698. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/reduce.inl +71 -0
  1699. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/reduce_by_key.h +60 -0
  1700. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/reduce_by_key.inl +56 -0
  1701. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/reduce_intervals.h +52 -0
  1702. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/reduce_intervals.inl +94 -0
  1703. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/remove.h +80 -0
  1704. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/remove.inl +93 -0
  1705. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/replace.h +23 -0
  1706. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/reverse.h +23 -0
  1707. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/scan.h +23 -0
  1708. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/scan_by_key.h +23 -0
  1709. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/scatter.h +23 -0
  1710. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/sequence.h +23 -0
  1711. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/set_operations.h +23 -0
  1712. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/sort.h +54 -0
  1713. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/sort.inl +266 -0
  1714. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/swap_ranges.h +23 -0
  1715. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/tabulate.h +23 -0
  1716. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/temporary_buffer.h +22 -0
  1717. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/transform.h +23 -0
  1718. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/transform_reduce.h +23 -0
  1719. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/transform_scan.h +23 -0
  1720. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/uninitialized_copy.h +23 -0
  1721. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/uninitialized_fill.h +23 -0
  1722. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/unique.h +58 -0
  1723. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/unique.inl +65 -0
  1724. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/unique_by_key.h +66 -0
  1725. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/detail/unique_by_key.inl +73 -0
  1726. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/execution_policy.h +155 -0
  1727. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/memory.h +101 -0
  1728. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/memory_resource.h +69 -0
  1729. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/pointer.h +117 -0
  1730. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/omp/vector.h +82 -0
  1731. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/system_error.h +178 -0
  1732. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/adjacent_difference.h +49 -0
  1733. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/assign_value.h +23 -0
  1734. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/binary_search.h +23 -0
  1735. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/copy.h +56 -0
  1736. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/copy.inl +136 -0
  1737. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/copy_if.h +49 -0
  1738. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/copy_if.inl +130 -0
  1739. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/count.h +23 -0
  1740. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/equal.h +23 -0
  1741. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/execution_policy.h +82 -0
  1742. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/extrema.h +66 -0
  1743. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/fill.h +23 -0
  1744. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/find.h +45 -0
  1745. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/for_each.h +53 -0
  1746. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/for_each.inl +99 -0
  1747. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/gather.h +23 -0
  1748. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/generate.h +23 -0
  1749. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/get_value.h +23 -0
  1750. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/inner_product.h +23 -0
  1751. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/iter_swap.h +23 -0
  1752. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/logical.h +23 -0
  1753. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/malloc_and_free.h +23 -0
  1754. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/memory.inl +85 -0
  1755. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/merge.h +69 -0
  1756. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/merge.inl +287 -0
  1757. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/mismatch.h +23 -0
  1758. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/par.h +61 -0
  1759. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/partition.h +86 -0
  1760. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/partition.inl +101 -0
  1761. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/per_device_resource.h +22 -0
  1762. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/reduce.h +53 -0
  1763. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/reduce.inl +130 -0
  1764. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/reduce_by_key.h +56 -0
  1765. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/reduce_by_key.inl +341 -0
  1766. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/reduce_intervals.h +124 -0
  1767. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/remove.h +80 -0
  1768. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/remove.inl +93 -0
  1769. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/replace.h +23 -0
  1770. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/reverse.h +23 -0
  1771. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/scan.h +63 -0
  1772. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/scan.inl +258 -0
  1773. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/scan_by_key.h +23 -0
  1774. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/scatter.h +23 -0
  1775. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/sequence.h +23 -0
  1776. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/set_operations.h +23 -0
  1777. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/sort.h +54 -0
  1778. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/sort.inl +264 -0
  1779. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/swap_ranges.h +23 -0
  1780. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/tabulate.h +23 -0
  1781. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/temporary_buffer.h +22 -0
  1782. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/transform.h +23 -0
  1783. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/transform_reduce.h +23 -0
  1784. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/transform_scan.h +23 -0
  1785. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/uninitialized_copy.h +23 -0
  1786. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/uninitialized_fill.h +23 -0
  1787. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/unique.h +58 -0
  1788. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/unique.inl +65 -0
  1789. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/unique_by_key.h +66 -0
  1790. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/detail/unique_by_key.inl +73 -0
  1791. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/execution_policy.h +155 -0
  1792. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/memory.h +103 -0
  1793. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/memory_resource.h +69 -0
  1794. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/pointer.h +117 -0
  1795. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system/tbb/vector.h +82 -0
  1796. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/system_error.h +49 -0
  1797. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/tabulate.h +125 -0
  1798. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/transform.h +721 -0
  1799. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/transform_reduce.h +194 -0
  1800. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/transform_scan.h +320 -0
  1801. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/tuple.h +568 -0
  1802. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/type_traits/integer_sequence.h +261 -0
  1803. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/type_traits/is_contiguous_iterator.h +185 -0
  1804. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/type_traits/is_execution_policy.h +49 -0
  1805. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/type_traits/is_operator_less_or_greater_function_object.h +135 -0
  1806. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/type_traits/is_operator_plus_function_object.h +76 -0
  1807. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/type_traits/is_trivially_relocatable.h +251 -0
  1808. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/type_traits/logical_metafunctions.h +178 -0
  1809. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/type_traits/remove_cvref.h +54 -0
  1810. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/type_traits/void_t.h +63 -0
  1811. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/uninitialized_copy.h +299 -0
  1812. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/uninitialized_fill.h +272 -0
  1813. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/unique.h +965 -0
  1814. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/universal_allocator.h +77 -0
  1815. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/universal_ptr.h +26 -0
  1816. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/universal_vector.h +57 -0
  1817. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/version.h +75 -0
  1818. smart_bbox-0.1.13/smart/vendor/manifold/src/third_party/thrust/thrust/zip_function.h +210 -0
  1819. smart_bbox-0.1.13/smart/vendor/manifold/src/utilities/CMakeLists.txt +62 -0
  1820. smart_bbox-0.1.13/smart/vendor/manifold/src/utilities/include/hashtable.h +159 -0
  1821. smart_bbox-0.1.13/smart/vendor/manifold/src/utilities/include/optional_assert.h +38 -0
  1822. smart_bbox-0.1.13/smart/vendor/manifold/src/utilities/include/par.h +161 -0
  1823. smart_bbox-0.1.13/smart/vendor/manifold/src/utilities/include/public.h +531 -0
  1824. smart_bbox-0.1.13/smart/vendor/manifold/src/utilities/include/sparse.h +168 -0
  1825. smart_bbox-0.1.13/smart/vendor/manifold/src/utilities/include/utils.h +193 -0
  1826. smart_bbox-0.1.13/smart/vendor/manifold/src/utilities/include/vec_dh.h +449 -0
  1827. smart_bbox-0.1.13/smart/vendor/manifold/src/utilities/src/detect_cuda.cpp +36 -0
  1828. smart_bbox-0.1.13/smart/vendor/manifold/thrust.diff +49 -0
  1829. smart_bbox-0.1.13/smart_bbox.egg-info/PKG-INFO +397 -0
  1830. smart_bbox-0.1.13/smart_bbox.egg-info/SOURCES.txt +1837 -0
  1831. smart_bbox-0.1.13/smart_bbox.egg-info/dependency_links.txt +1 -0
  1832. smart_bbox-0.1.13/smart_bbox.egg-info/entry_points.txt +7 -0
  1833. smart_bbox-0.1.13/smart_bbox.egg-info/requires.txt +20 -0
  1834. smart_bbox-0.1.13/smart_bbox.egg-info/top_level.txt +3 -0
  1835. smart_bbox-0.1.13/tests/test_config.py +1362 -0
  1836. smart_bbox-0.1.13/tests/test_cpp_extension.py +3128 -0
  1837. smart_bbox-0.1.13/tests/test_evaluation.py +30 -0
  1838. smart_bbox-0.1.13/tests/test_native_compat.py +1217 -0
  1839. smart_bbox-0.1.13/tests/test_release_wheel_audit.py +357 -0
@@ -0,0 +1,24 @@
1
+ cff-version: 1.2.0
2
+ message: "If you use SMART, please cite the 3DV 2024 paper."
3
+ title: "Split, Merge, and Refine: Fitting Tight Bounding Boxes via Over-Segmentation and Iterative Search"
4
+ authors:
5
+ - family-names: "Park"
6
+ given-names: "Chanhyeok"
7
+ - family-names: "Sung"
8
+ given-names: "Minhyuk"
9
+ year: 2024
10
+ url: "https://github.com/chpark1111/SMART"
11
+ repository-code: "https://github.com/chpark1111/SMART"
12
+ license: "CC-BY-NC-SA-4.0"
13
+ preferred-citation:
14
+ type: conference-paper
15
+ title: "Split, Merge, and Refine: Fitting Tight Bounding Boxes via Over-Segmentation and Iterative Search"
16
+ authors:
17
+ - family-names: "Park"
18
+ given-names: "Chanhyeok"
19
+ - family-names: "Sung"
20
+ given-names: "Minhyuk"
21
+ conference:
22
+ name: "International Conference on 3D Vision"
23
+ year: 2024
24
+ url: "https://arxiv.org/abs/2304.04336"
@@ -0,0 +1,418 @@
1
+ Attribution-NonCommercial-ShareAlike 4.0 International
2
+
3
+ =======================================================================
4
+
5
+ Creative Commons Corporation ("Creative Commons") is not a law firm and
6
+ does not provide legal services or legal advice. Distribution of
7
+ Creative Commons public licenses does not create a lawyer-client or
8
+ other relationship. Creative Commons makes its licenses and related
9
+ information available on an "as-is" basis. Creative Commons gives no
10
+ warranties regarding its licenses, any material licensed under their
11
+ terms and conditions, or any related information. Creative Commons
12
+ disclaims all liability for damages resulting from their use to the
13
+ fullest extent possible.
14
+
15
+ Using Creative Commons Public Licenses
16
+
17
+ Creative Commons public licenses provide a standard set of terms and
18
+ conditions that creators and other rights holders may use to share
19
+ original works of authorship and other material subject to copyright
20
+ and certain other rights specified in the public license below. The
21
+ following considerations are for informational purposes only, are not
22
+ exhaustive, and do not form part of our licenses.
23
+
24
+ Considerations for licensors: Our public licenses are
25
+ intended for use by those authorized to give the public
26
+ permission to use material in ways otherwise restricted by
27
+ copyright and certain other rights. Our licenses are
28
+ irrevocable. Licensors should read and understand the terms
29
+ and conditions of the license they choose before applying it.
30
+ Licensors should also secure all rights necessary before
31
+ applying our licenses so that the public can reuse the
32
+ material as expected. Licensors should clearly mark any
33
+ material not subject to the license. This includes other CC-
34
+ licensed material, or material used under an exception or
35
+ limitation to copyright. More considerations for licensors:
36
+ wiki.creativecommons.org/Considerations_for_licensors
37
+
38
+ Considerations for the public: By using one of our public
39
+ licenses, a licensor grants the public permission to use the
40
+ licensed material under specified terms and conditions. If
41
+ the licensor's permission is not necessary for any reason--for
42
+ example, because of any applicable exception or limitation to
43
+ copyright--then that use is not regulated by the license. Our
44
+ licenses grant only permissions under copyright and certain
45
+ other rights that a licensor has authority to grant. Use of
46
+ the licensed material may still be restricted for other
47
+ reasons, including because others have copyright or other
48
+ rights in the material. A licensor may make special requests,
49
+ such as asking that all changes be marked or described.
50
+ Although not required by our licenses, you are encouraged to
51
+ respect those requests where reasonable. More considerations
52
+ for the public:
53
+ wiki.creativecommons.org/Considerations_for_licensees
54
+
55
+ =======================================================================
56
+
57
+ Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International
58
+ Public License
59
+
60
+ By exercising the Licensed Rights (defined below), You accept and agree
61
+ to be bound by the terms and conditions of this Creative Commons
62
+ Attribution-NonCommercial-ShareAlike 4.0 International Public License
63
+ ("Public License"). To the extent this Public License may be
64
+ interpreted as a contract, You are granted the Licensed Rights in
65
+ consideration of Your acceptance of these terms and conditions, and the
66
+ Licensor grants You such rights in consideration of benefits the
67
+ Licensor receives from making the Licensed Material available under
68
+ these terms and conditions.
69
+
70
+
71
+ Section 1 -- Definitions.
72
+
73
+ a. Adapted Material means material subject to Copyright and Similar
74
+ Rights that is derived from or based upon the Licensed Material
75
+ and in which the Licensed Material is translated, altered,
76
+ arranged, transformed, or otherwise modified in a manner requiring
77
+ permission under the Copyright and Similar Rights held by the
78
+ Licensor. For purposes of this Public License, where the Licensed
79
+ Material is a musical work, performance, or sound recording,
80
+ Adapted Material is always produced where the Licensed Material is
81
+ synched in timed relation with a moving image.
82
+
83
+ b. Adapter's License means the license You apply to Your Copyright
84
+ and Similar Rights in Your contributions to Adapted Material in
85
+ accordance with the terms and conditions of this Public License.
86
+
87
+ c. BY-NC-SA Compatible License means a license listed at
88
+ creativecommons.org/compatiblelicenses, approved by Creative
89
+ Commons as essentially the equivalent of this Public License.
90
+
91
+ d. Copyright and Similar Rights means copyright and/or similar rights
92
+ closely related to copyright including, without limitation,
93
+ performance, broadcast, sound recording, and Sui Generis Database
94
+ Rights, without regard to how the rights are labeled or
95
+ categorized. For purposes of this Public License, the rights
96
+ specified in Section 2(b)(1)-(2) are not Copyright and Similar
97
+ Rights.
98
+
99
+ e. Effective Technological Measures means those measures that, in the
100
+ absence of proper authority, may not be circumvented under laws
101
+ fulfilling obligations under Article 11 of the WIPO Copyright
102
+ Treaty adopted on December 20, 1996, and/or similar international
103
+ agreements.
104
+
105
+ f. Exceptions and Limitations means fair use, fair dealing, and/or
106
+ any other exception or limitation to Copyright and Similar Rights
107
+ that applies to Your use of the Licensed Material.
108
+
109
+ g. License Elements means the license attributes listed in the name
110
+ of a Creative Commons Public License. The License Elements of this
111
+ Public License are Attribution, NonCommercial, and ShareAlike.
112
+
113
+ h. Licensed Material means the artistic or literary work, database,
114
+ or other material to which the Licensor applied this Public
115
+ License.
116
+
117
+ i. Licensed Rights means the rights granted to You subject to the
118
+ terms and conditions of this Public License, which are limited to
119
+ all Copyright and Similar Rights that apply to Your use of the
120
+ Licensed Material and that the Licensor has authority to license.
121
+
122
+ j. Licensor means the individual(s) or entity(ies) granting rights
123
+ under this Public License.
124
+
125
+ k. NonCommercial means not primarily intended for or directed towards
126
+ commercial advantage or monetary compensation. For purposes of
127
+ this Public License, the exchange of the Licensed Material for
128
+ other material subject to Copyright and Similar Rights by digital
129
+ file-sharing or similar means is NonCommercial provided there is
130
+ no payment of monetary compensation in connection with the
131
+ exchange.
132
+
133
+ l. Share means to provide material to the public by any means or
134
+ process that requires permission under the Licensed Rights, such
135
+ as reproduction, public display, public performance, distribution,
136
+ dissemination, communication, or importation, and to make material
137
+ available to the public including in ways that members of the
138
+ public may access the material from a place and at a time
139
+ individually chosen by them.
140
+
141
+ m. Sui Generis Database Rights means rights other than copyright
142
+ resulting from Directive 96/9/EC of the European Parliament and of
143
+ the Council of 11 March 1996 on the legal protection of databases,
144
+ as amended and/or succeeded, as well as other essentially
145
+ equivalent rights anywhere in the world.
146
+
147
+ n. You means the individual or entity exercising the Licensed Rights
148
+ under this Public License. Your has a corresponding meaning.
149
+
150
+
151
+ Section 2 -- Scope.
152
+
153
+ a. License grant.
154
+
155
+ 1. Subject to the terms and conditions of this Public License,
156
+ the Licensor hereby grants You a worldwide, royalty-free,
157
+ non-sublicensable, non-exclusive, irrevocable license to
158
+ exercise the Licensed Rights in the Licensed Material to:
159
+
160
+ a. reproduce and Share the Licensed Material, in whole or
161
+ in part, for NonCommercial purposes only; and
162
+
163
+ b. produce, reproduce, and Share Adapted Material for
164
+ NonCommercial purposes only.
165
+
166
+ 2. Exceptions and Limitations. For the avoidance of doubt, where
167
+ Exceptions and Limitations apply to Your use, this Public
168
+ License does not apply, and You do not need to comply with
169
+ its terms and conditions.
170
+
171
+ 3. Term. The term of this Public License is specified in Section
172
+ 6(a).
173
+
174
+ 4. Media and formats; technical modifications allowed. The
175
+ Licensor authorizes You to exercise the Licensed Rights in
176
+ all media and formats whether now known or hereafter created,
177
+ and to make technical modifications necessary to do so. The
178
+ Licensor waives and/or agrees not to assert any right or
179
+ authority to forbid You from making technical modifications
180
+ necessary to exercise the Licensed Rights, including
181
+ technical modifications necessary to circumvent Effective
182
+ Technological Measures. For purposes of this Public License,
183
+ simply making modifications authorized by this Section 2(a)
184
+ (4) never produces Adapted Material.
185
+
186
+ 5. Downstream recipients.
187
+
188
+ a. Offer from the Licensor -- Licensed Material. Every
189
+ recipient of the Licensed Material automatically
190
+ receives an offer from the Licensor to exercise the
191
+ Licensed Rights under the terms and conditions of this
192
+ Public License.
193
+
194
+ b. Additional offer from the Licensor -- Adapted Material.
195
+ Every recipient of Adapted Material from You
196
+ automatically receives an offer from the Licensor to
197
+ exercise the Licensed Rights in the Adapted Material
198
+ under the conditions of the Adapter's License You apply.
199
+
200
+ c. No downstream restrictions. You may not offer or impose
201
+ any additional or different terms or conditions on, or
202
+ apply any Effective Technological Measures to, the
203
+ Licensed Material if doing so restricts exercise of the
204
+ Licensed Rights by any recipient of the Licensed
205
+ Material.
206
+
207
+ 6. No endorsement. Nothing in this Public License constitutes or
208
+ may be construed as permission to assert or imply that You
209
+ are, or that Your use of the Licensed Material is, connected
210
+ with, or sponsored, endorsed, or granted official status by,
211
+ the Licensor or others designated to receive attribution as
212
+ provided in Section 3(a)(1)(A)(i).
213
+
214
+ b. Other rights.
215
+
216
+ 1. Moral rights, such as the right of integrity, are not
217
+ licensed under this Public License, nor are publicity,
218
+ privacy, and/or other similar personality rights; however, to
219
+ the extent possible, the Licensor waives and/or agrees not to
220
+ assert any such rights held by the Licensor to the limited
221
+ extent necessary to allow You to exercise the Licensed
222
+ Rights, but not otherwise.
223
+
224
+ 2. Patent and trademark rights are not licensed under this
225
+ Public License.
226
+
227
+ 3. To the extent possible, the Licensor waives any right to
228
+ collect royalties from You for the exercise of the Licensed
229
+ Rights, whether directly or through a collecting society
230
+ under any voluntary or waivable statutory or compulsory
231
+ licensing scheme. In all other cases the Licensor expressly
232
+ reserves any right to collect such royalties, including when
233
+ the Licensed Material is used other than for NonCommercial
234
+ purposes.
235
+
236
+
237
+ Section 3 -- License Conditions.
238
+
239
+ Your exercise of the Licensed Rights is expressly made subject to the
240
+ following conditions.
241
+
242
+ a. Attribution.
243
+
244
+ 1. If You Share the Licensed Material (including in modified
245
+ form), You must:
246
+
247
+ a. retain the following if it is supplied by the Licensor
248
+ with the Licensed Material:
249
+
250
+ i. identification of the creator(s) of the Licensed
251
+ Material and any others designated to receive
252
+ attribution, in any reasonable manner requested by
253
+ the Licensor (including by pseudonym if
254
+ designated);
255
+
256
+ ii. a copyright notice;
257
+
258
+ iii. a notice that refers to this Public License;
259
+
260
+ iv. a notice that refers to the disclaimer of
261
+ warranties;
262
+
263
+ v. a URI or hyperlink to the Licensed Material to the
264
+ extent reasonably practicable;
265
+
266
+ b. indicate if You modified the Licensed Material and
267
+ retain an indication of any previous modifications; and
268
+
269
+ c. indicate the Licensed Material is licensed under this
270
+ Public License, and include the text of, or the URI or
271
+ hyperlink to, this Public License.
272
+
273
+ 2. You may satisfy the conditions in Section 3(a)(1) in any
274
+ reasonable manner based on the medium, means, and context in
275
+ which You Share the Licensed Material. For example, it may be
276
+ reasonable to satisfy the conditions by providing a URI or
277
+ hyperlink to a resource that includes the required
278
+ information.
279
+ 3. If requested by the Licensor, You must remove any of the
280
+ information required by Section 3(a)(1)(A) to the extent
281
+ reasonably practicable.
282
+
283
+ b. ShareAlike.
284
+
285
+ In addition to the conditions in Section 3(a), if You Share
286
+ Adapted Material You produce, the following conditions also apply.
287
+
288
+ 1. The Adapter's License You apply must be a Creative Commons
289
+ license with the same License Elements, this version or
290
+ later, or a BY-NC-SA Compatible License.
291
+
292
+ 2. You must include the text of, or the URI or hyperlink to, the
293
+ Adapter's License You apply. You may satisfy this condition
294
+ in any reasonable manner based on the medium, means, and
295
+ context in which You Share Adapted Material.
296
+
297
+ 3. You may not offer or impose any additional or different terms
298
+ or conditions on, or apply any Effective Technological
299
+ Measures to, Adapted Material that restrict exercise of the
300
+ rights granted under the Adapter's License You apply.
301
+
302
+
303
+ Section 4 -- Sui Generis Database Rights.
304
+
305
+ Where the Licensed Rights include Sui Generis Database Rights that
306
+ apply to Your use of the Licensed Material:
307
+
308
+ a. for the avoidance of doubt, Section 2(a)(1) grants You the right
309
+ to extract, reuse, reproduce, and Share all or a substantial
310
+ portion of the contents of the database for NonCommercial purposes
311
+ only;
312
+
313
+ b. if You include all or a substantial portion of the database
314
+ contents in a database in which You have Sui Generis Database
315
+ Rights, then the database in which You have Sui Generis Database
316
+ Rights (but not its individual contents) is Adapted Material,
317
+ including for purposes of Section 3(b); and
318
+
319
+ c. You must comply with the conditions in Section 3(a) if You Share
320
+ all or a substantial portion of the contents of the database.
321
+
322
+ For the avoidance of doubt, this Section 4 supplements and does not
323
+ replace Your obligations under this Public License where the Licensed
324
+ Rights include other Copyright and Similar Rights.
325
+
326
+
327
+ Section 5 -- Disclaimer of Warranties and Limitation of Liability.
328
+
329
+ a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE
330
+ EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS
331
+ AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF
332
+ ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS,
333
+ IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION,
334
+ WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR
335
+ PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS,
336
+ ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT
337
+ KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT
338
+ ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU.
339
+
340
+ b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE
341
+ TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION,
342
+ NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT,
343
+ INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES,
344
+ COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR
345
+ USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN
346
+ ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR
347
+ DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR
348
+ IN PART, THIS LIMITATION MAY NOT APPLY TO YOU.
349
+
350
+ c. The disclaimer of warranties and limitation of liability provided
351
+ above shall be interpreted in a manner that, to the extent
352
+ possible, most closely approximates an absolute disclaimer and
353
+ waiver of all liability.
354
+
355
+
356
+ Section 6 -- Term and Termination.
357
+
358
+ a. This Public License applies for the term of the Copyright and
359
+ Similar Rights licensed here. However, if You fail to comply with
360
+ this Public License, then Your rights under this Public License
361
+ terminate automatically.
362
+
363
+ b. Where Your right to use the Licensed Material has terminated under
364
+ Section 6(a), it reinstates:
365
+
366
+ 1. automatically as of the date the violation is cured, provided
367
+ it is cured within 30 days of Your discovery of the
368
+ violation; or
369
+
370
+ 2. upon express reinstatement by the Licensor.
371
+
372
+ For the avoidance of doubt, this Section 6(b) does not affect any
373
+ right the Licensor may have to seek remedies for Your violations
374
+ of this Public License.
375
+
376
+ c. For the avoidance of doubt, the Licensor may also offer the
377
+ Licensed Material under separate terms or conditions or stop
378
+ distributing the Licensed Material at any time; however, doing so
379
+ will not terminate this Public License.
380
+
381
+ d. Sections 1, 5, 6, 7, and 8 survive termination of this Public
382
+ License.
383
+
384
+
385
+ Section 7 -- Other Terms and Conditions.
386
+
387
+ a. The Licensor shall not be bound by any additional or different
388
+ terms or conditions communicated by You unless expressly agreed.
389
+
390
+ b. Any arrangements, understandings, or agreements regarding the
391
+ Licensed Material not stated herein are separate from and
392
+ independent of the terms and conditions of this Public License.
393
+
394
+
395
+ Section 8 -- Interpretation.
396
+
397
+ a. For the avoidance of doubt, this Public License does not, and
398
+ shall not be interpreted to, reduce, limit, restrict, or impose
399
+ conditions on any use of the Licensed Material that could lawfully
400
+ be made without permission under this Public License.
401
+
402
+ b. To the extent possible, if any provision of this Public License is
403
+ deemed unenforceable, it shall be automatically reformed to the
404
+ minimum extent necessary to make it enforceable. If the provision
405
+ cannot be reformed, it shall be severed from this Public License
406
+ without affecting the enforceability of the remaining terms and
407
+ conditions.
408
+
409
+ c. No term or condition of this Public License will be waived and no
410
+ failure to comply consented to unless expressly agreed to by the
411
+ Licensor.
412
+
413
+ d. Nothing in this Public License constitutes or may be interpreted
414
+ as a limitation upon, or waiver of, any privileges and immunities
415
+ that apply to the Licensor or You, including from the legal
416
+ processes of any jurisdiction or authority.
417
+
418
+ =======================================================================
@@ -0,0 +1,51 @@
1
+ # Release packaging is controlled by setuptools/setup.py and keeps Python as
2
+ # the CLI/API/package wrapper around the native C++ extension.
3
+ include README.md
4
+ include CITATION.cff
5
+ include pyproject.toml
6
+ include setup.py
7
+ include setup_cpp.py
8
+ recursive-include configs *.yaml
9
+ recursive-include configs *.md
10
+ recursive-include cpp *.md
11
+ recursive-include scripts *.md
12
+ recursive-include smart/configs *.yaml
13
+ recursive-include cmake *.cmake
14
+ recursive-include cpp *.cpp *.hpp
15
+ recursive-include docs *.md *.png
16
+ recursive-include scripts *.py
17
+ recursive-include smart/legacy/renderer *.blend *.txt
18
+ recursive-include smart/pymanifold_runtime .gitkeep
19
+ recursive-include smart/vendor/manifold *
20
+ prune smart/vendor/manifold/.github
21
+ prune smart/vendor/manifold/build
22
+ prune smart/vendor/manifold/docs
23
+ prune smart/vendor/manifold/samples
24
+ prune smart/vendor/manifold/test
25
+ prune smart/vendor/manifold/bindings/wasm
26
+ prune smart/vendor/manifold/bindings/python/third_party/pybind11/.github
27
+ prune smart/vendor/manifold/bindings/python/third_party/pybind11/docs
28
+ prune smart/vendor/manifold/bindings/python/third_party/pybind11/tests
29
+ prune smart/vendor/manifold/src/third_party/glm/doc
30
+ prune smart/vendor/manifold/src/third_party/glm/test
31
+ prune smart/vendor/manifold/src/third_party/glm/util
32
+ prune smart/vendor/manifold/src/third_party/thrust/.github
33
+ prune smart/vendor/manifold/src/third_party/thrust/ci
34
+ prune smart/vendor/manifold/src/third_party/thrust/doc
35
+ prune smart/vendor/manifold/src/third_party/thrust/examples
36
+ prune smart/vendor/manifold/src/third_party/thrust/internal
37
+ prune smart/vendor/manifold/src/third_party/thrust/testing
38
+ prune smart/vendor/manifold/src/third_party/thrust/dependencies/cub/.github
39
+ prune smart/vendor/manifold/src/third_party/thrust/dependencies/cub/examples
40
+ prune smart/vendor/manifold/src/third_party/thrust/dependencies/cub/experimental
41
+ prune smart/vendor/manifold/src/third_party/thrust/dependencies/cub/test
42
+ prune smart/vendor/manifold/src/third_party/thrust/dependencies/cub/tune
43
+ prune data
44
+ prune past_codes
45
+ prune runs
46
+ prune external
47
+ prune experiments
48
+ prune build
49
+ prune dist
50
+ global-exclude *.so *.pyd *.dylib
51
+ global-exclude __pycache__ *.py[cod] .DS_Store