CMakeLists.txt
LICENSE
MANIFEST.in
README.md
pyproject.toml
setup.cfg
setup.py
cmake/config.cmake.in
include/splinepy/explicit/bezier.hpp
include/splinepy/explicit/bspline.hpp
include/splinepy/explicit/nurbs.hpp
include/splinepy/explicit/rational_bezier.hpp
include/splinepy/fitting/fitting.hpp
include/splinepy/fitting/lu_solve.hpp
include/splinepy/fitting/utils.hpp
include/splinepy/proximity/proximity.hpp
include/splinepy/py/py_fitting.hpp
include/splinepy/py/py_knot_insertion_matrix.hpp
include/splinepy/py/py_multipatch.hpp
include/splinepy/py/py_spline.hpp
include/splinepy/py/py_spline_exporter.hpp
include/splinepy/py/py_spline_extensions.hpp
include/splinepy/py/py_spline_reader.hpp
include/splinepy/splines/bezier.hpp
include/splinepy/splines/bezier.inl
include/splinepy/splines/bspline.hpp
include/splinepy/splines/null_spline.hpp
include/splinepy/splines/nurbs.hpp
include/splinepy/splines/rational_bezier.hpp
include/splinepy/splines/rational_bezier.inl
include/splinepy/splines/splinepy_base.hpp
include/splinepy/splines/create/create_bezier.hpp
include/splinepy/splines/create/create_bspline.hpp
include/splinepy/splines/create/create_nurbs.hpp
include/splinepy/splines/create/create_rational_bezier.hpp
include/splinepy/splines/helpers/basis_functions.hpp
include/splinepy/splines/helpers/extract.hpp
include/splinepy/splines/helpers/extract_bezier_patches.hpp
include/splinepy/splines/helpers/properties.hpp
include/splinepy/splines/helpers/scalar_type_wrapper.hpp
include/splinepy/utils/arrays.hpp
include/splinepy/utils/coordinate_pointers.hpp
include/splinepy/utils/default_initialization_allocator.hpp
include/splinepy/utils/grid_points.hpp
include/splinepy/utils/nthreads.hpp
include/splinepy/utils/print.hpp
splinepy/__init__.py
splinepy/_base.py
splinepy/_version.py
splinepy/bezier.py
splinepy/bspline.py
splinepy/load.py
splinepy/multipatch.py
splinepy/nurbs.py
splinepy/rational_bezier.py
splinepy/settings.py
splinepy/spline.py
splinepy.egg-info/PKG-INFO
splinepy.egg-info/SOURCES.txt
splinepy.egg-info/dependency_links.txt
splinepy.egg-info/not-zip-safe
splinepy.egg-info/requires.txt
splinepy.egg-info/top_level.txt
splinepy/helpme/__init__.py
splinepy/helpme/check.py
splinepy/helpme/create.py
splinepy/helpme/extract.py
splinepy/helpme/ffd.py
splinepy/helpme/integrate.py
splinepy/helpme/mapper.py
splinepy/helpme/multi_index.py
splinepy/helpme/permute.py
splinepy/helpme/visualize.py
splinepy/io/__init__.py
splinepy/io/cats.py
splinepy/io/gismo.py
splinepy/io/iges.py
splinepy/io/ioutils.py
splinepy/io/irit.py
splinepy/io/json.py
splinepy/io/mfem.py
splinepy/io/npz.py
splinepy/io/vtk.py
splinepy/microstructure/__init__.py
splinepy/microstructure/microstructure.py
splinepy/microstructure/tiles/__init__.py
splinepy/microstructure/tiles/armadillo.py
splinepy/microstructure/tiles/crossednuttile2d.py
splinepy/microstructure/tiles/crosstile2d.py
splinepy/microstructure/tiles/crosstile3d.py
splinepy/microstructure/tiles/cube3d.py
splinepy/microstructure/tiles/cubevoid.py
splinepy/microstructure/tiles/double_lattice_tile.py
splinepy/microstructure/tiles/ellipsvoid.py
splinepy/microstructure/tiles/inversecrosstile3d.py
splinepy/microstructure/tiles/nuttile2d.py
splinepy/microstructure/tiles/nuttile3d.py
splinepy/microstructure/tiles/snappytile.py
splinepy/microstructure/tiles/tilebase.py
splinepy/utils/__init__.py
splinepy/utils/data.py
splinepy/utils/log.py
src/CMakeLists.txt
src/explicit/CMakeLists.txt
src/explicit/splinepy/bezier_explicit1.cpp
src/explicit/splinepy/bezier_explicit10.cpp
src/explicit/splinepy/bezier_explicit2.cpp
src/explicit/splinepy/bezier_explicit3.cpp
src/explicit/splinepy/bezier_explicit4.cpp
src/explicit/splinepy/bezier_explicit5.cpp
src/explicit/splinepy/bezier_explicit6.cpp
src/explicit/splinepy/bezier_explicit7.cpp
src/explicit/splinepy/bezier_explicit8.cpp
src/explicit/splinepy/bezier_explicit9.cpp
src/explicit/splinepy/bspline_explicit1.cpp
src/explicit/splinepy/bspline_explicit10.cpp
src/explicit/splinepy/bspline_explicit2.cpp
src/explicit/splinepy/bspline_explicit3.cpp
src/explicit/splinepy/bspline_explicit4.cpp
src/explicit/splinepy/bspline_explicit5.cpp
src/explicit/splinepy/bspline_explicit6.cpp
src/explicit/splinepy/bspline_explicit7.cpp
src/explicit/splinepy/bspline_explicit8.cpp
src/explicit/splinepy/bspline_explicit9.cpp
src/explicit/splinepy/nurbs_explicit1.cpp
src/explicit/splinepy/nurbs_explicit10.cpp
src/explicit/splinepy/nurbs_explicit2.cpp
src/explicit/splinepy/nurbs_explicit3.cpp
src/explicit/splinepy/nurbs_explicit4.cpp
src/explicit/splinepy/nurbs_explicit5.cpp
src/explicit/splinepy/nurbs_explicit6.cpp
src/explicit/splinepy/nurbs_explicit7.cpp
src/explicit/splinepy/nurbs_explicit8.cpp
src/explicit/splinepy/nurbs_explicit9.cpp
src/explicit/splinepy/rational_bezier_explicit1.cpp
src/explicit/splinepy/rational_bezier_explicit10.cpp
src/explicit/splinepy/rational_bezier_explicit2.cpp
src/explicit/splinepy/rational_bezier_explicit3.cpp
src/explicit/splinepy/rational_bezier_explicit4.cpp
src/explicit/splinepy/rational_bezier_explicit5.cpp
src/explicit/splinepy/rational_bezier_explicit6.cpp
src/explicit/splinepy/rational_bezier_explicit7.cpp
src/explicit/splinepy/rational_bezier_explicit8.cpp
src/explicit/splinepy/rational_bezier_explicit9.cpp
src/fitting/fitting.cpp
src/fitting/lu_solve.cpp
src/fitting/utils.cpp
src/py/CMakeLists.txt
src/py/py_coordinate_pointers.cpp
src/py/py_fitting.cpp
src/py/py_knot_insertion_matrix.cpp
src/py/py_knot_vector.cpp
src/py/py_multipatch.cpp
src/py/py_spline.cpp
src/py/py_spline_exporter.cpp
src/py/py_spline_extensions.cpp
src/py/py_spline_reader.cpp
src/py/splinepy_core.cpp
src/splines/splinepy_base.cpp
src/splines/create/bezier1.cpp
src/splines/create/bezier10.cpp
src/splines/create/bezier2.cpp
src/splines/create/bezier3.cpp
src/splines/create/bezier4.cpp
src/splines/create/bezier5.cpp
src/splines/create/bezier6.cpp
src/splines/create/bezier7.cpp
src/splines/create/bezier8.cpp
src/splines/create/bezier9.cpp
src/splines/create/bspline1.cpp
src/splines/create/bspline10.cpp
src/splines/create/bspline2.cpp
src/splines/create/bspline3.cpp
src/splines/create/bspline4.cpp
src/splines/create/bspline5.cpp
src/splines/create/bspline6.cpp
src/splines/create/bspline7.cpp
src/splines/create/bspline8.cpp
src/splines/create/bspline9.cpp
src/splines/create/nurbs1.cpp
src/splines/create/nurbs10.cpp
src/splines/create/nurbs2.cpp
src/splines/create/nurbs3.cpp
src/splines/create/nurbs4.cpp
src/splines/create/nurbs5.cpp
src/splines/create/nurbs6.cpp
src/splines/create/nurbs7.cpp
src/splines/create/nurbs8.cpp
src/splines/create/nurbs9.cpp
src/splines/create/rational_bezier1.cpp
src/splines/create/rational_bezier10.cpp
src/splines/create/rational_bezier2.cpp
src/splines/create/rational_bezier3.cpp
src/splines/create/rational_bezier4.cpp
src/splines/create/rational_bezier5.cpp
src/splines/create/rational_bezier6.cpp
src/splines/create/rational_bezier7.cpp
src/splines/create/rational_bezier8.cpp
src/splines/create/rational_bezier9.cpp
src/utils/coordinate_pointers.cpp
tests/test_bezier_extraction.py
tests/test_c_contiguous.py
tests/test_cartesian.py
tests/test_cats.py
tests/test_composition_sensitivities.py
tests/test_creator.py
tests/test_evaluation.py
tests/test_extract.py
tests/test_fitting.py
tests/test_gismo.py
tests/test_greville.py
tests/test_irit_io.py
tests/test_json.py
tests/test_kv_manipulation.py
tests/test_mapping.py
tests/test_mfem_export.py
tests/test_multi_index.py
tests/test_multipatch.py
tests/test_normalize_knot_vectors.py
tests/test_order_manipulation.py
tests/test_orientation.py
tests/test_permute_parametric_axes.py
tests/test_property_modification.py
tests/test_proximity.py
tests/test_spline_constructors.py
tests/test_spline_type_conversion.py
tests/test_volume_integration.py
third_party/CMakeLists.txt
third_party/BSplineLib/.clang-format
third_party/BSplineLib/.pre-commit-config.yaml
third_party/BSplineLib/CMakeLists.txt
third_party/BSplineLib/LICENSE.md
third_party/BSplineLib/README.md
third_party/BSplineLib/STYLEGUIDE.md
third_party/BSplineLib/CMake/config.cmake.in
third_party/BSplineLib/Examples/Evaluation/CMakeLists.txt
third_party/BSplineLib/Examples/Evaluation/evaluation.cpp
third_party/BSplineLib/Sources/BSplineLib/CMakeLists.txt
third_party/BSplineLib/Sources/BSplineLib/InputOutput/CMakeLists.txt
third_party/BSplineLib/Sources/BSplineLib/InputOutput/iges.cpp
third_party/BSplineLib/Sources/BSplineLib/InputOutput/iges.hpp
third_party/BSplineLib/Sources/BSplineLib/InputOutput/operations.cpp
third_party/BSplineLib/Sources/BSplineLib/InputOutput/operations.hpp
third_party/BSplineLib/Sources/BSplineLib/InputOutput/operations.inl
third_party/BSplineLib/Sources/BSplineLib/ParameterSpaces/CMakeLists.txt
third_party/BSplineLib/Sources/BSplineLib/ParameterSpaces/knot_vector.cpp
third_party/BSplineLib/Sources/BSplineLib/ParameterSpaces/knot_vector.hpp
third_party/BSplineLib/Sources/BSplineLib/ParameterSpaces/parameter_space.hpp
third_party/BSplineLib/Sources/BSplineLib/ParameterSpaces/parameter_space.inl
third_party/BSplineLib/Sources/BSplineLib/Splines/CMakeLists.txt
third_party/BSplineLib/Sources/BSplineLib/Splines/b_spline.hpp
third_party/BSplineLib/Sources/BSplineLib/Splines/b_spline.inl
third_party/BSplineLib/Sources/BSplineLib/Splines/nurbs.hpp
third_party/BSplineLib/Sources/BSplineLib/Splines/nurbs.inl
third_party/BSplineLib/Sources/BSplineLib/Splines/spline.hpp
third_party/BSplineLib/Sources/BSplineLib/Splines/spline.inl
third_party/BSplineLib/Sources/BSplineLib/Splines/spline_item.cpp
third_party/BSplineLib/Sources/BSplineLib/Splines/spline_item.hpp
third_party/BSplineLib/Sources/BSplineLib/Utilities/CMakeLists.txt
third_party/BSplineLib/Sources/BSplineLib/Utilities/error_handling.hpp
third_party/BSplineLib/Sources/BSplineLib/Utilities/error_handling.inl
third_party/BSplineLib/Sources/BSplineLib/Utilities/index.hpp
third_party/BSplineLib/Sources/BSplineLib/Utilities/index.inl
third_party/BSplineLib/Sources/BSplineLib/Utilities/math_operations.cpp
third_party/BSplineLib/Sources/BSplineLib/Utilities/math_operations.hpp
third_party/BSplineLib/Sources/BSplineLib/Utilities/named_type.hpp
third_party/BSplineLib/Sources/BSplineLib/Utilities/named_type.inl
third_party/BSplineLib/Sources/BSplineLib/Utilities/numeric_operations.hpp
third_party/BSplineLib/Sources/BSplineLib/Utilities/numeric_operations.inl
third_party/BSplineLib/Sources/BSplineLib/Utilities/std_container_operations.hpp
third_party/BSplineLib/Sources/BSplineLib/Utilities/std_container_operations.inl
third_party/BSplineLib/Sources/BSplineLib/Utilities/string_operations.cpp
third_party/BSplineLib/Sources/BSplineLib/Utilities/string_operations.hpp
third_party/BSplineLib/Sources/BSplineLib/Utilities/string_operations.inl
third_party/BSplineLib/Sources/BSplineLib/Utilities/system_operations.cpp
third_party/BSplineLib/Sources/BSplineLib/Utilities/system_operations.hpp
third_party/BSplineLib/Sources/BSplineLib/Utilities/system_operations.inl
third_party/BSplineLib/Sources/BSplineLib/VectorSpaces/CMakeLists.txt
third_party/BSplineLib/Sources/BSplineLib/VectorSpaces/vector_space.hpp
third_party/BSplineLib/Sources/BSplineLib/VectorSpaces/vector_space.inl
third_party/BSplineLib/Sources/BSplineLib/VectorSpaces/weighted_vector_space.hpp
third_party/BSplineLib/Sources/BSplineLib/VectorSpaces/weighted_vector_space.inl
third_party/bezman/CMakeLists.txt
third_party/bezman/LICENSE.md
third_party/bezman/README.md
third_party/bezman/.github/pull_request_template.md
third_party/bezman/.github/workflows/build_clang.yml
third_party/bezman/.github/workflows/build_gcc.yml
third_party/bezman/.github/workflows/build_msvc.yml
third_party/bezman/.github/workflows/check_format.yml
third_party/bezman/.github/workflows/docs.yml
third_party/bezman/cmake/AddGoogleTest.cmake
third_party/bezman/cmake/config.cmake.in
third_party/bezman/doc/Doxyfile
third_party/bezman/example/Microstructure/CMakeLists.txt
third_party/bezman/example/Microstructure/ComposedMicrostructure.png
third_party/bezman/example/Microstructure/microstructure_build.cpp
third_party/bezman/src/CMakeLists.txt
third_party/bezman/src/bezier_spline.hpp
third_party/bezman/src/bezier_spline.inc
third_party/bezman/src/point.hpp
third_party/bezman/src/rational_bezier_spline.hpp
third_party/bezman/src/rational_bezier_spline.inc
third_party/bezman/src/utils/CMakeLists.txt
third_party/bezman/src/utils/base64.hpp
third_party/bezman/src/utils/binomialcoefficientlookuptablecreator.hpp
third_party/bezman/src/utils/fastbinomialcoefficient.hpp
third_party/bezman/src/utils/logger.hpp
third_party/bezman/src/utils/algorithms/CMakeLists.txt
third_party/bezman/src/utils/algorithms/bernstein_polynomial.hpp
third_party/bezman/src/utils/algorithms/int_power.hpp
third_party/bezman/src/utils/algorithms/recursive_combine.hpp
third_party/bezman/src/utils/algorithms/sort.hpp
third_party/bezman/src/utils/computational_differentiation/CMakeLists.txt
third_party/bezman/src/utils/computational_differentiation/algo_diff_type.hpp
third_party/bezman/src/utils/computational_differentiation/algo_diff_type.inc
third_party/bezman/src/utils/type_traits/CMakeLists.txt
third_party/bezman/src/utils/type_traits/is_bezier_spline.hpp
third_party/bezman/src/utils/type_traits/is_point.hpp
third_party/bezman/src/utils/type_traits/is_rational_bezier_spline.hpp
third_party/bezman/tests/CMakeLists.txt
third_party/bezman/tests/algo_diff_type/CMakeLists.txt
third_party/bezman/tests/algo_diff_type/algo_diff_type_test.cpp
third_party/bezman/tests/basic_operations/CMakeLists.txt
third_party/bezman/tests/basic_operations/operations_test.cpp
third_party/bezman/tests/bernstein_polynomials/CMakeLists.txt
third_party/bezman/tests/bernstein_polynomials/bernstein_polynomial_test.cpp
third_party/bezman/tests/composition/CMakeLists.txt
third_party/bezman/tests/composition/composition_test.cpp
third_party/bezman/tests/composition_sensitivities/CMakeLists.txt
third_party/bezman/tests/composition_sensitivities/composition_sensitivities.cpp
third_party/bezman/tests/io/CMakeLists.txt
third_party/bezman/tests/io/base64/CMakeLists.txt
third_party/bezman/tests/io/base64/base64_test.cpp
third_party/bezman/tests/mapping_test/CMakeLists.txt
third_party/bezman/tests/mapping_test/mapping_test.cpp
third_party/bezman/tests/order_and_derivation/CMakeLists.txt
third_party/bezman/tests/order_and_derivation/order_and_derivation_test.cpp
third_party/bezman/tests/point_test/CMakeLists.txt
third_party/bezman/tests/point_test/point_test.cpp
third_party/bezman/tests/rational_splines/CMakeLists.txt
third_party/bezman/tests/rational_splines/rational_splines_test.cpp
third_party/bezman/tests/spline_splitting/CMakeLists.txt
third_party/bezman/tests/spline_splitting/spline_splitting_test.cpp
third_party/bezman/tools/prepend_licence.sh
third_party/napf/CMakeLists.txt
third_party/napf/LICENSE
third_party/napf/MANIFEST.in
third_party/napf/README.md
third_party/napf/pyproject.toml
third_party/napf/setup.py
third_party/napf/.github/workflows/build_and_test.yml
third_party/napf/.github/workflows/upload_wheels.yml
third_party/napf/cmake/config.cmake.in
third_party/napf/examples/3dtree.py
third_party/napf/napf/__init__.py
third_party/napf/napf/base.py
third_party/napf/src/napf.hpp
third_party/napf/src/python/napf.cpp
third_party/napf/src/python/pykdt.hpp
third_party/napf/src/python/threadhelper.hpp
third_party/napf/src/python/classes/double_trees.cpp
third_party/napf/src/python/classes/float_trees.cpp
third_party/napf/src/python/classes/int_trees.cpp
third_party/napf/src/python/classes/long_trees.cpp
third_party/napf/tests/test_init_and_query.py
third_party/napf/third_party/nanoflann.hpp
third_party/napf/third_party/nanoflann/.clang-format
third_party/napf/third_party/nanoflann/.travis.sh
third_party/napf/third_party/nanoflann/.travis.yml
third_party/napf/third_party/nanoflann/CHANGELOG.md
third_party/napf/third_party/nanoflann/CMakeLists.txt
third_party/napf/third_party/nanoflann/COPYING
third_party/napf/third_party/nanoflann/Doxyfile
third_party/napf/third_party/nanoflann/README.md
third_party/napf/third_party/nanoflann/appveyor.yml
third_party/napf/third_party/nanoflann/.circleci/config.yml
third_party/napf/third_party/nanoflann/doc/logo.png
third_party/napf/third_party/nanoflann/doc/perf1_conv_matrix.png
third_party/napf/third_party/nanoflann/doc/perf1_conv_matrix.small.png
third_party/napf/third_party/nanoflann/doc/perf2_build_index.png
third_party/napf/third_party/nanoflann/doc/perf2_build_index.small.png
third_party/napf/third_party/nanoflann/doc/perf3_query.png
third_party/napf/third_party/nanoflann/doc/perf3_query.small.png
third_party/napf/third_party/nanoflann/doc/perf4_time_saved.png
third_party/napf/third_party/nanoflann/doc/perf4_time_saved.small.png
third_party/napf/third_party/nanoflann/doc/perf5_1e5pts_time_vs_maxleaf.png
third_party/napf/third_party/nanoflann/doc/perf5_1e5pts_time_vs_maxleaf_double.png
third_party/napf/third_party/nanoflann/doc/perf5_1e5pts_time_vs_maxleaf_real_dataset.png
third_party/napf/third_party/nanoflann/examples/CMakeLists.txt
third_party/napf/third_party/nanoflann/examples/KDTreeVectorOfVectorsAdaptor.h
third_party/napf/third_party/nanoflann/examples/SO2_adaptor_example.cpp
third_party/napf/third_party/nanoflann/examples/SO3_adaptor_example.cpp
third_party/napf/third_party/nanoflann/examples/dynamic_pointcloud_example.cpp
third_party/napf/third_party/nanoflann/examples/matrix_example.cpp
third_party/napf/third_party/nanoflann/examples/pointcloud_adaptor_example.cpp
third_party/napf/third_party/nanoflann/examples/pointcloud_custom_metric.cpp
third_party/napf/third_party/nanoflann/examples/pointcloud_custom_resultset.cpp
third_party/napf/third_party/nanoflann/examples/pointcloud_example.cpp
third_party/napf/third_party/nanoflann/examples/pointcloud_kdd_radius.cpp
third_party/napf/third_party/nanoflann/examples/saveload_example.cpp
third_party/napf/third_party/nanoflann/examples/utils.h
third_party/napf/third_party/nanoflann/examples/vector_of_vectors_example.cpp
third_party/napf/third_party/nanoflann/examples/example_with_cmake/CMakeLists.txt
third_party/napf/third_party/nanoflann/examples/example_with_cmake/pointcloud_example.cpp
third_party/napf/third_party/nanoflann/examples/example_with_pkgconfig/Makefile
third_party/napf/third_party/nanoflann/examples/example_with_pkgconfig/pointcloud_example.cpp
third_party/napf/third_party/nanoflann/examples/examples_gui/README.md
third_party/napf/third_party/nanoflann/examples/examples_gui/nanoflann_gui_example_R3/CMakeLists.txt
third_party/napf/third_party/nanoflann/examples/examples_gui/nanoflann_gui_example_R3/nanoflann_gui_example_R3.cpp
third_party/napf/third_party/nanoflann/examples/examples_gui/nanoflann_gui_example_bearings/CMakeLists.txt
third_party/napf/third_party/nanoflann/examples/examples_gui/nanoflann_gui_example_bearings/nanoflann_gui_example_bearings.cpp
third_party/napf/third_party/nanoflann/include/nanoflann.hpp
third_party/napf/third_party/nanoflann/scripts/cmake_uninstall.cmake.in
third_party/napf/third_party/nanoflann/scripts/nanoflann.pc.in
third_party/napf/third_party/nanoflann/scripts/nanoflannConfig.cmake.in
third_party/napf/third_party/nanoflann/scripts/prepare_debian.sh
third_party/napf/third_party/nanoflann/scripts/prepare_release.sh
third_party/napf/third_party/nanoflann/scripts/prepare_ubuntu_pkgs_for_ppa.sh
third_party/napf/third_party/nanoflann/tests/CMakeLists.txt
third_party/napf/third_party/nanoflann/tests/test_main.cpp
third_party/napf/third_party/nanoflann/tests/gtest-1.8.0/CMakeLists.txt
third_party/napf/third_party/nanoflann/tests/gtest-1.8.0/CONTRIBUTORS
third_party/napf/third_party/nanoflann/tests/gtest-1.8.0/README.md
third_party/napf/third_party/nanoflann/tests/gtest-1.8.0/include/gtest/gtest-death-test.h
third_party/napf/third_party/nanoflann/tests/gtest-1.8.0/include/gtest/gtest-message.h
third_party/napf/third_party/nanoflann/tests/gtest-1.8.0/include/gtest/gtest-param-test.h
third_party/napf/third_party/nanoflann/tests/gtest-1.8.0/include/gtest/gtest-param-test.h.pump
third_party/napf/third_party/nanoflann/tests/gtest-1.8.0/include/gtest/gtest-printers.h
third_party/napf/third_party/nanoflann/tests/gtest-1.8.0/include/gtest/gtest-spi.h
third_party/napf/third_party/nanoflann/tests/gtest-1.8.0/include/gtest/gtest-test-part.h
third_party/napf/third_party/nanoflann/tests/gtest-1.8.0/include/gtest/gtest-typed-test.h
third_party/napf/third_party/nanoflann/tests/gtest-1.8.0/include/gtest/gtest.h
third_party/napf/third_party/nanoflann/tests/gtest-1.8.0/include/gtest/gtest_pred_impl.h
third_party/napf/third_party/nanoflann/tests/gtest-1.8.0/include/gtest/gtest_prod.h
third_party/napf/third_party/nanoflann/tests/gtest-1.8.0/include/gtest/internal/gtest-death-test-internal.h
third_party/napf/third_party/nanoflann/tests/gtest-1.8.0/include/gtest/internal/gtest-filepath.h
third_party/napf/third_party/nanoflann/tests/gtest-1.8.0/include/gtest/internal/gtest-internal.h
third_party/napf/third_party/nanoflann/tests/gtest-1.8.0/include/gtest/internal/gtest-linked_ptr.h
third_party/napf/third_party/nanoflann/tests/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h
third_party/napf/third_party/nanoflann/tests/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h.pump
third_party/napf/third_party/nanoflann/tests/gtest-1.8.0/include/gtest/internal/gtest-param-util.h
third_party/napf/third_party/nanoflann/tests/gtest-1.8.0/include/gtest/internal/gtest-port-arch.h
third_party/napf/third_party/nanoflann/tests/gtest-1.8.0/include/gtest/internal/gtest-port.h
third_party/napf/third_party/nanoflann/tests/gtest-1.8.0/include/gtest/internal/gtest-string.h
third_party/napf/third_party/nanoflann/tests/gtest-1.8.0/include/gtest/internal/gtest-tuple.h
third_party/napf/third_party/nanoflann/tests/gtest-1.8.0/include/gtest/internal/gtest-tuple.h.pump
third_party/napf/third_party/nanoflann/tests/gtest-1.8.0/include/gtest/internal/gtest-type-util.h
third_party/napf/third_party/nanoflann/tests/gtest-1.8.0/include/gtest/internal/gtest-type-util.h.pump
third_party/napf/third_party/nanoflann/tests/gtest-1.8.0/include/gtest/internal/custom/gtest-port.h
third_party/napf/third_party/nanoflann/tests/gtest-1.8.0/include/gtest/internal/custom/gtest-printers.h
third_party/napf/third_party/nanoflann/tests/gtest-1.8.0/include/gtest/internal/custom/gtest.h
third_party/napf/third_party/nanoflann/tests/gtest-1.8.0/src/gtest-all.cc
third_party/napf/third_party/nanoflann/tests/gtest-1.8.0/src/gtest-death-test.cc
third_party/napf/third_party/nanoflann/tests/gtest-1.8.0/src/gtest-filepath.cc
third_party/napf/third_party/nanoflann/tests/gtest-1.8.0/src/gtest-internal-inl.h
third_party/napf/third_party/nanoflann/tests/gtest-1.8.0/src/gtest-port.cc
third_party/napf/third_party/nanoflann/tests/gtest-1.8.0/src/gtest-printers.cc
third_party/napf/third_party/nanoflann/tests/gtest-1.8.0/src/gtest-test-part.cc
third_party/napf/third_party/nanoflann/tests/gtest-1.8.0/src/gtest-typed-test.cc
third_party/napf/third_party/nanoflann/tests/gtest-1.8.0/src/gtest.cc
third_party/napf/third_party/nanoflann/tests/gtest-1.8.0/src/gtest_main.cc
third_party/pybind11/.appveyor.yml
third_party/pybind11/.clang-format
third_party/pybind11/.clang-tidy
third_party/pybind11/.cmake-format.yaml
third_party/pybind11/.codespell-ignore-lines
third_party/pybind11/.pre-commit-config.yaml
third_party/pybind11/.readthedocs.yml
third_party/pybind11/CMakeLists.txt
third_party/pybind11/LICENSE
third_party/pybind11/MANIFEST.in
third_party/pybind11/README.rst
third_party/pybind11/noxfile.py
third_party/pybind11/pyproject.toml
third_party/pybind11/setup.cfg
third_party/pybind11/setup.py
third_party/pybind11/.github/CODEOWNERS
third_party/pybind11/.github/CONTRIBUTING.md
third_party/pybind11/.github/dependabot.yml
third_party/pybind11/.github/labeler.yml
third_party/pybind11/.github/labeler_merged.yml
third_party/pybind11/.github/pull_request_template.md
third_party/pybind11/.github/ISSUE_TEMPLATE/bug-report.yml
third_party/pybind11/.github/ISSUE_TEMPLATE/config.yml
third_party/pybind11/.github/matchers/pylint.json
third_party/pybind11/.github/workflows/ci.yml
third_party/pybind11/.github/workflows/configure.yml
third_party/pybind11/.github/workflows/format.yml
third_party/pybind11/.github/workflows/labeler.yml
third_party/pybind11/.github/workflows/pip.yml
third_party/pybind11/.github/workflows/upstream.yml
third_party/pybind11/docs/Doxyfile
third_party/pybind11/docs/Makefile
third_party/pybind11/docs/basics.rst
third_party/pybind11/docs/benchmark.py
third_party/pybind11/docs/benchmark.rst
third_party/pybind11/docs/changelog.rst
third_party/pybind11/docs/classes.rst
third_party/pybind11/docs/compiling.rst
third_party/pybind11/docs/conf.py
third_party/pybind11/docs/faq.rst
third_party/pybind11/docs/index.rst
third_party/pybind11/docs/installing.rst
third_party/pybind11/docs/limitations.rst
third_party/pybind11/docs/pybind11-logo.png
third_party/pybind11/docs/pybind11_vs_boost_python1.png
third_party/pybind11/docs/pybind11_vs_boost_python1.svg
third_party/pybind11/docs/pybind11_vs_boost_python2.png
third_party/pybind11/docs/pybind11_vs_boost_python2.svg
third_party/pybind11/docs/reference.rst
third_party/pybind11/docs/release.rst
third_party/pybind11/docs/requirements.txt
third_party/pybind11/docs/upgrade.rst
third_party/pybind11/docs/_static/css/custom.css
third_party/pybind11/docs/advanced/classes.rst
third_party/pybind11/docs/advanced/embedding.rst
third_party/pybind11/docs/advanced/exceptions.rst
third_party/pybind11/docs/advanced/functions.rst
third_party/pybind11/docs/advanced/misc.rst
third_party/pybind11/docs/advanced/smart_ptrs.rst
third_party/pybind11/docs/advanced/cast/chrono.rst
third_party/pybind11/docs/advanced/cast/custom.rst
third_party/pybind11/docs/advanced/cast/eigen.rst
third_party/pybind11/docs/advanced/cast/functional.rst
third_party/pybind11/docs/advanced/cast/index.rst
third_party/pybind11/docs/advanced/cast/overview.rst
third_party/pybind11/docs/advanced/cast/stl.rst
third_party/pybind11/docs/advanced/cast/strings.rst
third_party/pybind11/docs/advanced/pycpp/index.rst
third_party/pybind11/docs/advanced/pycpp/numpy.rst
third_party/pybind11/docs/advanced/pycpp/object.rst
third_party/pybind11/docs/advanced/pycpp/utilities.rst
third_party/pybind11/docs/cmake/index.rst
third_party/pybind11/include/pybind11/attr.h
third_party/pybind11/include/pybind11/buffer_info.h
third_party/pybind11/include/pybind11/cast.h
third_party/pybind11/include/pybind11/chrono.h
third_party/pybind11/include/pybind11/common.h
third_party/pybind11/include/pybind11/complex.h
third_party/pybind11/include/pybind11/eigen.h
third_party/pybind11/include/pybind11/embed.h
third_party/pybind11/include/pybind11/eval.h
third_party/pybind11/include/pybind11/functional.h
third_party/pybind11/include/pybind11/gil.h
third_party/pybind11/include/pybind11/iostream.h
third_party/pybind11/include/pybind11/numpy.h
third_party/pybind11/include/pybind11/operators.h
third_party/pybind11/include/pybind11/options.h
third_party/pybind11/include/pybind11/pybind11.h
third_party/pybind11/include/pybind11/pytypes.h
third_party/pybind11/include/pybind11/stl.h
third_party/pybind11/include/pybind11/stl_bind.h
third_party/pybind11/include/pybind11/detail/class.h
third_party/pybind11/include/pybind11/detail/common.h
third_party/pybind11/include/pybind11/detail/descr.h
third_party/pybind11/include/pybind11/detail/init.h
third_party/pybind11/include/pybind11/detail/internals.h
third_party/pybind11/include/pybind11/detail/type_caster_base.h
third_party/pybind11/include/pybind11/detail/typeid.h
third_party/pybind11/include/pybind11/stl/filesystem.h
third_party/pybind11/pybind11/__init__.py
third_party/pybind11/pybind11/__main__.py
third_party/pybind11/pybind11/_version.py
third_party/pybind11/pybind11/commands.py
third_party/pybind11/pybind11/py.typed
third_party/pybind11/pybind11/setup_helpers.py
third_party/pybind11/tests/CMakeLists.txt
third_party/pybind11/tests/conftest.py
third_party/pybind11/tests/constructor_stats.h
third_party/pybind11/tests/cross_module_gil_utils.cpp
third_party/pybind11/tests/cross_module_interleaved_error_already_set.cpp
third_party/pybind11/tests/env.py
third_party/pybind11/tests/local_bindings.h
third_party/pybind11/tests/object.h
third_party/pybind11/tests/pybind11_cross_module_tests.cpp
third_party/pybind11/tests/pybind11_tests.cpp
third_party/pybind11/tests/pybind11_tests.h
third_party/pybind11/tests/pytest.ini
third_party/pybind11/tests/requirements.txt
third_party/pybind11/tests/test_async.cpp
third_party/pybind11/tests/test_async.py
third_party/pybind11/tests/test_buffers.cpp
third_party/pybind11/tests/test_buffers.py
third_party/pybind11/tests/test_builtin_casters.cpp
third_party/pybind11/tests/test_builtin_casters.py
third_party/pybind11/tests/test_call_policies.cpp
third_party/pybind11/tests/test_call_policies.py
third_party/pybind11/tests/test_callbacks.cpp
third_party/pybind11/tests/test_callbacks.py
third_party/pybind11/tests/test_chrono.cpp
third_party/pybind11/tests/test_chrono.py
third_party/pybind11/tests/test_class.cpp
third_party/pybind11/tests/test_class.py
third_party/pybind11/tests/test_const_name.cpp
third_party/pybind11/tests/test_const_name.py
third_party/pybind11/tests/test_constants_and_functions.cpp
third_party/pybind11/tests/test_constants_and_functions.py
third_party/pybind11/tests/test_copy_move.cpp
third_party/pybind11/tests/test_copy_move.py
third_party/pybind11/tests/test_custom_type_casters.cpp
third_party/pybind11/tests/test_custom_type_casters.py
third_party/pybind11/tests/test_custom_type_setup.cpp
third_party/pybind11/tests/test_custom_type_setup.py
third_party/pybind11/tests/test_docstring_options.cpp
third_party/pybind11/tests/test_docstring_options.py
third_party/pybind11/tests/test_eigen.cpp
third_party/pybind11/tests/test_eigen.py
third_party/pybind11/tests/test_enum.cpp
third_party/pybind11/tests/test_enum.py
third_party/pybind11/tests/test_eval.cpp
third_party/pybind11/tests/test_eval.py
third_party/pybind11/tests/test_eval_call.py
third_party/pybind11/tests/test_exceptions.cpp
third_party/pybind11/tests/test_exceptions.h
third_party/pybind11/tests/test_exceptions.py
third_party/pybind11/tests/test_factory_constructors.cpp
third_party/pybind11/tests/test_factory_constructors.py
third_party/pybind11/tests/test_gil_scoped.cpp
third_party/pybind11/tests/test_gil_scoped.py
third_party/pybind11/tests/test_iostream.cpp
third_party/pybind11/tests/test_iostream.py
third_party/pybind11/tests/test_kwargs_and_defaults.cpp
third_party/pybind11/tests/test_kwargs_and_defaults.py
third_party/pybind11/tests/test_local_bindings.cpp
third_party/pybind11/tests/test_local_bindings.py
third_party/pybind11/tests/test_methods_and_attributes.cpp
third_party/pybind11/tests/test_methods_and_attributes.py
third_party/pybind11/tests/test_modules.cpp
third_party/pybind11/tests/test_modules.py
third_party/pybind11/tests/test_multiple_inheritance.cpp
third_party/pybind11/tests/test_multiple_inheritance.py
third_party/pybind11/tests/test_numpy_array.cpp
third_party/pybind11/tests/test_numpy_array.py
third_party/pybind11/tests/test_numpy_dtypes.cpp
third_party/pybind11/tests/test_numpy_dtypes.py
third_party/pybind11/tests/test_numpy_vectorize.cpp
third_party/pybind11/tests/test_numpy_vectorize.py
third_party/pybind11/tests/test_opaque_types.cpp
third_party/pybind11/tests/test_opaque_types.py
third_party/pybind11/tests/test_operator_overloading.cpp
third_party/pybind11/tests/test_operator_overloading.py
third_party/pybind11/tests/test_pickling.cpp
third_party/pybind11/tests/test_pickling.py
third_party/pybind11/tests/test_pytypes.cpp
third_party/pybind11/tests/test_pytypes.py
third_party/pybind11/tests/test_sequences_and_iterators.cpp
third_party/pybind11/tests/test_sequences_and_iterators.py
third_party/pybind11/tests/test_smart_ptr.cpp
third_party/pybind11/tests/test_smart_ptr.py
third_party/pybind11/tests/test_stl.cpp
third_party/pybind11/tests/test_stl.py
third_party/pybind11/tests/test_stl_binders.cpp
third_party/pybind11/tests/test_stl_binders.py
third_party/pybind11/tests/test_tagbased_polymorphic.cpp
third_party/pybind11/tests/test_tagbased_polymorphic.py
third_party/pybind11/tests/test_thread.cpp
third_party/pybind11/tests/test_thread.py
third_party/pybind11/tests/test_union.cpp
third_party/pybind11/tests/test_union.py
third_party/pybind11/tests/test_virtual_functions.cpp
third_party/pybind11/tests/test_virtual_functions.py
third_party/pybind11/tests/valgrind-numpy-scipy.supp
third_party/pybind11/tests/valgrind-python.supp
third_party/pybind11/tests/extra_python_package/pytest.ini
third_party/pybind11/tests/extra_python_package/test_files.py
third_party/pybind11/tests/extra_setuptools/pytest.ini
third_party/pybind11/tests/extra_setuptools/test_setuphelper.py
third_party/pybind11/tests/test_cmake_build/CMakeLists.txt
third_party/pybind11/tests/test_cmake_build/embed.cpp
third_party/pybind11/tests/test_cmake_build/main.cpp
third_party/pybind11/tests/test_cmake_build/test.py
third_party/pybind11/tests/test_cmake_build/installed_embed/CMakeLists.txt
third_party/pybind11/tests/test_cmake_build/installed_function/CMakeLists.txt
third_party/pybind11/tests/test_cmake_build/installed_target/CMakeLists.txt
third_party/pybind11/tests/test_cmake_build/subdirectory_embed/CMakeLists.txt
third_party/pybind11/tests/test_cmake_build/subdirectory_function/CMakeLists.txt
third_party/pybind11/tests/test_cmake_build/subdirectory_target/CMakeLists.txt
third_party/pybind11/tests/test_embed/CMakeLists.txt
third_party/pybind11/tests/test_embed/catch.cpp
third_party/pybind11/tests/test_embed/external_module.cpp
third_party/pybind11/tests/test_embed/test_interpreter.cpp
third_party/pybind11/tests/test_embed/test_interpreter.py
third_party/pybind11/tests/test_embed/test_trampoline.py
third_party/pybind11/tools/FindCatch.cmake
third_party/pybind11/tools/FindEigen3.cmake
third_party/pybind11/tools/FindPythonLibsNew.cmake
third_party/pybind11/tools/JoinPaths.cmake
third_party/pybind11/tools/check-style.sh
third_party/pybind11/tools/cmake_uninstall.cmake.in
third_party/pybind11/tools/codespell_ignore_lines_from_errors.py
third_party/pybind11/tools/libsize.py
third_party/pybind11/tools/make_changelog.py
third_party/pybind11/tools/pybind11.pc.in
third_party/pybind11/tools/pybind11Common.cmake
third_party/pybind11/tools/pybind11Config.cmake.in
third_party/pybind11/tools/pybind11NewTools.cmake
third_party/pybind11/tools/pybind11Tools.cmake
third_party/pybind11/tools/pyproject.toml
third_party/pybind11/tools/setup_global.py.in
third_party/pybind11/tools/setup_main.py.in