rclib 0.0.4__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 (2815) hide show
  1. rclib-0.0.4/.clang-format +13 -0
  2. rclib-0.0.4/.cmake-format.yaml +3 -0
  3. rclib-0.0.4/.geminiignore +1 -0
  4. rclib-0.0.4/.github/workflows/ci.yml +96 -0
  5. rclib-0.0.4/.github/workflows/create-release-draft.yml +28 -0
  6. rclib-0.0.4/.github/workflows/docs.yml +47 -0
  7. rclib-0.0.4/.github/workflows/release.yml +67 -0
  8. rclib-0.0.4/.gitignore +115 -0
  9. rclib-0.0.4/.gitmodules +9 -0
  10. rclib-0.0.4/.pre-commit-config.yaml +85 -0
  11. rclib-0.0.4/CMakeLists.txt +34 -0
  12. rclib-0.0.4/GEMINI.md +240 -0
  13. rclib-0.0.4/LICENSE +202 -0
  14. rclib-0.0.4/PKG-INFO +311 -0
  15. rclib-0.0.4/README.md +284 -0
  16. rclib-0.0.4/benchmarks/__init__.py +1 -0
  17. rclib-0.0.4/benchmarks/benchmark_omp_threads.sh +51 -0
  18. rclib-0.0.4/benchmarks/benchmark_parallel_comparison.sh +78 -0
  19. rclib-0.0.4/benchmarks/plot_benchmark_results.py +139 -0
  20. rclib-0.0.4/benchmarks/plot_parallel_comparison.py +234 -0
  21. rclib-0.0.4/cpp_core/CMakeLists.txt +42 -0
  22. rclib-0.0.4/cpp_core/include/rclib/Model.h +27 -0
  23. rclib-0.0.4/cpp_core/include/rclib/Readout.h +11 -0
  24. rclib-0.0.4/cpp_core/include/rclib/Reservoir.h +11 -0
  25. rclib-0.0.4/cpp_core/include/rclib/readouts/LmsReadout.h +21 -0
  26. rclib-0.0.4/cpp_core/include/rclib/readouts/RidgeReadout.h +17 -0
  27. rclib-0.0.4/cpp_core/include/rclib/readouts/RlsReadout.h +29 -0
  28. rclib-0.0.4/cpp_core/include/rclib/reservoirs/NvarReservoir.h +23 -0
  29. rclib-0.0.4/cpp_core/include/rclib/reservoirs/RandomSparseReservoir.h +32 -0
  30. rclib-0.0.4/cpp_core/src/Model.cpp +267 -0
  31. rclib-0.0.4/cpp_core/src/Readout.cpp +1 -0
  32. rclib-0.0.4/cpp_core/src/Reservoir.cpp +1 -0
  33. rclib-0.0.4/cpp_core/src/readouts/LmsReadout.cpp +48 -0
  34. rclib-0.0.4/cpp_core/src/readouts/RidgeReadout.cpp +35 -0
  35. rclib-0.0.4/cpp_core/src/readouts/RlsReadout.cpp +79 -0
  36. rclib-0.0.4/cpp_core/src/reservoirs/NvarReservoir.cpp +39 -0
  37. rclib-0.0.4/cpp_core/src/reservoirs/RandomSparseReservoir.cpp +90 -0
  38. rclib-0.0.4/cpp_core/third_party/.clang-format +3 -0
  39. rclib-0.0.4/cpp_core/third_party/catch2/.bazelrc +12 -0
  40. rclib-0.0.4/cpp_core/third_party/catch2/.clang-format +45 -0
  41. rclib-0.0.4/cpp_core/third_party/catch2/.clang-tidy +82 -0
  42. rclib-0.0.4/cpp_core/third_party/catch2/.conan/build.py +94 -0
  43. rclib-0.0.4/cpp_core/third_party/catch2/.conan/test_package/CMakeLists.txt +7 -0
  44. rclib-0.0.4/cpp_core/third_party/catch2/.conan/test_package/conanfile.py +40 -0
  45. rclib-0.0.4/cpp_core/third_party/catch2/.conan/test_package/test_package.cpp +13 -0
  46. rclib-0.0.4/cpp_core/third_party/catch2/.gitattributes +22 -0
  47. rclib-0.0.4/cpp_core/third_party/catch2/.github/FUNDING.yml +2 -0
  48. rclib-0.0.4/cpp_core/third_party/catch2/.github/ISSUE_TEMPLATE/bug_report.md +29 -0
  49. rclib-0.0.4/cpp_core/third_party/catch2/.github/ISSUE_TEMPLATE/feature_request.md +14 -0
  50. rclib-0.0.4/cpp_core/third_party/catch2/.github/pull_request_template.md +28 -0
  51. rclib-0.0.4/cpp_core/third_party/catch2/.github/workflows/linux-bazel-builds.yml +24 -0
  52. rclib-0.0.4/cpp_core/third_party/catch2/.github/workflows/linux-meson-builds.yml +44 -0
  53. rclib-0.0.4/cpp_core/third_party/catch2/.github/workflows/linux-other-builds.yml +125 -0
  54. rclib-0.0.4/cpp_core/third_party/catch2/.github/workflows/linux-simple-builds.yml +105 -0
  55. rclib-0.0.4/cpp_core/third_party/catch2/.github/workflows/mac-builds.yml +32 -0
  56. rclib-0.0.4/cpp_core/third_party/catch2/.github/workflows/package-manager-builds.yaml +31 -0
  57. rclib-0.0.4/cpp_core/third_party/catch2/.github/workflows/validate-header-guards.yml +36 -0
  58. rclib-0.0.4/cpp_core/third_party/catch2/.github/workflows/windows-simple-builds.yml +31 -0
  59. rclib-0.0.4/cpp_core/third_party/catch2/.gitignore +40 -0
  60. rclib-0.0.4/cpp_core/third_party/catch2/BUILD.bazel +117 -0
  61. rclib-0.0.4/cpp_core/third_party/catch2/CMake/Catch2Config.cmake.in +9 -0
  62. rclib-0.0.4/cpp_core/third_party/catch2/CMake/CatchConfigOptions.cmake +91 -0
  63. rclib-0.0.4/cpp_core/third_party/catch2/CMake/CatchMiscFunctions.cmake +121 -0
  64. rclib-0.0.4/cpp_core/third_party/catch2/CMake/FindGcov.cmake +157 -0
  65. rclib-0.0.4/cpp_core/third_party/catch2/CMake/FindLcov.cmake +354 -0
  66. rclib-0.0.4/cpp_core/third_party/catch2/CMake/Findcodecov.cmake +258 -0
  67. rclib-0.0.4/cpp_core/third_party/catch2/CMake/catch2-with-main.pc.in +10 -0
  68. rclib-0.0.4/cpp_core/third_party/catch2/CMake/catch2.pc.in +11 -0
  69. rclib-0.0.4/cpp_core/third_party/catch2/CMake/llvm-cov-wrapper +56 -0
  70. rclib-0.0.4/cpp_core/third_party/catch2/CMakeLists.txt +230 -0
  71. rclib-0.0.4/cpp_core/third_party/catch2/CMakePresets.json +40 -0
  72. rclib-0.0.4/cpp_core/third_party/catch2/CODE_OF_CONDUCT.md +46 -0
  73. rclib-0.0.4/cpp_core/third_party/catch2/Doxyfile +2650 -0
  74. rclib-0.0.4/cpp_core/third_party/catch2/LICENSE.txt +23 -0
  75. rclib-0.0.4/cpp_core/third_party/catch2/MAINTAINERS.md +11 -0
  76. rclib-0.0.4/cpp_core/third_party/catch2/MODULE.bazel +5 -0
  77. rclib-0.0.4/cpp_core/third_party/catch2/README.md +114 -0
  78. rclib-0.0.4/cpp_core/third_party/catch2/SECURITY.md +19 -0
  79. rclib-0.0.4/cpp_core/third_party/catch2/appveyor.yml +83 -0
  80. rclib-0.0.4/cpp_core/third_party/catch2/benchmarks/CMakeLists.txt +16 -0
  81. rclib-0.0.4/cpp_core/third_party/catch2/benchmarks/assertion_listener.cpp +28 -0
  82. rclib-0.0.4/cpp_core/third_party/catch2/benchmarks/runtime_assertion_benches.cpp +27 -0
  83. rclib-0.0.4/cpp_core/third_party/catch2/codecov.yml +22 -0
  84. rclib-0.0.4/cpp_core/third_party/catch2/conanfile.py +129 -0
  85. rclib-0.0.4/cpp_core/third_party/catch2/data/artwork/catch2-c-logo.svg +105 -0
  86. rclib-0.0.4/cpp_core/third_party/catch2/data/artwork/catch2-hand-logo.svg +83 -0
  87. rclib-0.0.4/cpp_core/third_party/catch2/data/artwork/catch2-logo-full-with-background.svg +104 -0
  88. rclib-0.0.4/cpp_core/third_party/catch2/data/artwork/catch2-logo-full.svg +88 -0
  89. rclib-0.0.4/cpp_core/third_party/catch2/docs/Readme.md +44 -0
  90. rclib-0.0.4/cpp_core/third_party/catch2/docs/assertions.md +182 -0
  91. rclib-0.0.4/cpp_core/third_party/catch2/docs/benchmarks.md +251 -0
  92. rclib-0.0.4/cpp_core/third_party/catch2/docs/ci-and-misc.md +117 -0
  93. rclib-0.0.4/cpp_core/third_party/catch2/docs/cmake-integration.md +442 -0
  94. rclib-0.0.4/cpp_core/third_party/catch2/docs/command-line.md +670 -0
  95. rclib-0.0.4/cpp_core/third_party/catch2/docs/commercial-users.md +23 -0
  96. rclib-0.0.4/cpp_core/third_party/catch2/docs/comparing-floating-point-numbers.md +192 -0
  97. rclib-0.0.4/cpp_core/third_party/catch2/docs/configuration.md +337 -0
  98. rclib-0.0.4/cpp_core/third_party/catch2/docs/contributing.md +342 -0
  99. rclib-0.0.4/cpp_core/third_party/catch2/docs/deprecations.md +53 -0
  100. rclib-0.0.4/cpp_core/third_party/catch2/docs/event-listeners.md +44 -0
  101. rclib-0.0.4/cpp_core/third_party/catch2/docs/faq.md +113 -0
  102. rclib-0.0.4/cpp_core/third_party/catch2/docs/generators.md +284 -0
  103. rclib-0.0.4/cpp_core/third_party/catch2/docs/limitations.md +157 -0
  104. rclib-0.0.4/cpp_core/third_party/catch2/docs/list-of-examples.md +47 -0
  105. rclib-0.0.4/cpp_core/third_party/catch2/docs/logging.md +161 -0
  106. rclib-0.0.4/cpp_core/third_party/catch2/docs/matchers.md +476 -0
  107. rclib-0.0.4/cpp_core/third_party/catch2/docs/migrate-v2-to-v3.md +98 -0
  108. rclib-0.0.4/cpp_core/third_party/catch2/docs/opensource-users.md +159 -0
  109. rclib-0.0.4/cpp_core/third_party/catch2/docs/other-macros.md +131 -0
  110. rclib-0.0.4/cpp_core/third_party/catch2/docs/own-main.md +133 -0
  111. rclib-0.0.4/cpp_core/third_party/catch2/docs/release-notes.md +1992 -0
  112. rclib-0.0.4/cpp_core/third_party/catch2/docs/release-process.md +66 -0
  113. rclib-0.0.4/cpp_core/third_party/catch2/docs/reporter-events.md +175 -0
  114. rclib-0.0.4/cpp_core/third_party/catch2/docs/reporters.md +218 -0
  115. rclib-0.0.4/cpp_core/third_party/catch2/docs/skipping-passing-failing.md +149 -0
  116. rclib-0.0.4/cpp_core/third_party/catch2/docs/test-cases-and-sections.md +346 -0
  117. rclib-0.0.4/cpp_core/third_party/catch2/docs/test-fixtures.md +291 -0
  118. rclib-0.0.4/cpp_core/third_party/catch2/docs/thread-safety.md +229 -0
  119. rclib-0.0.4/cpp_core/third_party/catch2/docs/tostring.md +132 -0
  120. rclib-0.0.4/cpp_core/third_party/catch2/docs/tutorial.md +228 -0
  121. rclib-0.0.4/cpp_core/third_party/catch2/docs/usage-tips.md +100 -0
  122. rclib-0.0.4/cpp_core/third_party/catch2/docs/why-catch.md +59 -0
  123. rclib-0.0.4/cpp_core/third_party/catch2/examples/010-TestCase.cpp +41 -0
  124. rclib-0.0.4/cpp_core/third_party/catch2/examples/020-TestCase-1.cpp +37 -0
  125. rclib-0.0.4/cpp_core/third_party/catch2/examples/020-TestCase-2.cpp +41 -0
  126. rclib-0.0.4/cpp_core/third_party/catch2/examples/030-Asn-Require-Check.cpp +82 -0
  127. rclib-0.0.4/cpp_core/third_party/catch2/examples/100-Fix-Section.cpp +78 -0
  128. rclib-0.0.4/cpp_core/third_party/catch2/examples/110-Fix-ClassFixture.cpp +74 -0
  129. rclib-0.0.4/cpp_core/third_party/catch2/examples/111-Fix-PersistentFixture.cpp +74 -0
  130. rclib-0.0.4/cpp_core/third_party/catch2/examples/120-Bdd-ScenarioGivenWhenThen.cpp +81 -0
  131. rclib-0.0.4/cpp_core/third_party/catch2/examples/210-Evt-EventListeners.cpp +436 -0
  132. rclib-0.0.4/cpp_core/third_party/catch2/examples/231-Cfg-OutputStreams.cpp +63 -0
  133. rclib-0.0.4/cpp_core/third_party/catch2/examples/232-Cfg-CustomMain.cpp +41 -0
  134. rclib-0.0.4/cpp_core/third_party/catch2/examples/300-Gen-OwnGenerator.cpp +77 -0
  135. rclib-0.0.4/cpp_core/third_party/catch2/examples/301-Gen-MapTypeConversion.cpp +69 -0
  136. rclib-0.0.4/cpp_core/third_party/catch2/examples/302-Gen-Table.cpp +63 -0
  137. rclib-0.0.4/cpp_core/third_party/catch2/examples/310-Gen-VariablesInGenerators.cpp +43 -0
  138. rclib-0.0.4/cpp_core/third_party/catch2/examples/311-Gen-CustomCapture.cpp +51 -0
  139. rclib-0.0.4/cpp_core/third_party/catch2/examples/CMakeLists.txt +58 -0
  140. rclib-0.0.4/cpp_core/third_party/catch2/extras/Catch.cmake +318 -0
  141. rclib-0.0.4/cpp_core/third_party/catch2/extras/CatchAddTests.cmake +253 -0
  142. rclib-0.0.4/cpp_core/third_party/catch2/extras/CatchShardTests.cmake +72 -0
  143. rclib-0.0.4/cpp_core/third_party/catch2/extras/CatchShardTestsImpl.cmake +52 -0
  144. rclib-0.0.4/cpp_core/third_party/catch2/extras/ParseAndAddCatchTests.cmake +250 -0
  145. rclib-0.0.4/cpp_core/third_party/catch2/extras/catch_amalgamated.cpp +12083 -0
  146. rclib-0.0.4/cpp_core/third_party/catch2/extras/catch_amalgamated.hpp +14314 -0
  147. rclib-0.0.4/cpp_core/third_party/catch2/extras/gdbinit +16 -0
  148. rclib-0.0.4/cpp_core/third_party/catch2/extras/lldbinit +16 -0
  149. rclib-0.0.4/cpp_core/third_party/catch2/fuzzing/CMakeLists.txt +20 -0
  150. rclib-0.0.4/cpp_core/third_party/catch2/fuzzing/NullOStream.cpp +18 -0
  151. rclib-0.0.4/cpp_core/third_party/catch2/fuzzing/NullOStream.h +28 -0
  152. rclib-0.0.4/cpp_core/third_party/catch2/fuzzing/build_fuzzers.sh +33 -0
  153. rclib-0.0.4/cpp_core/third_party/catch2/fuzzing/fuzz_TestSpecParser.cpp +22 -0
  154. rclib-0.0.4/cpp_core/third_party/catch2/fuzzing/fuzz_XmlWriter.cpp +22 -0
  155. rclib-0.0.4/cpp_core/third_party/catch2/fuzzing/fuzz_textflow.cpp +53 -0
  156. rclib-0.0.4/cpp_core/third_party/catch2/mdsnippets.json +9 -0
  157. rclib-0.0.4/cpp_core/third_party/catch2/meson.build +19 -0
  158. rclib-0.0.4/cpp_core/third_party/catch2/meson_options.txt +2 -0
  159. rclib-0.0.4/cpp_core/third_party/catch2/src/CMakeLists.txt +478 -0
  160. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/benchmark/catch_benchmark.hpp +146 -0
  161. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/benchmark/catch_benchmark_all.hpp +46 -0
  162. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/benchmark/catch_chronometer.cpp +17 -0
  163. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/benchmark/catch_chronometer.hpp +77 -0
  164. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/benchmark/catch_clock.hpp +27 -0
  165. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/benchmark/catch_constructor.hpp +82 -0
  166. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/benchmark/catch_environment.hpp +29 -0
  167. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/benchmark/catch_estimate.hpp +25 -0
  168. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/benchmark/catch_execution_plan.hpp +58 -0
  169. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/benchmark/catch_optimizer.hpp +78 -0
  170. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/benchmark/catch_outlier_classification.hpp +29 -0
  171. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/benchmark/catch_sample_analysis.hpp +31 -0
  172. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/benchmark/detail/catch_analyse.cpp +85 -0
  173. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/benchmark/detail/catch_analyse.hpp +27 -0
  174. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/benchmark/detail/catch_benchmark_function.cpp +23 -0
  175. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/benchmark/detail/catch_benchmark_function.hpp +87 -0
  176. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/benchmark/detail/catch_benchmark_stats.hpp +48 -0
  177. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/benchmark/detail/catch_benchmark_stats_fwd.hpp +23 -0
  178. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/benchmark/detail/catch_complete_invoke.hpp +58 -0
  179. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/benchmark/detail/catch_estimate_clock.hpp +126 -0
  180. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/benchmark/detail/catch_measure.hpp +32 -0
  181. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/benchmark/detail/catch_repeat.hpp +36 -0
  182. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/benchmark/detail/catch_run_for_at_least.cpp +31 -0
  183. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/benchmark/detail/catch_run_for_at_least.hpp +65 -0
  184. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/benchmark/detail/catch_stats.cpp +393 -0
  185. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/benchmark/detail/catch_stats.hpp +60 -0
  186. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/benchmark/detail/catch_timing.hpp +29 -0
  187. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/catch_all.hpp +138 -0
  188. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/catch_approx.cpp +85 -0
  189. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/catch_approx.hpp +128 -0
  190. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/catch_assertion_info.hpp +28 -0
  191. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/catch_assertion_result.cpp +105 -0
  192. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/catch_assertion_result.hpp +60 -0
  193. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/catch_case_sensitive.hpp +17 -0
  194. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/catch_config.cpp +273 -0
  195. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/catch_config.hpp +157 -0
  196. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/catch_get_random_seed.cpp +18 -0
  197. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/catch_get_random_seed.hpp +18 -0
  198. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/catch_message.cpp +114 -0
  199. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/catch_message.hpp +149 -0
  200. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/catch_registry_hub.cpp +105 -0
  201. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/catch_section_info.hpp +42 -0
  202. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/catch_session.cpp +413 -0
  203. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/catch_session.hpp +70 -0
  204. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/catch_tag_alias.hpp +29 -0
  205. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/catch_tag_alias_autoregistrar.cpp +24 -0
  206. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/catch_tag_alias_autoregistrar.hpp +29 -0
  207. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/catch_template_test_macros.hpp +124 -0
  208. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/catch_test_case_info.cpp +262 -0
  209. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/catch_test_case_info.hpp +142 -0
  210. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/catch_test_macros.hpp +243 -0
  211. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/catch_test_run_info.hpp +22 -0
  212. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/catch_test_spec.cpp +141 -0
  213. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/catch_test_spec.hpp +119 -0
  214. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/catch_timer.cpp +37 -0
  215. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/catch_timer.hpp +27 -0
  216. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/catch_tostring.cpp +264 -0
  217. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/catch_tostring.hpp +682 -0
  218. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/catch_totals.cpp +65 -0
  219. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/catch_totals.hpp +41 -0
  220. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/catch_translate_exception.cpp +20 -0
  221. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/catch_translate_exception.hpp +88 -0
  222. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/catch_user_config.hpp.in +247 -0
  223. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/catch_version.cpp +43 -0
  224. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/catch_version.hpp +39 -0
  225. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/catch_version_macros.hpp +15 -0
  226. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/generators/catch_generator_exception.cpp +17 -0
  227. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/generators/catch_generator_exception.hpp +31 -0
  228. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/generators/catch_generators.cpp +42 -0
  229. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/generators/catch_generators.hpp +244 -0
  230. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/generators/catch_generators_adapters.hpp +242 -0
  231. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/generators/catch_generators_all.hpp +30 -0
  232. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/generators/catch_generators_random.cpp +41 -0
  233. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/generators/catch_generators_random.hpp +107 -0
  234. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/generators/catch_generators_range.hpp +111 -0
  235. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/interfaces/catch_interfaces_all.hpp +37 -0
  236. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/interfaces/catch_interfaces_capture.cpp +20 -0
  237. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/interfaces/catch_interfaces_capture.hpp +118 -0
  238. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/interfaces/catch_interfaces_config.cpp +13 -0
  239. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/interfaces/catch_interfaces_config.hpp +99 -0
  240. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/interfaces/catch_interfaces_enum_values_registry.hpp +47 -0
  241. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/interfaces/catch_interfaces_exception.cpp +14 -0
  242. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/interfaces/catch_interfaces_exception.hpp +36 -0
  243. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/interfaces/catch_interfaces_generatortracker.cpp +32 -0
  244. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/interfaces/catch_interfaces_generatortracker.hpp +90 -0
  245. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/interfaces/catch_interfaces_registry_hub.cpp +14 -0
  246. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/interfaces/catch_interfaces_registry_hub.hpp +66 -0
  247. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/interfaces/catch_interfaces_reporter.cpp +93 -0
  248. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/interfaces/catch_interfaces_reporter.hpp +227 -0
  249. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/interfaces/catch_interfaces_reporter_factory.cpp +14 -0
  250. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/interfaces/catch_interfaces_reporter_factory.hpp +45 -0
  251. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/interfaces/catch_interfaces_tag_alias_registry.hpp +29 -0
  252. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/interfaces/catch_interfaces_test_invoker.hpp +23 -0
  253. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/interfaces/catch_interfaces_testcase.cpp +13 -0
  254. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/interfaces/catch_interfaces_testcase.hpp +30 -0
  255. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_assertion_handler.cpp +82 -0
  256. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_assertion_handler.hpp +68 -0
  257. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_case_insensitive_comparisons.cpp +35 -0
  258. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_case_insensitive_comparisons.hpp +30 -0
  259. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_clara.cpp +464 -0
  260. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_clara.hpp +748 -0
  261. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_commandline.cpp +317 -0
  262. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_commandline.hpp +21 -0
  263. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_compare_traits.hpp +75 -0
  264. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_compiler_capabilities.hpp +467 -0
  265. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_config_android_logwrite.hpp +33 -0
  266. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_config_counter.hpp +34 -0
  267. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_config_prefix_messages.hpp +29 -0
  268. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_config_static_analysis_support.hpp +34 -0
  269. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_config_uncaught_exceptions.hpp +46 -0
  270. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_config_wchar.hpp +35 -0
  271. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_console_colour.cpp +286 -0
  272. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_console_colour.hpp +141 -0
  273. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_console_width.hpp +19 -0
  274. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_container_nonmembers.hpp +73 -0
  275. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_context.cpp +24 -0
  276. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_context.hpp +47 -0
  277. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_debug_console.cpp +45 -0
  278. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_debug_console.hpp +17 -0
  279. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_debugger.cpp +120 -0
  280. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_debugger.hpp +78 -0
  281. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_decomposer.cpp +28 -0
  282. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_decomposer.hpp +467 -0
  283. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_deprecation_macro.hpp +19 -0
  284. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_enforce.cpp +41 -0
  285. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_enforce.hpp +54 -0
  286. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_enum_values_registry.cpp +73 -0
  287. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_enum_values_registry.hpp +36 -0
  288. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_errno_guard.cpp +16 -0
  289. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_errno_guard.hpp +27 -0
  290. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_exception_translator_registry.cpp +87 -0
  291. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_exception_translator_registry.hpp +29 -0
  292. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_fatal_condition_handler.cpp +248 -0
  293. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_fatal_condition_handler.hpp +66 -0
  294. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_floating_point_helpers.cpp +43 -0
  295. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_floating_point_helpers.hpp +108 -0
  296. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_getenv.cpp +37 -0
  297. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_getenv.hpp +20 -0
  298. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_is_permutation.hpp +141 -0
  299. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_istream.cpp +152 -0
  300. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_istream.hpp +52 -0
  301. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_jsonwriter.cpp +165 -0
  302. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_jsonwriter.hpp +120 -0
  303. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_lazy_expr.cpp +29 -0
  304. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_lazy_expr.hpp +40 -0
  305. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_leak_detector.cpp +38 -0
  306. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_leak_detector.hpp +19 -0
  307. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_list.cpp +120 -0
  308. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_list.hpp +43 -0
  309. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_logical_traits.hpp +44 -0
  310. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_main.cpp +39 -0
  311. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_message_info.cpp +26 -0
  312. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_message_info.hpp +46 -0
  313. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_meta.hpp +47 -0
  314. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_move_and_forward.hpp +19 -0
  315. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_noncopyable.hpp +29 -0
  316. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_optional.hpp +117 -0
  317. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_output_redirect.cpp +339 -0
  318. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_output_redirect.hpp +77 -0
  319. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_parse_numbers.cpp +52 -0
  320. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_parse_numbers.hpp +26 -0
  321. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_platform.hpp +43 -0
  322. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_polyfills.cpp +42 -0
  323. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_polyfills.hpp +21 -0
  324. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_preprocessor.hpp +247 -0
  325. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_preprocessor_internal_stringify.hpp +19 -0
  326. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_preprocessor_remove_parens.hpp +19 -0
  327. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_random_floating_point_helpers.hpp +94 -0
  328. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_random_integer_helpers.hpp +224 -0
  329. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_random_number_generator.cpp +78 -0
  330. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_random_number_generator.hpp +59 -0
  331. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_random_seed_generation.cpp +35 -0
  332. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_random_seed_generation.hpp +26 -0
  333. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_reporter_registry.cpp +91 -0
  334. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_reporter_registry.hpp +55 -0
  335. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_reporter_spec_parser.cpp +173 -0
  336. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_reporter_spec_parser.hpp +85 -0
  337. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_result_type.hpp +66 -0
  338. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_reusable_string_stream.cpp +70 -0
  339. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_reusable_string_stream.hpp +57 -0
  340. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_run_context.cpp +842 -0
  341. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_run_context.hpp +167 -0
  342. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_section.cpp +60 -0
  343. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_section.hpp +104 -0
  344. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_sharding.hpp +40 -0
  345. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_singletons.cpp +36 -0
  346. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_singletons.hpp +45 -0
  347. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_source_line_info.cpp +33 -0
  348. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_source_line_info.hpp +37 -0
  349. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_startup_exception_registry.cpp +29 -0
  350. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_startup_exception_registry.hpp +29 -0
  351. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_stdstreams.cpp +24 -0
  352. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_stdstreams.hpp +22 -0
  353. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_stream_end_stop.hpp +30 -0
  354. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_string_manip.cpp +116 -0
  355. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_string_manip.hpp +61 -0
  356. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_stringref.cpp +65 -0
  357. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_stringref.hpp +123 -0
  358. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_tag_alias_registry.cpp +54 -0
  359. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_tag_alias_registry.hpp +33 -0
  360. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_template_test_registry.hpp +337 -0
  361. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_test_case_info_hasher.cpp +39 -0
  362. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_test_case_info_hasher.hpp +29 -0
  363. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_test_case_registry_impl.cpp +153 -0
  364. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_test_case_registry_impl.hpp +59 -0
  365. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_test_case_tracker.cpp +239 -0
  366. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_test_case_tracker.hpp +244 -0
  367. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_test_failure_exception.cpp +31 -0
  368. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_test_failure_exception.hpp +34 -0
  369. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_test_macro_impl.hpp +155 -0
  370. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_test_registry.cpp +84 -0
  371. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_test_registry.hpp +222 -0
  372. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_test_spec_parser.cpp +239 -0
  373. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_test_spec_parser.hpp +81 -0
  374. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_textflow.cpp +379 -0
  375. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_textflow.hpp +298 -0
  376. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_thread_support.hpp +49 -0
  377. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_to_string.hpp +29 -0
  378. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_uncaught_exceptions.cpp +25 -0
  379. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_uncaught_exceptions.hpp +15 -0
  380. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_uniform_floating_point_distribution.hpp +131 -0
  381. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_uniform_integer_distribution.hpp +108 -0
  382. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_unique_name.hpp +20 -0
  383. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_unique_ptr.hpp +118 -0
  384. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_unreachable.hpp +56 -0
  385. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_void_type.hpp +25 -0
  386. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_wildcard_pattern.cpp +47 -0
  387. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_wildcard_pattern.hpp +38 -0
  388. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_windows_h_proxy.hpp +28 -0
  389. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_xmlwriter.cpp +344 -0
  390. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/internal/catch_xmlwriter.hpp +163 -0
  391. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/matchers/catch_matchers.cpp +25 -0
  392. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/matchers/catch_matchers.hpp +237 -0
  393. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/matchers/catch_matchers_all.hpp +36 -0
  394. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/matchers/catch_matchers_container_properties.cpp +34 -0
  395. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/matchers/catch_matchers_container_properties.hpp +90 -0
  396. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/matchers/catch_matchers_contains.hpp +102 -0
  397. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/matchers/catch_matchers_exception.cpp +26 -0
  398. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/matchers/catch_matchers_exception.hpp +61 -0
  399. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/matchers/catch_matchers_floating_point.cpp +226 -0
  400. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/matchers/catch_matchers_floating_point.hpp +94 -0
  401. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/matchers/catch_matchers_predicate.cpp +17 -0
  402. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/matchers/catch_matchers_predicate.hpp +59 -0
  403. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/matchers/catch_matchers_quantifiers.cpp +24 -0
  404. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/matchers/catch_matchers_quantifiers.hpp +165 -0
  405. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/matchers/catch_matchers_range_equals.hpp +160 -0
  406. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/matchers/catch_matchers_string.cpp +114 -0
  407. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/matchers/catch_matchers_string.hpp +85 -0
  408. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/matchers/catch_matchers_templated.cpp +41 -0
  409. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/matchers/catch_matchers_templated.hpp +296 -0
  410. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/matchers/catch_matchers_vector.hpp +194 -0
  411. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/matchers/internal/catch_matchers_impl.cpp +25 -0
  412. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/matchers/internal/catch_matchers_impl.hpp +109 -0
  413. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/meson.build +402 -0
  414. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/reporters/catch_reporter_automake.cpp +37 -0
  415. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/reporters/catch_reporter_automake.hpp +40 -0
  416. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/reporters/catch_reporter_common_base.cpp +49 -0
  417. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/reporters/catch_reporter_common_base.hpp +79 -0
  418. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/reporters/catch_reporter_compact.cpp +255 -0
  419. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/reporters/catch_reporter_compact.hpp +42 -0
  420. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/reporters/catch_reporter_console.cpp +670 -0
  421. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/reporters/catch_reporter_console.hpp +65 -0
  422. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/reporters/catch_reporter_cumulative_base.cpp +158 -0
  423. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/reporters/catch_reporter_cumulative_base.hpp +151 -0
  424. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/reporters/catch_reporter_event_listener.cpp +40 -0
  425. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/reporters/catch_reporter_event_listener.hpp +60 -0
  426. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/reporters/catch_reporter_helpers.cpp +364 -0
  427. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/reporters/catch_reporter_helpers.hpp +95 -0
  428. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/reporters/catch_reporter_json.cpp +373 -0
  429. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/reporters/catch_reporter_json.hpp +94 -0
  430. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/reporters/catch_reporter_junit.cpp +310 -0
  431. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/reporters/catch_reporter_junit.hpp +56 -0
  432. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/reporters/catch_reporter_multi.cpp +199 -0
  433. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/reporters/catch_reporter_multi.hpp +77 -0
  434. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/reporters/catch_reporter_registrars.cpp +36 -0
  435. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/reporters/catch_reporter_registrars.hpp +133 -0
  436. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/reporters/catch_reporter_sonarqube.cpp +162 -0
  437. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/reporters/catch_reporter_sonarqube.hpp +60 -0
  438. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/reporters/catch_reporter_streaming_base.cpp +23 -0
  439. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/reporters/catch_reporter_streaming_base.hpp +73 -0
  440. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/reporters/catch_reporter_tap.cpp +229 -0
  441. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/reporters/catch_reporter_tap.hpp +43 -0
  442. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/reporters/catch_reporter_teamcity.cpp +177 -0
  443. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/reporters/catch_reporter_teamcity.hpp +67 -0
  444. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/reporters/catch_reporter_xml.cpp +332 -0
  445. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/reporters/catch_reporter_xml.hpp +64 -0
  446. rclib-0.0.4/cpp_core/third_party/catch2/src/catch2/reporters/catch_reporters_all.hpp +41 -0
  447. rclib-0.0.4/cpp_core/third_party/catch2/tests/BUILD.bazel +86 -0
  448. rclib-0.0.4/cpp_core/third_party/catch2/tests/CMakeLists.txt +699 -0
  449. rclib-0.0.4/cpp_core/third_party/catch2/tests/ExtraTests/CMakeLists.txt +555 -0
  450. rclib-0.0.4/cpp_core/third_party/catch2/tests/ExtraTests/ToDo.txt +10 -0
  451. rclib-0.0.4/cpp_core/third_party/catch2/tests/ExtraTests/X01-PrefixedMacros.cpp +97 -0
  452. rclib-0.0.4/cpp_core/third_party/catch2/tests/ExtraTests/X02-DisabledMacros.cpp +79 -0
  453. rclib-0.0.4/cpp_core/third_party/catch2/tests/ExtraTests/X03-DisabledExceptions-DefaultHandler.cpp +39 -0
  454. rclib-0.0.4/cpp_core/third_party/catch2/tests/ExtraTests/X04-DisabledExceptions-CustomHandler.cpp +40 -0
  455. rclib-0.0.4/cpp_core/third_party/catch2/tests/ExtraTests/X05-DeferredStaticChecks.cpp +21 -0
  456. rclib-0.0.4/cpp_core/third_party/catch2/tests/ExtraTests/X10-FallbackStringifier.cpp +35 -0
  457. rclib-0.0.4/cpp_core/third_party/catch2/tests/ExtraTests/X11-DisableStringification.cpp +27 -0
  458. rclib-0.0.4/cpp_core/third_party/catch2/tests/ExtraTests/X12-CustomDebugBreakMacro.cpp +26 -0
  459. rclib-0.0.4/cpp_core/third_party/catch2/tests/ExtraTests/X20-AssertionStartingEventGoesBeforeAssertionIsEvaluated.cpp +77 -0
  460. rclib-0.0.4/cpp_core/third_party/catch2/tests/ExtraTests/X21-PartialTestCaseEvents.cpp +74 -0
  461. rclib-0.0.4/cpp_core/third_party/catch2/tests/ExtraTests/X22-BenchmarksInCumulativeReporter.cpp +79 -0
  462. rclib-0.0.4/cpp_core/third_party/catch2/tests/ExtraTests/X23-CasingInReporterNames.cpp +41 -0
  463. rclib-0.0.4/cpp_core/third_party/catch2/tests/ExtraTests/X24-ListenerStdoutCaptureInMultireporter.cpp +40 -0
  464. rclib-0.0.4/cpp_core/third_party/catch2/tests/ExtraTests/X25-ListenerCanAskForCapturedStdout.cpp +47 -0
  465. rclib-0.0.4/cpp_core/third_party/catch2/tests/ExtraTests/X26-ReporterPreferencesForPassingAssertionsIsRespected.cpp +52 -0
  466. rclib-0.0.4/cpp_core/third_party/catch2/tests/ExtraTests/X27-CapturedStdoutInTestCaseEvents.cpp +82 -0
  467. rclib-0.0.4/cpp_core/third_party/catch2/tests/ExtraTests/X28-ListenersGetEventsBeforeReporters.cpp +99 -0
  468. rclib-0.0.4/cpp_core/third_party/catch2/tests/ExtraTests/X29-CustomArgumentsForReporters.cpp +60 -0
  469. rclib-0.0.4/cpp_core/third_party/catch2/tests/ExtraTests/X30-BazelReporter.cpp +17 -0
  470. rclib-0.0.4/cpp_core/third_party/catch2/tests/ExtraTests/X31-DuplicatedTestCases.cpp +16 -0
  471. rclib-0.0.4/cpp_core/third_party/catch2/tests/ExtraTests/X32-DuplicatedTestCasesDifferentTags.cpp +17 -0
  472. rclib-0.0.4/cpp_core/third_party/catch2/tests/ExtraTests/X33-DuplicatedTestCaseMethods.cpp +22 -0
  473. rclib-0.0.4/cpp_core/third_party/catch2/tests/ExtraTests/X34-DuplicatedTestCaseMethodsDifferentFixtures.cpp +27 -0
  474. rclib-0.0.4/cpp_core/third_party/catch2/tests/ExtraTests/X35-DuplicatedReporterNames.cpp +31 -0
  475. rclib-0.0.4/cpp_core/third_party/catch2/tests/ExtraTests/X36-ReportingCrashWithJunitReporter.cpp +32 -0
  476. rclib-0.0.4/cpp_core/third_party/catch2/tests/ExtraTests/X40-QuickExit.cpp +28 -0
  477. rclib-0.0.4/cpp_core/third_party/catch2/tests/ExtraTests/X90-WindowsHeaderInclusion.cpp +21 -0
  478. rclib-0.0.4/cpp_core/third_party/catch2/tests/ExtraTests/X91-AmalgamatedCatch.cpp +38 -0
  479. rclib-0.0.4/cpp_core/third_party/catch2/tests/ExtraTests/X92-NoTests.cpp +11 -0
  480. rclib-0.0.4/cpp_core/third_party/catch2/tests/ExtraTests/X93-AllSkipped.cpp +16 -0
  481. rclib-0.0.4/cpp_core/third_party/catch2/tests/SelfTest/Baselines/automake.std.approved.txt +168 -0
  482. rclib-0.0.4/cpp_core/third_party/catch2/tests/SelfTest/Baselines/automake.sw.approved.txt +446 -0
  483. rclib-0.0.4/cpp_core/third_party/catch2/tests/SelfTest/Baselines/automake.sw.multi.approved.txt +435 -0
  484. rclib-0.0.4/cpp_core/third_party/catch2/tests/SelfTest/Baselines/compact.sw.approved.txt +2894 -0
  485. rclib-0.0.4/cpp_core/third_party/catch2/tests/SelfTest/Baselines/compact.sw.multi.approved.txt +2883 -0
  486. rclib-0.0.4/cpp_core/third_party/catch2/tests/SelfTest/Baselines/console.std.approved.txt +1724 -0
  487. rclib-0.0.4/cpp_core/third_party/catch2/tests/SelfTest/Baselines/console.sw.approved.txt +19300 -0
  488. rclib-0.0.4/cpp_core/third_party/catch2/tests/SelfTest/Baselines/console.sw.multi.approved.txt +19289 -0
  489. rclib-0.0.4/cpp_core/third_party/catch2/tests/SelfTest/Baselines/console.swa4.approved.txt +973 -0
  490. rclib-0.0.4/cpp_core/third_party/catch2/tests/SelfTest/Baselines/default.sw.multi.approved.txt +11 -0
  491. rclib-0.0.4/cpp_core/third_party/catch2/tests/SelfTest/Baselines/junit.sw.approved.txt +2410 -0
  492. rclib-0.0.4/cpp_core/third_party/catch2/tests/SelfTest/Baselines/junit.sw.multi.approved.txt +2409 -0
  493. rclib-0.0.4/cpp_core/third_party/catch2/tests/SelfTest/Baselines/sonarqube.sw.approved.txt +2419 -0
  494. rclib-0.0.4/cpp_core/third_party/catch2/tests/SelfTest/Baselines/sonarqube.sw.multi.approved.txt +2418 -0
  495. rclib-0.0.4/cpp_core/third_party/catch2/tests/SelfTest/Baselines/tap.sw.approved.txt +4631 -0
  496. rclib-0.0.4/cpp_core/third_party/catch2/tests/SelfTest/Baselines/tap.sw.multi.approved.txt +4620 -0
  497. rclib-0.0.4/cpp_core/third_party/catch2/tests/SelfTest/Baselines/teamcity.sw.approved.txt +1068 -0
  498. rclib-0.0.4/cpp_core/third_party/catch2/tests/SelfTest/Baselines/teamcity.sw.multi.approved.txt +1067 -0
  499. rclib-0.0.4/cpp_core/third_party/catch2/tests/SelfTest/Baselines/xml.sw.approved.txt +22329 -0
  500. rclib-0.0.4/cpp_core/third_party/catch2/tests/SelfTest/Baselines/xml.sw.multi.approved.txt +22328 -0
  501. rclib-0.0.4/cpp_core/third_party/catch2/tests/SelfTest/IntrospectiveTests/Algorithms.tests.cpp +94 -0
  502. rclib-0.0.4/cpp_core/third_party/catch2/tests/SelfTest/IntrospectiveTests/AssertionHandler.tests.cpp +42 -0
  503. rclib-0.0.4/cpp_core/third_party/catch2/tests/SelfTest/IntrospectiveTests/Clara.tests.cpp +88 -0
  504. rclib-0.0.4/cpp_core/third_party/catch2/tests/SelfTest/IntrospectiveTests/CmdLine.tests.cpp +467 -0
  505. rclib-0.0.4/cpp_core/third_party/catch2/tests/SelfTest/IntrospectiveTests/CmdLineHelpers.tests.cpp +111 -0
  506. rclib-0.0.4/cpp_core/third_party/catch2/tests/SelfTest/IntrospectiveTests/ColourImpl.tests.cpp +64 -0
  507. rclib-0.0.4/cpp_core/third_party/catch2/tests/SelfTest/IntrospectiveTests/Details.tests.cpp +172 -0
  508. rclib-0.0.4/cpp_core/third_party/catch2/tests/SelfTest/IntrospectiveTests/FloatingPoint.tests.cpp +139 -0
  509. rclib-0.0.4/cpp_core/third_party/catch2/tests/SelfTest/IntrospectiveTests/GeneratorsImpl.tests.cpp +588 -0
  510. rclib-0.0.4/cpp_core/third_party/catch2/tests/SelfTest/IntrospectiveTests/Integer.tests.cpp +224 -0
  511. rclib-0.0.4/cpp_core/third_party/catch2/tests/SelfTest/IntrospectiveTests/InternalBenchmark.tests.cpp +455 -0
  512. rclib-0.0.4/cpp_core/third_party/catch2/tests/SelfTest/IntrospectiveTests/Json.tests.cpp +178 -0
  513. rclib-0.0.4/cpp_core/third_party/catch2/tests/SelfTest/IntrospectiveTests/Parse.tests.cpp +38 -0
  514. rclib-0.0.4/cpp_core/third_party/catch2/tests/SelfTest/IntrospectiveTests/PartTracker.tests.cpp +254 -0
  515. rclib-0.0.4/cpp_core/third_party/catch2/tests/SelfTest/IntrospectiveTests/RandomNumberGeneration.tests.cpp +609 -0
  516. rclib-0.0.4/cpp_core/third_party/catch2/tests/SelfTest/IntrospectiveTests/Reporters.tests.cpp +330 -0
  517. rclib-0.0.4/cpp_core/third_party/catch2/tests/SelfTest/IntrospectiveTests/Sharding.tests.cpp +45 -0
  518. rclib-0.0.4/cpp_core/third_party/catch2/tests/SelfTest/IntrospectiveTests/Stream.tests.cpp +32 -0
  519. rclib-0.0.4/cpp_core/third_party/catch2/tests/SelfTest/IntrospectiveTests/String.tests.cpp +212 -0
  520. rclib-0.0.4/cpp_core/third_party/catch2/tests/SelfTest/IntrospectiveTests/StringManip.tests.cpp +94 -0
  521. rclib-0.0.4/cpp_core/third_party/catch2/tests/SelfTest/IntrospectiveTests/Tag.tests.cpp +117 -0
  522. rclib-0.0.4/cpp_core/third_party/catch2/tests/SelfTest/IntrospectiveTests/TestCaseInfoHasher.tests.cpp +72 -0
  523. rclib-0.0.4/cpp_core/third_party/catch2/tests/SelfTest/IntrospectiveTests/TestSpec.tests.cpp +365 -0
  524. rclib-0.0.4/cpp_core/third_party/catch2/tests/SelfTest/IntrospectiveTests/TestSpecParser.tests.cpp +55 -0
  525. rclib-0.0.4/cpp_core/third_party/catch2/tests/SelfTest/IntrospectiveTests/TextFlow.tests.cpp +400 -0
  526. rclib-0.0.4/cpp_core/third_party/catch2/tests/SelfTest/IntrospectiveTests/ToString.tests.cpp +166 -0
  527. rclib-0.0.4/cpp_core/third_party/catch2/tests/SelfTest/IntrospectiveTests/Traits.tests.cpp +45 -0
  528. rclib-0.0.4/cpp_core/third_party/catch2/tests/SelfTest/IntrospectiveTests/UniquePtr.tests.cpp +141 -0
  529. rclib-0.0.4/cpp_core/third_party/catch2/tests/SelfTest/IntrospectiveTests/Xml.tests.cpp +203 -0
  530. rclib-0.0.4/cpp_core/third_party/catch2/tests/SelfTest/Misc/invalid-test-names.input +1 -0
  531. rclib-0.0.4/cpp_core/third_party/catch2/tests/SelfTest/Misc/plain-old-tests.input +2 -0
  532. rclib-0.0.4/cpp_core/third_party/catch2/tests/SelfTest/Misc/special-characters-in-file.input +1 -0
  533. rclib-0.0.4/cpp_core/third_party/catch2/tests/SelfTest/TestRegistrations.cpp +181 -0
  534. rclib-0.0.4/cpp_core/third_party/catch2/tests/SelfTest/TimingTests/Sleep.tests.cpp +24 -0
  535. rclib-0.0.4/cpp_core/third_party/catch2/tests/SelfTest/UsageTests/Approx.tests.cpp +218 -0
  536. rclib-0.0.4/cpp_core/third_party/catch2/tests/SelfTest/UsageTests/BDD.tests.cpp +106 -0
  537. rclib-0.0.4/cpp_core/third_party/catch2/tests/SelfTest/UsageTests/Benchmark.tests.cpp +173 -0
  538. rclib-0.0.4/cpp_core/third_party/catch2/tests/SelfTest/UsageTests/Class.tests.cpp +159 -0
  539. rclib-0.0.4/cpp_core/third_party/catch2/tests/SelfTest/UsageTests/Compilation.tests.cpp +542 -0
  540. rclib-0.0.4/cpp_core/third_party/catch2/tests/SelfTest/UsageTests/Condition.tests.cpp +334 -0
  541. rclib-0.0.4/cpp_core/third_party/catch2/tests/SelfTest/UsageTests/Decomposition.tests.cpp +41 -0
  542. rclib-0.0.4/cpp_core/third_party/catch2/tests/SelfTest/UsageTests/EnumToString.tests.cpp +108 -0
  543. rclib-0.0.4/cpp_core/third_party/catch2/tests/SelfTest/UsageTests/Exception.tests.cpp +204 -0
  544. rclib-0.0.4/cpp_core/third_party/catch2/tests/SelfTest/UsageTests/Generators.tests.cpp +323 -0
  545. rclib-0.0.4/cpp_core/third_party/catch2/tests/SelfTest/UsageTests/Matchers.tests.cpp +1144 -0
  546. rclib-0.0.4/cpp_core/third_party/catch2/tests/SelfTest/UsageTests/MatchersRanges.tests.cpp +936 -0
  547. rclib-0.0.4/cpp_core/third_party/catch2/tests/SelfTest/UsageTests/Message.tests.cpp +362 -0
  548. rclib-0.0.4/cpp_core/third_party/catch2/tests/SelfTest/UsageTests/Misc.tests.cpp +576 -0
  549. rclib-0.0.4/cpp_core/third_party/catch2/tests/SelfTest/UsageTests/Skip.tests.cpp +100 -0
  550. rclib-0.0.4/cpp_core/third_party/catch2/tests/SelfTest/UsageTests/ToStringByte.tests.cpp +23 -0
  551. rclib-0.0.4/cpp_core/third_party/catch2/tests/SelfTest/UsageTests/ToStringChrono.tests.cpp +57 -0
  552. rclib-0.0.4/cpp_core/third_party/catch2/tests/SelfTest/UsageTests/ToStringGeneral.tests.cpp +200 -0
  553. rclib-0.0.4/cpp_core/third_party/catch2/tests/SelfTest/UsageTests/ToStringOptional.tests.cpp +35 -0
  554. rclib-0.0.4/cpp_core/third_party/catch2/tests/SelfTest/UsageTests/ToStringPair.tests.cpp +38 -0
  555. rclib-0.0.4/cpp_core/third_party/catch2/tests/SelfTest/UsageTests/ToStringTuple.tests.cpp +54 -0
  556. rclib-0.0.4/cpp_core/third_party/catch2/tests/SelfTest/UsageTests/ToStringVariant.tests.cpp +99 -0
  557. rclib-0.0.4/cpp_core/third_party/catch2/tests/SelfTest/UsageTests/ToStringVector.tests.cpp +94 -0
  558. rclib-0.0.4/cpp_core/third_party/catch2/tests/SelfTest/UsageTests/ToStringWhich.tests.cpp +186 -0
  559. rclib-0.0.4/cpp_core/third_party/catch2/tests/SelfTest/UsageTests/Tricky.tests.cpp +380 -0
  560. rclib-0.0.4/cpp_core/third_party/catch2/tests/SelfTest/UsageTests/VariadicMacros.tests.cpp +29 -0
  561. rclib-0.0.4/cpp_core/third_party/catch2/tests/SelfTest/helpers/parse_test_spec.cpp +22 -0
  562. rclib-0.0.4/cpp_core/third_party/catch2/tests/SelfTest/helpers/parse_test_spec.hpp +20 -0
  563. rclib-0.0.4/cpp_core/third_party/catch2/tests/SelfTest/helpers/range_test_helpers.hpp +210 -0
  564. rclib-0.0.4/cpp_core/third_party/catch2/tests/SelfTest/helpers/type_with_lit_0_comparisons.hpp +55 -0
  565. rclib-0.0.4/cpp_core/third_party/catch2/tests/TestScripts/ConfigureTestsCommon.py +75 -0
  566. rclib-0.0.4/cpp_core/third_party/catch2/tests/TestScripts/DiscoverTests/CMakeLists.txt +23 -0
  567. rclib-0.0.4/cpp_core/third_party/catch2/tests/TestScripts/DiscoverTests/VerifyRegistration.py +175 -0
  568. rclib-0.0.4/cpp_core/third_party/catch2/tests/TestScripts/DiscoverTests/register-tests.cpp +23 -0
  569. rclib-0.0.4/cpp_core/third_party/catch2/tests/TestScripts/testBazelExitGuardFile.py +88 -0
  570. rclib-0.0.4/cpp_core/third_party/catch2/tests/TestScripts/testBazelReporter.py +104 -0
  571. rclib-0.0.4/cpp_core/third_party/catch2/tests/TestScripts/testBazelSharding.py +80 -0
  572. rclib-0.0.4/cpp_core/third_party/catch2/tests/TestScripts/testConfigureDefaultReporter.py +50 -0
  573. rclib-0.0.4/cpp_core/third_party/catch2/tests/TestScripts/testConfigureDisable.py +48 -0
  574. rclib-0.0.4/cpp_core/third_party/catch2/tests/TestScripts/testConfigureDisableStringification.py +44 -0
  575. rclib-0.0.4/cpp_core/third_party/catch2/tests/TestScripts/testConfigureExperimentalRedirect.py +49 -0
  576. rclib-0.0.4/cpp_core/third_party/catch2/tests/TestScripts/testPartialTestCaseEvent.py +79 -0
  577. rclib-0.0.4/cpp_core/third_party/catch2/tests/TestScripts/testRandomOrder.py +77 -0
  578. rclib-0.0.4/cpp_core/third_party/catch2/tests/TestScripts/testSharding.py +165 -0
  579. rclib-0.0.4/cpp_core/third_party/catch2/tests/meson.build +77 -0
  580. rclib-0.0.4/cpp_core/third_party/catch2/third_party/clara.hpp +1267 -0
  581. rclib-0.0.4/cpp_core/third_party/catch2/tools/misc/CMakeLists.txt +8 -0
  582. rclib-0.0.4/cpp_core/third_party/catch2/tools/misc/appveyorBuildConfigurationScript.bat +21 -0
  583. rclib-0.0.4/cpp_core/third_party/catch2/tools/misc/appveyorMergeCoverageScript.py +9 -0
  584. rclib-0.0.4/cpp_core/third_party/catch2/tools/misc/appveyorTestRunScript.bat +17 -0
  585. rclib-0.0.4/cpp_core/third_party/catch2/tools/misc/coverage-helper.cpp +142 -0
  586. rclib-0.0.4/cpp_core/third_party/catch2/tools/misc/installOpenCppCoverage.ps1 +19 -0
  587. rclib-0.0.4/cpp_core/third_party/catch2/tools/scripts/approvalTests.py +243 -0
  588. rclib-0.0.4/cpp_core/third_party/catch2/tools/scripts/approve.py +31 -0
  589. rclib-0.0.4/cpp_core/third_party/catch2/tools/scripts/buildAndTest.cmd +16 -0
  590. rclib-0.0.4/cpp_core/third_party/catch2/tools/scripts/buildAndTest.sh +18 -0
  591. rclib-0.0.4/cpp_core/third_party/catch2/tools/scripts/checkConvenienceHeaders.py +151 -0
  592. rclib-0.0.4/cpp_core/third_party/catch2/tools/scripts/checkDuplicateFilenames.py +14 -0
  593. rclib-0.0.4/cpp_core/third_party/catch2/tools/scripts/checkLicense.py +46 -0
  594. rclib-0.0.4/cpp_core/third_party/catch2/tools/scripts/developBuild.py +9 -0
  595. rclib-0.0.4/cpp_core/third_party/catch2/tools/scripts/extractFeaturesFromReleaseNotes.py +92 -0
  596. rclib-0.0.4/cpp_core/third_party/catch2/tools/scripts/fixWhitespace.py +51 -0
  597. rclib-0.0.4/cpp_core/third_party/catch2/tools/scripts/generateAmalgamatedFiles.py +139 -0
  598. rclib-0.0.4/cpp_core/third_party/catch2/tools/scripts/majorRelease.py +9 -0
  599. rclib-0.0.4/cpp_core/third_party/catch2/tools/scripts/minorRelease.py +9 -0
  600. rclib-0.0.4/cpp_core/third_party/catch2/tools/scripts/patchRelease.py +9 -0
  601. rclib-0.0.4/cpp_core/third_party/catch2/tools/scripts/releaseCommon.py +143 -0
  602. rclib-0.0.4/cpp_core/third_party/catch2/tools/scripts/scriptCommon.py +4 -0
  603. rclib-0.0.4/cpp_core/third_party/catch2/tools/scripts/updateDocumentSnippets.py +23 -0
  604. rclib-0.0.4/cpp_core/third_party/catch2/tools/scripts/updateDocumentToC.py +447 -0
  605. rclib-0.0.4/cpp_core/third_party/eigen/.clang-format +19 -0
  606. rclib-0.0.4/cpp_core/third_party/eigen/.gitignore +41 -0
  607. rclib-0.0.4/cpp_core/third_party/eigen/.gitlab/issue_templates/Bug Report.md +69 -0
  608. rclib-0.0.4/cpp_core/third_party/eigen/.gitlab/issue_templates/Feature Request.md +7 -0
  609. rclib-0.0.4/cpp_core/third_party/eigen/.gitlab/merge_request_templates/Merge Request Template.md +26 -0
  610. rclib-0.0.4/cpp_core/third_party/eigen/.gitlab-ci.yml +34 -0
  611. rclib-0.0.4/cpp_core/third_party/eigen/.hgeol +11 -0
  612. rclib-0.0.4/cpp_core/third_party/eigen/CMakeLists.txt +770 -0
  613. rclib-0.0.4/cpp_core/third_party/eigen/COPYING.APACHE +203 -0
  614. rclib-0.0.4/cpp_core/third_party/eigen/COPYING.BSD +26 -0
  615. rclib-0.0.4/cpp_core/third_party/eigen/COPYING.GPL +674 -0
  616. rclib-0.0.4/cpp_core/third_party/eigen/COPYING.LGPL +502 -0
  617. rclib-0.0.4/cpp_core/third_party/eigen/COPYING.MINPACK +51 -0
  618. rclib-0.0.4/cpp_core/third_party/eigen/COPYING.MPL2 +373 -0
  619. rclib-0.0.4/cpp_core/third_party/eigen/COPYING.README +18 -0
  620. rclib-0.0.4/cpp_core/third_party/eigen/CTestConfig.cmake +17 -0
  621. rclib-0.0.4/cpp_core/third_party/eigen/CTestCustom.cmake.in +4 -0
  622. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/Cholesky +45 -0
  623. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/CholmodSupport +48 -0
  624. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/Core +385 -0
  625. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/Dense +7 -0
  626. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/Eigen +2 -0
  627. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/Eigenvalues +60 -0
  628. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/Geometry +59 -0
  629. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/Householder +29 -0
  630. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/IterativeLinearSolvers +48 -0
  631. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/Jacobi +32 -0
  632. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/KLUSupport +41 -0
  633. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/LU +47 -0
  634. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/MetisSupport +35 -0
  635. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/OrderingMethods +70 -0
  636. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/PaStiXSupport +49 -0
  637. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/PardisoSupport +35 -0
  638. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/QR +50 -0
  639. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/QtAlignedMalloc +39 -0
  640. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/SPQRSupport +34 -0
  641. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/SVD +50 -0
  642. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/Sparse +34 -0
  643. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/SparseCholesky +37 -0
  644. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/SparseCore +69 -0
  645. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/SparseLU +48 -0
  646. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/SparseQR +36 -0
  647. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/StdDeque +27 -0
  648. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/StdList +26 -0
  649. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/StdVector +27 -0
  650. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/SuperLUSupport +64 -0
  651. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/UmfPackSupport +40 -0
  652. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Cholesky/LDLT.h +688 -0
  653. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Cholesky/LLT.h +558 -0
  654. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Cholesky/LLT_LAPACKE.h +99 -0
  655. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/CholmodSupport/CholmodSupport.h +682 -0
  656. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/ArithmeticSequence.h +406 -0
  657. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/Array.h +425 -0
  658. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/ArrayBase.h +226 -0
  659. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/ArrayWrapper.h +209 -0
  660. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/Assign.h +90 -0
  661. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/AssignEvaluator.h +1010 -0
  662. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/Assign_MKL.h +178 -0
  663. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/BandMatrix.h +353 -0
  664. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/Block.h +463 -0
  665. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/BooleanRedux.h +164 -0
  666. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/CommaInitializer.h +164 -0
  667. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/ConditionEstimator.h +175 -0
  668. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/CoreEvaluators.h +1741 -0
  669. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/CoreIterators.h +132 -0
  670. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/CwiseBinaryOp.h +183 -0
  671. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/CwiseNullaryOp.h +1001 -0
  672. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/CwiseTernaryOp.h +197 -0
  673. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/CwiseUnaryOp.h +103 -0
  674. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/CwiseUnaryView.h +132 -0
  675. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/DenseBase.h +701 -0
  676. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/DenseCoeffsBase.h +685 -0
  677. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/DenseStorage.h +652 -0
  678. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/Diagonal.h +259 -0
  679. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/DiagonalMatrix.h +391 -0
  680. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/DiagonalProduct.h +28 -0
  681. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/Dot.h +313 -0
  682. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/EigenBase.h +160 -0
  683. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/ForceAlignedAccess.h +150 -0
  684. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/Fuzzy.h +155 -0
  685. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/GeneralProduct.h +465 -0
  686. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/GenericPacketMath.h +1040 -0
  687. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/GlobalFunctions.h +194 -0
  688. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/IO.h +258 -0
  689. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/IndexedView.h +247 -0
  690. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/Inverse.h +117 -0
  691. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/Map.h +171 -0
  692. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/MapBase.h +310 -0
  693. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/MathFunctions.h +2212 -0
  694. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/MathFunctionsImpl.h +200 -0
  695. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/Matrix.h +578 -0
  696. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/MatrixBase.h +541 -0
  697. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/NestByValue.h +85 -0
  698. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/NoAlias.h +109 -0
  699. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/NumTraits.h +351 -0
  700. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/PartialReduxEvaluator.h +237 -0
  701. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/PermutationMatrix.h +605 -0
  702. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/PlainObjectBase.h +1128 -0
  703. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/Product.h +191 -0
  704. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/ProductEvaluators.h +1179 -0
  705. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/Random.h +218 -0
  706. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/Redux.h +515 -0
  707. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/Ref.h +381 -0
  708. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/Replicate.h +142 -0
  709. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/Reshaped.h +454 -0
  710. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/ReturnByValue.h +119 -0
  711. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/Reverse.h +217 -0
  712. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/Select.h +164 -0
  713. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/SelfAdjointView.h +365 -0
  714. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/SelfCwiseBinaryOp.h +47 -0
  715. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/Solve.h +188 -0
  716. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/SolveTriangular.h +235 -0
  717. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/SolverBase.h +168 -0
  718. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/StableNorm.h +251 -0
  719. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/StlIterators.h +463 -0
  720. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/Stride.h +120 -0
  721. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/Swap.h +68 -0
  722. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/Transpose.h +464 -0
  723. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/Transpositions.h +386 -0
  724. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/TriangularMatrix.h +994 -0
  725. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/VectorBlock.h +96 -0
  726. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/VectorwiseOp.h +784 -0
  727. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/Visitor.h +381 -0
  728. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/arch/AVX/Complex.h +368 -0
  729. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/arch/AVX/MathFunctions.h +228 -0
  730. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/arch/AVX/PacketMath.h +1588 -0
  731. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/arch/AVX/TypeCasting.h +115 -0
  732. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/arch/AVX512/Complex.h +384 -0
  733. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/arch/AVX512/MathFunctions.h +361 -0
  734. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/arch/AVX512/PacketMath.h +2270 -0
  735. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/arch/AVX512/TypeCasting.h +89 -0
  736. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/arch/AltiVec/Complex.h +415 -0
  737. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/arch/AltiVec/MathFunctions.h +119 -0
  738. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/arch/AltiVec/MatrixProduct.h +2776 -0
  739. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/arch/AltiVec/MatrixProductCommon.h +159 -0
  740. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/arch/AltiVec/MatrixProductMMA.h +627 -0
  741. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/arch/AltiVec/MatrixVectorProduct.h +2400 -0
  742. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/arch/AltiVec/PacketMath.h +2743 -0
  743. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/arch/CUDA/Complex.h +269 -0
  744. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/arch/Default/BFloat16.h +688 -0
  745. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/arch/Default/ConjHelper.h +117 -0
  746. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/arch/Default/GenericPacketMathFunctions.h +1662 -0
  747. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/arch/Default/GenericPacketMathFunctionsFwd.h +116 -0
  748. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/arch/Default/Half.h +950 -0
  749. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/arch/Default/Settings.h +49 -0
  750. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/arch/Default/TypeCasting.h +120 -0
  751. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/arch/GPU/MathFunctions.h +103 -0
  752. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/arch/GPU/PacketMath.h +1646 -0
  753. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/arch/GPU/TypeCasting.h +79 -0
  754. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/arch/HIP/hcc/math_constants.h +23 -0
  755. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/arch/MSA/Complex.h +645 -0
  756. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/arch/MSA/MathFunctions.h +387 -0
  757. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/arch/MSA/PacketMath.h +1233 -0
  758. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/arch/NEON/Complex.h +560 -0
  759. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/arch/NEON/GeneralBlockPanelKernel.h +183 -0
  760. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/arch/NEON/MathFunctions.h +75 -0
  761. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/arch/NEON/PacketMath.h +4653 -0
  762. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/arch/NEON/TypeCasting.h +1424 -0
  763. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/arch/SSE/Complex.h +338 -0
  764. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/arch/SSE/MathFunctions.h +199 -0
  765. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/arch/SSE/PacketMath.h +1505 -0
  766. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/arch/SSE/TypeCasting.h +142 -0
  767. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/arch/SVE/MathFunctions.h +44 -0
  768. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/arch/SVE/PacketMath.h +752 -0
  769. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/arch/SVE/TypeCasting.h +49 -0
  770. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/arch/SYCL/InteropHeaders.h +232 -0
  771. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/arch/SYCL/MathFunctions.h +301 -0
  772. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/arch/SYCL/PacketMath.h +670 -0
  773. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/arch/SYCL/SyclMemoryModel.h +694 -0
  774. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/arch/SYCL/TypeCasting.h +85 -0
  775. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/arch/ZVector/Complex.h +428 -0
  776. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/arch/ZVector/MathFunctions.h +233 -0
  777. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/arch/ZVector/PacketMath.h +1060 -0
  778. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/functors/AssignmentFunctors.h +177 -0
  779. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/functors/BinaryFunctors.h +541 -0
  780. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/functors/NullaryFunctors.h +189 -0
  781. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/functors/StlFunctors.h +166 -0
  782. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/functors/TernaryFunctors.h +25 -0
  783. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/functors/UnaryFunctors.h +1131 -0
  784. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/products/GeneralBlockPanelKernel.h +2645 -0
  785. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/products/GeneralMatrixMatrix.h +517 -0
  786. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h +322 -0
  787. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/products/GeneralMatrixMatrixTriangular_BLAS.h +145 -0
  788. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/products/GeneralMatrixMatrix_BLAS.h +124 -0
  789. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/products/GeneralMatrixVector.h +523 -0
  790. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/products/GeneralMatrixVector_BLAS.h +136 -0
  791. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/products/Parallelizer.h +180 -0
  792. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/products/SelfadjointMatrixMatrix.h +544 -0
  793. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/products/SelfadjointMatrixMatrix_BLAS.h +295 -0
  794. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/products/SelfadjointMatrixVector.h +262 -0
  795. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/products/SelfadjointMatrixVector_BLAS.h +118 -0
  796. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/products/SelfadjointProduct.h +133 -0
  797. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/products/SelfadjointRank2Update.h +94 -0
  798. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/products/TriangularMatrixMatrix.h +472 -0
  799. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/products/TriangularMatrixMatrix_BLAS.h +317 -0
  800. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/products/TriangularMatrixVector.h +350 -0
  801. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/products/TriangularMatrixVector_BLAS.h +255 -0
  802. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/products/TriangularSolverMatrix.h +337 -0
  803. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/products/TriangularSolverMatrix_BLAS.h +167 -0
  804. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/products/TriangularSolverVector.h +148 -0
  805. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/util/BlasUtil.h +583 -0
  806. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/util/ConfigureVectorization.h +521 -0
  807. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/util/Constants.h +563 -0
  808. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/util/DisableStupidWarnings.h +138 -0
  809. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/util/ForwardDeclarations.h +322 -0
  810. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/util/IndexedViewHelper.h +186 -0
  811. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/util/IntegralConstant.h +272 -0
  812. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/util/MKL_support.h +137 -0
  813. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/util/Macros.h +1511 -0
  814. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/util/Memory.h +1202 -0
  815. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/util/Meta.h +812 -0
  816. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/util/NonMPL2.h +3 -0
  817. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/util/ReenableStupidWarnings.h +31 -0
  818. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/util/ReshapedHelper.h +51 -0
  819. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/util/StaticAssert.h +221 -0
  820. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/util/SymbolicIndex.h +293 -0
  821. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Core/util/XprHelper.h +856 -0
  822. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Eigenvalues/ComplexEigenSolver.h +345 -0
  823. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Eigenvalues/ComplexSchur.h +462 -0
  824. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Eigenvalues/ComplexSchur_LAPACKE.h +91 -0
  825. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Eigenvalues/EigenSolver.h +622 -0
  826. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Eigenvalues/GeneralizedEigenSolver.h +417 -0
  827. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Eigenvalues/GeneralizedSelfAdjointEigenSolver.h +226 -0
  828. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Eigenvalues/HessenbergDecomposition.h +374 -0
  829. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Eigenvalues/MatrixBaseEigenvalues.h +158 -0
  830. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Eigenvalues/RealQZ.h +657 -0
  831. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Eigenvalues/RealSchur.h +557 -0
  832. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Eigenvalues/RealSchur_LAPACKE.h +77 -0
  833. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h +904 -0
  834. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Eigenvalues/SelfAdjointEigenSolver_LAPACKE.h +87 -0
  835. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Eigenvalues/Tridiagonalization.h +560 -0
  836. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Geometry/AlignedBox.h +486 -0
  837. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Geometry/AngleAxis.h +247 -0
  838. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Geometry/EulerAngles.h +114 -0
  839. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Geometry/Homogeneous.h +501 -0
  840. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Geometry/Hyperplane.h +282 -0
  841. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Geometry/OrthoMethods.h +235 -0
  842. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Geometry/ParametrizedLine.h +232 -0
  843. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Geometry/Quaternion.h +870 -0
  844. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Geometry/Rotation2D.h +199 -0
  845. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Geometry/RotationBase.h +206 -0
  846. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Geometry/Scaling.h +188 -0
  847. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Geometry/Transform.h +1566 -0
  848. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Geometry/Translation.h +202 -0
  849. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Geometry/Umeyama.h +168 -0
  850. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Geometry/arch/Geometry_SIMD.h +168 -0
  851. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Householder/BlockHouseholder.h +110 -0
  852. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Householder/Householder.h +176 -0
  853. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Householder/HouseholderSequence.h +553 -0
  854. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/IterativeLinearSolvers/BasicPreconditioners.h +226 -0
  855. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/IterativeLinearSolvers/BiCGSTAB.h +212 -0
  856. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/IterativeLinearSolvers/ConjugateGradient.h +227 -0
  857. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/IterativeLinearSolvers/IncompleteCholesky.h +394 -0
  858. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/IterativeLinearSolvers/IncompleteLUT.h +453 -0
  859. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/IterativeLinearSolvers/IterativeSolverBase.h +444 -0
  860. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/IterativeLinearSolvers/LeastSquareConjugateGradient.h +198 -0
  861. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/IterativeLinearSolvers/SolveWithGuess.h +117 -0
  862. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/Jacobi/Jacobi.h +483 -0
  863. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/KLUSupport/KLUSupport.h +358 -0
  864. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/LU/Determinant.h +117 -0
  865. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/LU/FullPivLU.h +877 -0
  866. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/LU/InverseImpl.h +432 -0
  867. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/LU/PartialPivLU.h +624 -0
  868. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/LU/PartialPivLU_LAPACKE.h +83 -0
  869. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/LU/arch/InverseSize4.h +363 -0
  870. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/MetisSupport/MetisSupport.h +137 -0
  871. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/OrderingMethods/Amd.h +435 -0
  872. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/OrderingMethods/Eigen_Colamd.h +1863 -0
  873. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/OrderingMethods/Ordering.h +153 -0
  874. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/PaStiXSupport/PaStiXSupport.h +678 -0
  875. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/PardisoSupport/PardisoSupport.h +545 -0
  876. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/QR/ColPivHouseholderQR.h +674 -0
  877. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/QR/ColPivHouseholderQR_LAPACKE.h +97 -0
  878. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/QR/CompleteOrthogonalDecomposition.h +635 -0
  879. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/QR/FullPivHouseholderQR.h +713 -0
  880. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/QR/HouseholderQR.h +434 -0
  881. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/QR/HouseholderQR_LAPACKE.h +68 -0
  882. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/SPQRSupport/SuiteSparseQRSupport.h +335 -0
  883. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/SVD/BDCSVD.h +1377 -0
  884. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/SVD/JacobiSVD.h +813 -0
  885. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/SVD/JacobiSVD_LAPACKE.h +91 -0
  886. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/SVD/SVDBase.h +376 -0
  887. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/SVD/UpperBidiagonalization.h +415 -0
  888. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/SparseCholesky/SimplicialCholesky.h +697 -0
  889. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/SparseCholesky/SimplicialCholesky_impl.h +174 -0
  890. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/SparseCore/AmbiVector.h +378 -0
  891. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/SparseCore/CompressedStorage.h +274 -0
  892. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/SparseCore/ConservativeSparseSparseProduct.h +352 -0
  893. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/SparseCore/MappedSparseMatrix.h +67 -0
  894. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/SparseCore/SparseAssign.h +270 -0
  895. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/SparseCore/SparseBlock.h +566 -0
  896. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/SparseCore/SparseColEtree.h +206 -0
  897. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/SparseCore/SparseCompressedBase.h +370 -0
  898. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/SparseCore/SparseCwiseBinaryOp.h +722 -0
  899. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/SparseCore/SparseCwiseUnaryOp.h +150 -0
  900. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/SparseCore/SparseDenseProduct.h +342 -0
  901. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/SparseCore/SparseDiagonalProduct.h +138 -0
  902. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/SparseCore/SparseDot.h +98 -0
  903. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/SparseCore/SparseFuzzy.h +29 -0
  904. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/SparseCore/SparseMap.h +306 -0
  905. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/SparseCore/SparseMatrix.h +1518 -0
  906. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/SparseCore/SparseMatrixBase.h +399 -0
  907. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/SparseCore/SparsePermutation.h +178 -0
  908. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/SparseCore/SparseProduct.h +182 -0
  909. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/SparseCore/SparseRedux.h +49 -0
  910. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/SparseCore/SparseRef.h +397 -0
  911. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/SparseCore/SparseSelfAdjointView.h +659 -0
  912. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/SparseCore/SparseSolverBase.h +124 -0
  913. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/SparseCore/SparseSparseProductWithPruning.h +198 -0
  914. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/SparseCore/SparseTranspose.h +92 -0
  915. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/SparseCore/SparseTriangularView.h +189 -0
  916. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/SparseCore/SparseUtil.h +186 -0
  917. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/SparseCore/SparseVector.h +480 -0
  918. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/SparseCore/SparseView.h +254 -0
  919. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/SparseCore/TriangularSolver.h +315 -0
  920. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/SparseLU/SparseLU.h +925 -0
  921. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/SparseLU/SparseLUImpl.h +66 -0
  922. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/SparseLU/SparseLU_Memory.h +226 -0
  923. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/SparseLU/SparseLU_Structs.h +110 -0
  924. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/SparseLU/SparseLU_SupernodalMatrix.h +374 -0
  925. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/SparseLU/SparseLU_Utils.h +80 -0
  926. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/SparseLU/SparseLU_column_bmod.h +181 -0
  927. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/SparseLU/SparseLU_column_dfs.h +179 -0
  928. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/SparseLU/SparseLU_copy_to_ucol.h +107 -0
  929. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/SparseLU/SparseLU_heap_relax_snode.h +121 -0
  930. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/SparseLU/SparseLU_kernel_bmod.h +129 -0
  931. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/SparseLU/SparseLU_panel_bmod.h +222 -0
  932. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/SparseLU/SparseLU_panel_dfs.h +258 -0
  933. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/SparseLU/SparseLU_pivotL.h +137 -0
  934. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/SparseLU/SparseLU_pruneL.h +136 -0
  935. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/SparseLU/SparseLU_relax_snode.h +83 -0
  936. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/SparseQR/SparseQR.h +758 -0
  937. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/StlSupport/StdDeque.h +116 -0
  938. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/StlSupport/StdList.h +106 -0
  939. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/StlSupport/StdVector.h +131 -0
  940. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/StlSupport/details.h +84 -0
  941. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/SuperLUSupport/SuperLUSupport.h +1025 -0
  942. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/UmfPackSupport/UmfPackSupport.h +642 -0
  943. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/misc/Image.h +82 -0
  944. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/misc/Kernel.h +79 -0
  945. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/misc/RealSvd2x2.h +55 -0
  946. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/misc/blas.h +440 -0
  947. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/misc/lapack.h +152 -0
  948. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/misc/lapacke.h +16292 -0
  949. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/misc/lapacke_mangling.h +17 -0
  950. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/plugins/ArrayCwiseBinaryOps.h +431 -0
  951. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/plugins/ArrayCwiseUnaryOps.h +696 -0
  952. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/plugins/BlockMethods.h +1442 -0
  953. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/plugins/CommonCwiseBinaryOps.h +115 -0
  954. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/plugins/CommonCwiseUnaryOps.h +177 -0
  955. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/plugins/IndexedViewMethods.h +262 -0
  956. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/plugins/MatrixCwiseBinaryOps.h +184 -0
  957. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/plugins/MatrixCwiseUnaryOps.h +95 -0
  958. rclib-0.0.4/cpp_core/third_party/eigen/Eigen/src/plugins/ReshapedMethods.h +149 -0
  959. rclib-0.0.4/cpp_core/third_party/eigen/INSTALL +35 -0
  960. rclib-0.0.4/cpp_core/third_party/eigen/README.md +5 -0
  961. rclib-0.0.4/cpp_core/third_party/eigen/bench/BenchSparseUtil.h +149 -0
  962. rclib-0.0.4/cpp_core/third_party/eigen/bench/BenchTimer.h +199 -0
  963. rclib-0.0.4/cpp_core/third_party/eigen/bench/BenchUtil.h +92 -0
  964. rclib-0.0.4/cpp_core/third_party/eigen/bench/README.txt +55 -0
  965. rclib-0.0.4/cpp_core/third_party/eigen/bench/analyze-blocking-sizes.cpp +876 -0
  966. rclib-0.0.4/cpp_core/third_party/eigen/bench/basicbench.cxxlist +28 -0
  967. rclib-0.0.4/cpp_core/third_party/eigen/bench/basicbenchmark.cpp +35 -0
  968. rclib-0.0.4/cpp_core/third_party/eigen/bench/basicbenchmark.h +63 -0
  969. rclib-0.0.4/cpp_core/third_party/eigen/bench/benchBlasGemm.cpp +219 -0
  970. rclib-0.0.4/cpp_core/third_party/eigen/bench/benchCholesky.cpp +141 -0
  971. rclib-0.0.4/cpp_core/third_party/eigen/bench/benchEigenSolver.cpp +212 -0
  972. rclib-0.0.4/cpp_core/third_party/eigen/bench/benchFFT.cpp +115 -0
  973. rclib-0.0.4/cpp_core/third_party/eigen/bench/benchGeometry.cpp +134 -0
  974. rclib-0.0.4/cpp_core/third_party/eigen/bench/benchVecAdd.cpp +135 -0
  975. rclib-0.0.4/cpp_core/third_party/eigen/bench/bench_gemm.cpp +375 -0
  976. rclib-0.0.4/cpp_core/third_party/eigen/bench/bench_move_semantics.cpp +57 -0
  977. rclib-0.0.4/cpp_core/third_party/eigen/bench/bench_multi_compilers.sh +28 -0
  978. rclib-0.0.4/cpp_core/third_party/eigen/bench/bench_norm.cpp +360 -0
  979. rclib-0.0.4/cpp_core/third_party/eigen/bench/bench_reverse.cpp +84 -0
  980. rclib-0.0.4/cpp_core/third_party/eigen/bench/bench_sum.cpp +18 -0
  981. rclib-0.0.4/cpp_core/third_party/eigen/bench/bench_unrolling +12 -0
  982. rclib-0.0.4/cpp_core/third_party/eigen/bench/benchmark-blocking-sizes.cpp +677 -0
  983. rclib-0.0.4/cpp_core/third_party/eigen/bench/benchmark.cpp +39 -0
  984. rclib-0.0.4/cpp_core/third_party/eigen/bench/benchmarkSlice.cpp +38 -0
  985. rclib-0.0.4/cpp_core/third_party/eigen/bench/benchmarkX.cpp +36 -0
  986. rclib-0.0.4/cpp_core/third_party/eigen/bench/benchmarkXcwise.cpp +35 -0
  987. rclib-0.0.4/cpp_core/third_party/eigen/bench/benchmark_suite +18 -0
  988. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/CMakeLists.txt +107 -0
  989. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/COPYING +340 -0
  990. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/README +154 -0
  991. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/actions/action_aat_product.hh +145 -0
  992. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/actions/action_ata_product.hh +145 -0
  993. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/actions/action_atv_product.hh +134 -0
  994. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/actions/action_axpby.hh +127 -0
  995. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/actions/action_axpy.hh +139 -0
  996. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/actions/action_cholesky.hh +128 -0
  997. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/actions/action_ger.hh +128 -0
  998. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/actions/action_hessenberg.hh +233 -0
  999. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/actions/action_lu_decomp.hh +124 -0
  1000. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/actions/action_lu_solve.hh +136 -0
  1001. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/actions/action_matrix_matrix_product.hh +150 -0
  1002. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/actions/action_matrix_matrix_product_bis.hh +152 -0
  1003. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/actions/action_matrix_vector_product.hh +153 -0
  1004. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/actions/action_partial_lu.hh +125 -0
  1005. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/actions/action_rot.hh +116 -0
  1006. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/actions/action_symv.hh +139 -0
  1007. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/actions/action_syr2.hh +133 -0
  1008. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/actions/action_trisolve.hh +137 -0
  1009. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/actions/action_trisolve_matrix.hh +165 -0
  1010. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/actions/action_trmm.hh +165 -0
  1011. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/actions/basic_actions.hh +21 -0
  1012. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/cmake/FindACML.cmake +51 -0
  1013. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/cmake/FindATLAS.cmake +31 -0
  1014. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/cmake/FindBLAZE.cmake +31 -0
  1015. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/cmake/FindBlitz.cmake +40 -0
  1016. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/cmake/FindCBLAS.cmake +35 -0
  1017. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/cmake/FindGMM.cmake +17 -0
  1018. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/cmake/FindMKL.cmake +65 -0
  1019. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/cmake/FindMTL4.cmake +31 -0
  1020. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/cmake/FindOPENBLAS.cmake +17 -0
  1021. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/cmake/FindPackageHandleStandardArgs.cmake +60 -0
  1022. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/cmake/FindTvmet.cmake +32 -0
  1023. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/cmake/MacroOptionalAddSubdirectory.cmake +31 -0
  1024. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/data/CMakeLists.txt +32 -0
  1025. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/data/action_settings.txt +19 -0
  1026. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/data/gnuplot_common_settings.hh +87 -0
  1027. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/data/go_mean +58 -0
  1028. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/data/mean.cxx +182 -0
  1029. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/data/mk_gnuplot_script.sh +68 -0
  1030. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/data/mk_mean_script.sh +52 -0
  1031. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/data/mk_new_gnuplot.sh +54 -0
  1032. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/data/perlib_plot_settings.txt +16 -0
  1033. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/data/regularize.cxx +131 -0
  1034. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/data/smooth.cxx +198 -0
  1035. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/data/smooth_all.sh +68 -0
  1036. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/generic_bench/bench.hh +168 -0
  1037. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/generic_bench/bench_parameter.hh +53 -0
  1038. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/generic_bench/btl.hh +242 -0
  1039. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/generic_bench/init/init_function.hh +54 -0
  1040. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/generic_bench/init/init_matrix.hh +64 -0
  1041. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/generic_bench/init/init_vector.hh +37 -0
  1042. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/generic_bench/static/bench_static.hh +80 -0
  1043. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/generic_bench/static/intel_bench_fixed_size.hh +66 -0
  1044. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/generic_bench/static/static_size_generator.hh +57 -0
  1045. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/generic_bench/timers/STL_perf_analyzer.hh +82 -0
  1046. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/generic_bench/timers/STL_timer.hh +78 -0
  1047. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/generic_bench/timers/mixed_perf_analyzer.hh +73 -0
  1048. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/generic_bench/timers/portable_perf_analyzer.hh +103 -0
  1049. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/generic_bench/timers/portable_perf_analyzer_old.hh +134 -0
  1050. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/generic_bench/timers/portable_timer.hh +187 -0
  1051. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/generic_bench/timers/x86_perf_analyzer.hh +108 -0
  1052. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/generic_bench/timers/x86_timer.hh +246 -0
  1053. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/generic_bench/utils/size_lin_log.hh +70 -0
  1054. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/generic_bench/utils/size_log.hh +54 -0
  1055. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/generic_bench/utils/utilities.h +90 -0
  1056. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/generic_bench/utils/xy_file.hh +75 -0
  1057. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/libs/BLAS/CMakeLists.txt +47 -0
  1058. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/libs/BLAS/blas.h +675 -0
  1059. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/libs/BLAS/blas_interface.hh +83 -0
  1060. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/libs/BLAS/blas_interface_impl.hh +147 -0
  1061. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/libs/BLAS/c_interface_base.h +73 -0
  1062. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/libs/BLAS/main.cpp +73 -0
  1063. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/libs/STL/CMakeLists.txt +2 -0
  1064. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/libs/STL/STL_interface.hh +247 -0
  1065. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/libs/STL/main.cpp +42 -0
  1066. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/libs/blaze/CMakeLists.txt +13 -0
  1067. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/libs/blaze/blaze_interface.hh +141 -0
  1068. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/libs/blaze/main.cpp +40 -0
  1069. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/libs/blitz/CMakeLists.txt +17 -0
  1070. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/libs/blitz/blitz_LU_solve_interface.hh +192 -0
  1071. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/libs/blitz/blitz_interface.hh +147 -0
  1072. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/libs/blitz/btl_blitz.cpp +51 -0
  1073. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/libs/blitz/btl_tiny_blitz.cpp +38 -0
  1074. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/libs/blitz/tiny_blitz_interface.hh +106 -0
  1075. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/libs/eigen2/CMakeLists.txt +19 -0
  1076. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/libs/eigen2/btl_tiny_eigen2.cpp +46 -0
  1077. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/libs/eigen2/eigen2_interface.hh +168 -0
  1078. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/libs/eigen2/main_adv.cpp +44 -0
  1079. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/libs/eigen2/main_linear.cpp +34 -0
  1080. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/libs/eigen2/main_matmat.cpp +35 -0
  1081. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/libs/eigen2/main_vecmat.cpp +36 -0
  1082. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/libs/eigen3/CMakeLists.txt +65 -0
  1083. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/libs/eigen3/btl_tiny_eigen3.cpp +46 -0
  1084. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/libs/eigen3/eigen3_interface.hh +242 -0
  1085. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/libs/eigen3/main_adv.cpp +44 -0
  1086. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/libs/eigen3/main_linear.cpp +35 -0
  1087. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/libs/eigen3/main_matmat.cpp +35 -0
  1088. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/libs/eigen3/main_vecmat.cpp +36 -0
  1089. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/libs/gmm/CMakeLists.txt +6 -0
  1090. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/libs/gmm/gmm_LU_solve_interface.hh +192 -0
  1091. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/libs/gmm/gmm_interface.hh +144 -0
  1092. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/libs/gmm/main.cpp +51 -0
  1093. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/libs/mtl4/.kdbgrc.main +12 -0
  1094. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/libs/mtl4/CMakeLists.txt +6 -0
  1095. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/libs/mtl4/main.cpp +46 -0
  1096. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/libs/mtl4/mtl4_LU_solve_interface.hh +192 -0
  1097. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/libs/mtl4/mtl4_interface.hh +144 -0
  1098. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/libs/tensors/CMakeLists.txt +44 -0
  1099. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/libs/tensors/main_linear.cpp +23 -0
  1100. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/libs/tensors/main_matmat.cpp +21 -0
  1101. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/libs/tensors/main_vecmat.cpp +21 -0
  1102. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/libs/tensors/tensor_interface.hh +105 -0
  1103. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/libs/tvmet/CMakeLists.txt +6 -0
  1104. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/libs/tvmet/main.cpp +40 -0
  1105. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/libs/tvmet/tvmet_interface.hh +104 -0
  1106. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/libs/ublas/CMakeLists.txt +7 -0
  1107. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/libs/ublas/main.cpp +44 -0
  1108. rclib-0.0.4/cpp_core/third_party/eigen/bench/btl/libs/ublas/ublas_interface.hh +141 -0
  1109. rclib-0.0.4/cpp_core/third_party/eigen/bench/check_cache_queries.cpp +101 -0
  1110. rclib-0.0.4/cpp_core/third_party/eigen/bench/dense_solvers.cpp +186 -0
  1111. rclib-0.0.4/cpp_core/third_party/eigen/bench/eig33.cpp +195 -0
  1112. rclib-0.0.4/cpp_core/third_party/eigen/bench/geometry.cpp +126 -0
  1113. rclib-0.0.4/cpp_core/third_party/eigen/bench/perf_monitoring/changesets.txt +95 -0
  1114. rclib-0.0.4/cpp_core/third_party/eigen/bench/perf_monitoring/gemm.cpp +12 -0
  1115. rclib-0.0.4/cpp_core/third_party/eigen/bench/perf_monitoring/gemm_common.h +67 -0
  1116. rclib-0.0.4/cpp_core/third_party/eigen/bench/perf_monitoring/gemm_settings.txt +15 -0
  1117. rclib-0.0.4/cpp_core/third_party/eigen/bench/perf_monitoring/gemm_square_settings.txt +11 -0
  1118. rclib-0.0.4/cpp_core/third_party/eigen/bench/perf_monitoring/gemv.cpp +12 -0
  1119. rclib-0.0.4/cpp_core/third_party/eigen/bench/perf_monitoring/gemv_common.h +69 -0
  1120. rclib-0.0.4/cpp_core/third_party/eigen/bench/perf_monitoring/gemv_settings.txt +11 -0
  1121. rclib-0.0.4/cpp_core/third_party/eigen/bench/perf_monitoring/gemv_square_settings.txt +13 -0
  1122. rclib-0.0.4/cpp_core/third_party/eigen/bench/perf_monitoring/gemvt.cpp +12 -0
  1123. rclib-0.0.4/cpp_core/third_party/eigen/bench/perf_monitoring/lazy_gemm.cpp +101 -0
  1124. rclib-0.0.4/cpp_core/third_party/eigen/bench/perf_monitoring/lazy_gemm_settings.txt +15 -0
  1125. rclib-0.0.4/cpp_core/third_party/eigen/bench/perf_monitoring/llt.cpp +15 -0
  1126. rclib-0.0.4/cpp_core/third_party/eigen/bench/perf_monitoring/make_plot.sh +112 -0
  1127. rclib-0.0.4/cpp_core/third_party/eigen/bench/perf_monitoring/resources/chart_footer.html +41 -0
  1128. rclib-0.0.4/cpp_core/third_party/eigen/bench/perf_monitoring/resources/chart_header.html +45 -0
  1129. rclib-0.0.4/cpp_core/third_party/eigen/bench/perf_monitoring/resources/footer.html +3 -0
  1130. rclib-0.0.4/cpp_core/third_party/eigen/bench/perf_monitoring/resources/header.html +42 -0
  1131. rclib-0.0.4/cpp_core/third_party/eigen/bench/perf_monitoring/resources/s1.js +1 -0
  1132. rclib-0.0.4/cpp_core/third_party/eigen/bench/perf_monitoring/resources/s2.js +1 -0
  1133. rclib-0.0.4/cpp_core/third_party/eigen/bench/perf_monitoring/run.sh +183 -0
  1134. rclib-0.0.4/cpp_core/third_party/eigen/bench/perf_monitoring/runall.sh +72 -0
  1135. rclib-0.0.4/cpp_core/third_party/eigen/bench/perf_monitoring/trmv_lo.cpp +12 -0
  1136. rclib-0.0.4/cpp_core/third_party/eigen/bench/perf_monitoring/trmv_lot.cpp +12 -0
  1137. rclib-0.0.4/cpp_core/third_party/eigen/bench/perf_monitoring/trmv_up.cpp +12 -0
  1138. rclib-0.0.4/cpp_core/third_party/eigen/bench/perf_monitoring/trmv_upt.cpp +12 -0
  1139. rclib-0.0.4/cpp_core/third_party/eigen/bench/product_threshold.cpp +143 -0
  1140. rclib-0.0.4/cpp_core/third_party/eigen/bench/quat_slerp.cpp +247 -0
  1141. rclib-0.0.4/cpp_core/third_party/eigen/bench/quatmul.cpp +47 -0
  1142. rclib-0.0.4/cpp_core/third_party/eigen/bench/sparse_cholesky.cpp +216 -0
  1143. rclib-0.0.4/cpp_core/third_party/eigen/bench/sparse_dense_product.cpp +187 -0
  1144. rclib-0.0.4/cpp_core/third_party/eigen/bench/sparse_lu.cpp +132 -0
  1145. rclib-0.0.4/cpp_core/third_party/eigen/bench/sparse_product.cpp +323 -0
  1146. rclib-0.0.4/cpp_core/third_party/eigen/bench/sparse_randomsetter.cpp +126 -0
  1147. rclib-0.0.4/cpp_core/third_party/eigen/bench/sparse_setter.cpp +485 -0
  1148. rclib-0.0.4/cpp_core/third_party/eigen/bench/sparse_transpose.cpp +104 -0
  1149. rclib-0.0.4/cpp_core/third_party/eigen/bench/sparse_trisolver.cpp +220 -0
  1150. rclib-0.0.4/cpp_core/third_party/eigen/bench/spbench/CMakeLists.txt +92 -0
  1151. rclib-0.0.4/cpp_core/third_party/eigen/bench/spbench/sp_solver.cpp +125 -0
  1152. rclib-0.0.4/cpp_core/third_party/eigen/bench/spbench/spbench.dtd +31 -0
  1153. rclib-0.0.4/cpp_core/third_party/eigen/bench/spbench/spbenchsolver.cpp +87 -0
  1154. rclib-0.0.4/cpp_core/third_party/eigen/bench/spbench/spbenchsolver.h +573 -0
  1155. rclib-0.0.4/cpp_core/third_party/eigen/bench/spbench/spbenchstyle.h +95 -0
  1156. rclib-0.0.4/cpp_core/third_party/eigen/bench/spbench/test_sparseLU.cpp +93 -0
  1157. rclib-0.0.4/cpp_core/third_party/eigen/bench/spmv.cpp +233 -0
  1158. rclib-0.0.4/cpp_core/third_party/eigen/bench/tensors/README +20 -0
  1159. rclib-0.0.4/cpp_core/third_party/eigen/bench/tensors/benchmark.h +49 -0
  1160. rclib-0.0.4/cpp_core/third_party/eigen/bench/tensors/benchmark_main.cc +237 -0
  1161. rclib-0.0.4/cpp_core/third_party/eigen/bench/tensors/contraction_benchmarks_cpu.cc +39 -0
  1162. rclib-0.0.4/cpp_core/third_party/eigen/bench/tensors/eigen_sycl_bench.sh +30 -0
  1163. rclib-0.0.4/cpp_core/third_party/eigen/bench/tensors/eigen_sycl_bench_contract.sh +7 -0
  1164. rclib-0.0.4/cpp_core/third_party/eigen/bench/tensors/tensor_benchmarks.h +597 -0
  1165. rclib-0.0.4/cpp_core/third_party/eigen/bench/tensors/tensor_benchmarks_cpu.cc +168 -0
  1166. rclib-0.0.4/cpp_core/third_party/eigen/bench/tensors/tensor_benchmarks_fp16_gpu.cu +77 -0
  1167. rclib-0.0.4/cpp_core/third_party/eigen/bench/tensors/tensor_benchmarks_gpu.cu +75 -0
  1168. rclib-0.0.4/cpp_core/third_party/eigen/bench/tensors/tensor_benchmarks_sycl.cc +140 -0
  1169. rclib-0.0.4/cpp_core/third_party/eigen/bench/tensors/tensor_contract_sycl_bench.cc +325 -0
  1170. rclib-0.0.4/cpp_core/third_party/eigen/bench/vdw_new.cpp +56 -0
  1171. rclib-0.0.4/cpp_core/third_party/eigen/blas/BandTriangularSolver.h +97 -0
  1172. rclib-0.0.4/cpp_core/third_party/eigen/blas/CMakeLists.txt +63 -0
  1173. rclib-0.0.4/cpp_core/third_party/eigen/blas/GeneralRank1Update.h +44 -0
  1174. rclib-0.0.4/cpp_core/third_party/eigen/blas/PackedSelfadjointProduct.h +53 -0
  1175. rclib-0.0.4/cpp_core/third_party/eigen/blas/PackedTriangularMatrixVector.h +79 -0
  1176. rclib-0.0.4/cpp_core/third_party/eigen/blas/PackedTriangularSolverVector.h +88 -0
  1177. rclib-0.0.4/cpp_core/third_party/eigen/blas/README.txt +6 -0
  1178. rclib-0.0.4/cpp_core/third_party/eigen/blas/Rank2Update.h +57 -0
  1179. rclib-0.0.4/cpp_core/third_party/eigen/blas/common.h +175 -0
  1180. rclib-0.0.4/cpp_core/third_party/eigen/blas/complex_double.cpp +20 -0
  1181. rclib-0.0.4/cpp_core/third_party/eigen/blas/complex_single.cpp +20 -0
  1182. rclib-0.0.4/cpp_core/third_party/eigen/blas/double.cpp +32 -0
  1183. rclib-0.0.4/cpp_core/third_party/eigen/blas/f2c/chbmv.c +487 -0
  1184. rclib-0.0.4/cpp_core/third_party/eigen/blas/f2c/chpmv.c +438 -0
  1185. rclib-0.0.4/cpp_core/third_party/eigen/blas/f2c/complexdots.c +84 -0
  1186. rclib-0.0.4/cpp_core/third_party/eigen/blas/f2c/ctbmv.c +647 -0
  1187. rclib-0.0.4/cpp_core/third_party/eigen/blas/f2c/d_cnjg.c +6 -0
  1188. rclib-0.0.4/cpp_core/third_party/eigen/blas/f2c/datatypes.h +24 -0
  1189. rclib-0.0.4/cpp_core/third_party/eigen/blas/f2c/drotm.c +215 -0
  1190. rclib-0.0.4/cpp_core/third_party/eigen/blas/f2c/drotmg.c +293 -0
  1191. rclib-0.0.4/cpp_core/third_party/eigen/blas/f2c/dsbmv.c +366 -0
  1192. rclib-0.0.4/cpp_core/third_party/eigen/blas/f2c/dspmv.c +316 -0
  1193. rclib-0.0.4/cpp_core/third_party/eigen/blas/f2c/dtbmv.c +428 -0
  1194. rclib-0.0.4/cpp_core/third_party/eigen/blas/f2c/lsame.c +117 -0
  1195. rclib-0.0.4/cpp_core/third_party/eigen/blas/f2c/r_cnjg.c +6 -0
  1196. rclib-0.0.4/cpp_core/third_party/eigen/blas/f2c/srotm.c +216 -0
  1197. rclib-0.0.4/cpp_core/third_party/eigen/blas/f2c/srotmg.c +295 -0
  1198. rclib-0.0.4/cpp_core/third_party/eigen/blas/f2c/ssbmv.c +368 -0
  1199. rclib-0.0.4/cpp_core/third_party/eigen/blas/f2c/sspmv.c +316 -0
  1200. rclib-0.0.4/cpp_core/third_party/eigen/blas/f2c/stbmv.c +428 -0
  1201. rclib-0.0.4/cpp_core/third_party/eigen/blas/f2c/zhbmv.c +488 -0
  1202. rclib-0.0.4/cpp_core/third_party/eigen/blas/f2c/zhpmv.c +438 -0
  1203. rclib-0.0.4/cpp_core/third_party/eigen/blas/f2c/ztbmv.c +647 -0
  1204. rclib-0.0.4/cpp_core/third_party/eigen/blas/fortran/complexdots.f +43 -0
  1205. rclib-0.0.4/cpp_core/third_party/eigen/blas/level1_cplx_impl.h +155 -0
  1206. rclib-0.0.4/cpp_core/third_party/eigen/blas/level1_impl.h +144 -0
  1207. rclib-0.0.4/cpp_core/third_party/eigen/blas/level1_real_impl.h +122 -0
  1208. rclib-0.0.4/cpp_core/third_party/eigen/blas/level2_cplx_impl.h +360 -0
  1209. rclib-0.0.4/cpp_core/third_party/eigen/blas/level2_impl.h +553 -0
  1210. rclib-0.0.4/cpp_core/third_party/eigen/blas/level2_real_impl.h +306 -0
  1211. rclib-0.0.4/cpp_core/third_party/eigen/blas/level3_impl.h +702 -0
  1212. rclib-0.0.4/cpp_core/third_party/eigen/blas/single.cpp +22 -0
  1213. rclib-0.0.4/cpp_core/third_party/eigen/blas/testing/CMakeLists.txt +40 -0
  1214. rclib-0.0.4/cpp_core/third_party/eigen/blas/testing/cblat1.f +724 -0
  1215. rclib-0.0.4/cpp_core/third_party/eigen/blas/testing/cblat2.dat +35 -0
  1216. rclib-0.0.4/cpp_core/third_party/eigen/blas/testing/cblat2.f +3279 -0
  1217. rclib-0.0.4/cpp_core/third_party/eigen/blas/testing/cblat3.dat +23 -0
  1218. rclib-0.0.4/cpp_core/third_party/eigen/blas/testing/cblat3.f +3492 -0
  1219. rclib-0.0.4/cpp_core/third_party/eigen/blas/testing/dblat1.f +1065 -0
  1220. rclib-0.0.4/cpp_core/third_party/eigen/blas/testing/dblat2.dat +34 -0
  1221. rclib-0.0.4/cpp_core/third_party/eigen/blas/testing/dblat2.f +3176 -0
  1222. rclib-0.0.4/cpp_core/third_party/eigen/blas/testing/dblat3.dat +20 -0
  1223. rclib-0.0.4/cpp_core/third_party/eigen/blas/testing/dblat3.f +2873 -0
  1224. rclib-0.0.4/cpp_core/third_party/eigen/blas/testing/runblastest.sh +45 -0
  1225. rclib-0.0.4/cpp_core/third_party/eigen/blas/testing/sblat1.f +1021 -0
  1226. rclib-0.0.4/cpp_core/third_party/eigen/blas/testing/sblat2.dat +34 -0
  1227. rclib-0.0.4/cpp_core/third_party/eigen/blas/testing/sblat2.f +3176 -0
  1228. rclib-0.0.4/cpp_core/third_party/eigen/blas/testing/sblat3.dat +20 -0
  1229. rclib-0.0.4/cpp_core/third_party/eigen/blas/testing/sblat3.f +2873 -0
  1230. rclib-0.0.4/cpp_core/third_party/eigen/blas/testing/zblat1.f +724 -0
  1231. rclib-0.0.4/cpp_core/third_party/eigen/blas/testing/zblat2.dat +35 -0
  1232. rclib-0.0.4/cpp_core/third_party/eigen/blas/testing/zblat2.f +3287 -0
  1233. rclib-0.0.4/cpp_core/third_party/eigen/blas/testing/zblat3.dat +23 -0
  1234. rclib-0.0.4/cpp_core/third_party/eigen/blas/testing/zblat3.f +3502 -0
  1235. rclib-0.0.4/cpp_core/third_party/eigen/blas/xerbla.cpp +23 -0
  1236. rclib-0.0.4/cpp_core/third_party/eigen/ci/CTest2JUnit.xsl +120 -0
  1237. rclib-0.0.4/cpp_core/third_party/eigen/ci/README.md +12 -0
  1238. rclib-0.0.4/cpp_core/third_party/eigen/ci/checkformat.gitlab-ci.yml +10 -0
  1239. rclib-0.0.4/cpp_core/third_party/eigen/ci/common.gitlab-ci.yml +40 -0
  1240. rclib-0.0.4/cpp_core/third_party/eigen/ci/deploy.gitlab-ci.yml +41 -0
  1241. rclib-0.0.4/cpp_core/third_party/eigen/ci/scripts/common.linux.before_script.sh +46 -0
  1242. rclib-0.0.4/cpp_core/third_party/eigen/ci/scripts/common.windows.before_script.ps1 +8 -0
  1243. rclib-0.0.4/cpp_core/third_party/eigen/ci/scripts/test.linux.after_script.sh +19 -0
  1244. rclib-0.0.4/cpp_core/third_party/eigen/ci/scripts/test.linux.script.sh +31 -0
  1245. rclib-0.0.4/cpp_core/third_party/eigen/ci/scripts/test.windows.after_script.ps1 +17 -0
  1246. rclib-0.0.4/cpp_core/third_party/eigen/ci/scripts/test.windows.script.ps1 +30 -0
  1247. rclib-0.0.4/cpp_core/third_party/eigen/ci/scripts/vars.linux.sh +14 -0
  1248. rclib-0.0.4/cpp_core/third_party/eigen/ci/scripts/vars.windows.ps1 +11 -0
  1249. rclib-0.0.4/cpp_core/third_party/eigen/ci/smoketests.gitlab-ci.yml +107 -0
  1250. rclib-0.0.4/cpp_core/third_party/eigen/ci/test.linux.gitlab-ci.yml +430 -0
  1251. rclib-0.0.4/cpp_core/third_party/eigen/ci/test.windows.gitlab-ci.yml +110 -0
  1252. rclib-0.0.4/cpp_core/third_party/eigen/cmake/ComputeCppCompilerChecks.cmake +50 -0
  1253. rclib-0.0.4/cpp_core/third_party/eigen/cmake/ComputeCppIRMap.cmake +18 -0
  1254. rclib-0.0.4/cpp_core/third_party/eigen/cmake/Eigen3Config.cmake.in +23 -0
  1255. rclib-0.0.4/cpp_core/third_party/eigen/cmake/Eigen3ConfigLegacy.cmake.in +30 -0
  1256. rclib-0.0.4/cpp_core/third_party/eigen/cmake/Eigen3ConfigVersion.cmake.in +100 -0
  1257. rclib-0.0.4/cpp_core/third_party/eigen/cmake/EigenConfigureTesting.cmake +67 -0
  1258. rclib-0.0.4/cpp_core/third_party/eigen/cmake/EigenDetermineOSVersion.cmake +46 -0
  1259. rclib-0.0.4/cpp_core/third_party/eigen/cmake/EigenDetermineVSServicePack.cmake +41 -0
  1260. rclib-0.0.4/cpp_core/third_party/eigen/cmake/EigenSmokeTestList.cmake +136 -0
  1261. rclib-0.0.4/cpp_core/third_party/eigen/cmake/EigenTesting.cmake +772 -0
  1262. rclib-0.0.4/cpp_core/third_party/eigen/cmake/EigenUninstall.cmake +40 -0
  1263. rclib-0.0.4/cpp_core/third_party/eigen/cmake/FindAdolc.cmake +20 -0
  1264. rclib-0.0.4/cpp_core/third_party/eigen/cmake/FindBLAS.cmake +1407 -0
  1265. rclib-0.0.4/cpp_core/third_party/eigen/cmake/FindBLASEXT.cmake +384 -0
  1266. rclib-0.0.4/cpp_core/third_party/eigen/cmake/FindCHOLMOD.cmake +89 -0
  1267. rclib-0.0.4/cpp_core/third_party/eigen/cmake/FindCLANG_FORMAT.cmake +61 -0
  1268. rclib-0.0.4/cpp_core/third_party/eigen/cmake/FindComputeCpp.cmake +455 -0
  1269. rclib-0.0.4/cpp_core/third_party/eigen/cmake/FindDPCPP.cmake +62 -0
  1270. rclib-0.0.4/cpp_core/third_party/eigen/cmake/FindEigen2.cmake +80 -0
  1271. rclib-0.0.4/cpp_core/third_party/eigen/cmake/FindEigen3.cmake +107 -0
  1272. rclib-0.0.4/cpp_core/third_party/eigen/cmake/FindFFTW.cmake +120 -0
  1273. rclib-0.0.4/cpp_core/third_party/eigen/cmake/FindGLEW.cmake +105 -0
  1274. rclib-0.0.4/cpp_core/third_party/eigen/cmake/FindGMP.cmake +21 -0
  1275. rclib-0.0.4/cpp_core/third_party/eigen/cmake/FindGSL.cmake +170 -0
  1276. rclib-0.0.4/cpp_core/third_party/eigen/cmake/FindGoogleHash.cmake +23 -0
  1277. rclib-0.0.4/cpp_core/third_party/eigen/cmake/FindHWLOC.cmake +332 -0
  1278. rclib-0.0.4/cpp_core/third_party/eigen/cmake/FindKLU.cmake +48 -0
  1279. rclib-0.0.4/cpp_core/third_party/eigen/cmake/FindLAPACK.cmake +274 -0
  1280. rclib-0.0.4/cpp_core/third_party/eigen/cmake/FindMPFR.cmake +83 -0
  1281. rclib-0.0.4/cpp_core/third_party/eigen/cmake/FindMPREAL.cmake +103 -0
  1282. rclib-0.0.4/cpp_core/third_party/eigen/cmake/FindMetis.cmake +265 -0
  1283. rclib-0.0.4/cpp_core/third_party/eigen/cmake/FindPASTIX.cmake +704 -0
  1284. rclib-0.0.4/cpp_core/third_party/eigen/cmake/FindPTSCOTCH.cmake +422 -0
  1285. rclib-0.0.4/cpp_core/third_party/eigen/cmake/FindSCOTCH.cmake +370 -0
  1286. rclib-0.0.4/cpp_core/third_party/eigen/cmake/FindSPQR.cmake +41 -0
  1287. rclib-0.0.4/cpp_core/third_party/eigen/cmake/FindStandardMathLibrary.cmake +70 -0
  1288. rclib-0.0.4/cpp_core/third_party/eigen/cmake/FindSuperLU.cmake +97 -0
  1289. rclib-0.0.4/cpp_core/third_party/eigen/cmake/FindTriSYCL.cmake +173 -0
  1290. rclib-0.0.4/cpp_core/third_party/eigen/cmake/FindUMFPACK.cmake +53 -0
  1291. rclib-0.0.4/cpp_core/third_party/eigen/cmake/RegexUtils.cmake +19 -0
  1292. rclib-0.0.4/cpp_core/third_party/eigen/cmake/SyclConfigureTesting.cmake +64 -0
  1293. rclib-0.0.4/cpp_core/third_party/eigen/cmake/UseEigen3.cmake +20 -0
  1294. rclib-0.0.4/cpp_core/third_party/eigen/debug/gdb/__init__.py +1 -0
  1295. rclib-0.0.4/cpp_core/third_party/eigen/debug/gdb/printers.py +314 -0
  1296. rclib-0.0.4/cpp_core/third_party/eigen/debug/msvc/eigen.natvis +235 -0
  1297. rclib-0.0.4/cpp_core/third_party/eigen/debug/msvc/eigen_autoexp_part.dat +295 -0
  1298. rclib-0.0.4/cpp_core/third_party/eigen/demos/CMakeLists.txt +13 -0
  1299. rclib-0.0.4/cpp_core/third_party/eigen/demos/mandelbrot/CMakeLists.txt +21 -0
  1300. rclib-0.0.4/cpp_core/third_party/eigen/demos/mandelbrot/README +10 -0
  1301. rclib-0.0.4/cpp_core/third_party/eigen/demos/mandelbrot/mandelbrot.cpp +213 -0
  1302. rclib-0.0.4/cpp_core/third_party/eigen/demos/mandelbrot/mandelbrot.h +71 -0
  1303. rclib-0.0.4/cpp_core/third_party/eigen/demos/mix_eigen_and_c/README +9 -0
  1304. rclib-0.0.4/cpp_core/third_party/eigen/demos/mix_eigen_and_c/binary_library.cpp +185 -0
  1305. rclib-0.0.4/cpp_core/third_party/eigen/demos/mix_eigen_and_c/binary_library.h +71 -0
  1306. rclib-0.0.4/cpp_core/third_party/eigen/demos/mix_eigen_and_c/example.c +65 -0
  1307. rclib-0.0.4/cpp_core/third_party/eigen/demos/opengl/CMakeLists.txt +28 -0
  1308. rclib-0.0.4/cpp_core/third_party/eigen/demos/opengl/README +13 -0
  1309. rclib-0.0.4/cpp_core/third_party/eigen/demos/opengl/camera.cpp +264 -0
  1310. rclib-0.0.4/cpp_core/third_party/eigen/demos/opengl/camera.h +118 -0
  1311. rclib-0.0.4/cpp_core/third_party/eigen/demos/opengl/gpuhelper.cpp +126 -0
  1312. rclib-0.0.4/cpp_core/third_party/eigen/demos/opengl/gpuhelper.h +207 -0
  1313. rclib-0.0.4/cpp_core/third_party/eigen/demos/opengl/icosphere.cpp +120 -0
  1314. rclib-0.0.4/cpp_core/third_party/eigen/demos/opengl/icosphere.h +30 -0
  1315. rclib-0.0.4/cpp_core/third_party/eigen/demos/opengl/quaternion_demo.cpp +656 -0
  1316. rclib-0.0.4/cpp_core/third_party/eigen/demos/opengl/quaternion_demo.h +114 -0
  1317. rclib-0.0.4/cpp_core/third_party/eigen/demos/opengl/trackball.cpp +59 -0
  1318. rclib-0.0.4/cpp_core/third_party/eigen/demos/opengl/trackball.h +42 -0
  1319. rclib-0.0.4/cpp_core/third_party/eigen/doc/AsciiQuickReference.txt +226 -0
  1320. rclib-0.0.4/cpp_core/third_party/eigen/doc/B01_Experimental.dox +52 -0
  1321. rclib-0.0.4/cpp_core/third_party/eigen/doc/CMakeLists.txt +117 -0
  1322. rclib-0.0.4/cpp_core/third_party/eigen/doc/ClassHierarchy.dox +129 -0
  1323. rclib-0.0.4/cpp_core/third_party/eigen/doc/CoeffwiseMathFunctionsTable.dox +600 -0
  1324. rclib-0.0.4/cpp_core/third_party/eigen/doc/CustomizingEigen_CustomScalar.dox +120 -0
  1325. rclib-0.0.4/cpp_core/third_party/eigen/doc/CustomizingEigen_InheritingMatrix.dox +34 -0
  1326. rclib-0.0.4/cpp_core/third_party/eigen/doc/CustomizingEigen_NullaryExpr.dox +86 -0
  1327. rclib-0.0.4/cpp_core/third_party/eigen/doc/CustomizingEigen_Plugins.dox +69 -0
  1328. rclib-0.0.4/cpp_core/third_party/eigen/doc/DenseDecompositionBenchmark.dox +42 -0
  1329. rclib-0.0.4/cpp_core/third_party/eigen/doc/Doxyfile.in +180 -0
  1330. rclib-0.0.4/cpp_core/third_party/eigen/doc/FixedSizeVectorizable.dox +38 -0
  1331. rclib-0.0.4/cpp_core/third_party/eigen/doc/FunctionsTakingEigenTypes.dox +217 -0
  1332. rclib-0.0.4/cpp_core/third_party/eigen/doc/HiPerformance.dox +128 -0
  1333. rclib-0.0.4/cpp_core/third_party/eigen/doc/InplaceDecomposition.dox +115 -0
  1334. rclib-0.0.4/cpp_core/third_party/eigen/doc/InsideEigenExample.dox +500 -0
  1335. rclib-0.0.4/cpp_core/third_party/eigen/doc/LeastSquares.dox +75 -0
  1336. rclib-0.0.4/cpp_core/third_party/eigen/doc/Manual.dox +191 -0
  1337. rclib-0.0.4/cpp_core/third_party/eigen/doc/MatrixfreeSolverExample.dox +20 -0
  1338. rclib-0.0.4/cpp_core/third_party/eigen/doc/NewExpressionType.dox +143 -0
  1339. rclib-0.0.4/cpp_core/third_party/eigen/doc/Overview.dox +32 -0
  1340. rclib-0.0.4/cpp_core/third_party/eigen/doc/PassingByValue.dox +40 -0
  1341. rclib-0.0.4/cpp_core/third_party/eigen/doc/Pitfalls.dox +149 -0
  1342. rclib-0.0.4/cpp_core/third_party/eigen/doc/PreprocessorDirectives.dox +179 -0
  1343. rclib-0.0.4/cpp_core/third_party/eigen/doc/QuickReference.dox +805 -0
  1344. rclib-0.0.4/cpp_core/third_party/eigen/doc/QuickStartGuide.dox +100 -0
  1345. rclib-0.0.4/cpp_core/third_party/eigen/doc/SparseLinearSystems.dox +225 -0
  1346. rclib-0.0.4/cpp_core/third_party/eigen/doc/SparseQuickReference.dox +272 -0
  1347. rclib-0.0.4/cpp_core/third_party/eigen/doc/StlContainers.dox +73 -0
  1348. rclib-0.0.4/cpp_core/third_party/eigen/doc/StorageOrders.dox +86 -0
  1349. rclib-0.0.4/cpp_core/third_party/eigen/doc/StructHavingEigenMembers.dox +203 -0
  1350. rclib-0.0.4/cpp_core/third_party/eigen/doc/TemplateKeyword.dox +133 -0
  1351. rclib-0.0.4/cpp_core/third_party/eigen/doc/TopicAliasing.dox +237 -0
  1352. rclib-0.0.4/cpp_core/third_party/eigen/doc/TopicAssertions.dox +108 -0
  1353. rclib-0.0.4/cpp_core/third_party/eigen/doc/TopicCMakeGuide.dox +65 -0
  1354. rclib-0.0.4/cpp_core/third_party/eigen/doc/TopicEigenExpressionTemplates.dox +12 -0
  1355. rclib-0.0.4/cpp_core/third_party/eigen/doc/TopicLazyEvaluation.dox +97 -0
  1356. rclib-0.0.4/cpp_core/third_party/eigen/doc/TopicLinearAlgebraDecompositions.dox +287 -0
  1357. rclib-0.0.4/cpp_core/third_party/eigen/doc/TopicMultithreading.dox +67 -0
  1358. rclib-0.0.4/cpp_core/third_party/eigen/doc/TopicResizing.dox +11 -0
  1359. rclib-0.0.4/cpp_core/third_party/eigen/doc/TopicScalarTypes.dox +12 -0
  1360. rclib-0.0.4/cpp_core/third_party/eigen/doc/TopicVectorization.dox +9 -0
  1361. rclib-0.0.4/cpp_core/third_party/eigen/doc/TutorialAdvancedInitialization.dox +162 -0
  1362. rclib-0.0.4/cpp_core/third_party/eigen/doc/TutorialArrayClass.dox +192 -0
  1363. rclib-0.0.4/cpp_core/third_party/eigen/doc/TutorialBlockOperations.dox +242 -0
  1364. rclib-0.0.4/cpp_core/third_party/eigen/doc/TutorialGeometry.dox +242 -0
  1365. rclib-0.0.4/cpp_core/third_party/eigen/doc/TutorialLinearAlgebra.dox +299 -0
  1366. rclib-0.0.4/cpp_core/third_party/eigen/doc/TutorialMapClass.dox +86 -0
  1367. rclib-0.0.4/cpp_core/third_party/eigen/doc/TutorialMatrixArithmetic.dox +214 -0
  1368. rclib-0.0.4/cpp_core/third_party/eigen/doc/TutorialMatrixClass.dox +295 -0
  1369. rclib-0.0.4/cpp_core/third_party/eigen/doc/TutorialReductionsVisitorsBroadcasting.dox +266 -0
  1370. rclib-0.0.4/cpp_core/third_party/eigen/doc/TutorialReshape.dox +82 -0
  1371. rclib-0.0.4/cpp_core/third_party/eigen/doc/TutorialSTL.dox +66 -0
  1372. rclib-0.0.4/cpp_core/third_party/eigen/doc/TutorialSlicingIndexing.dox +245 -0
  1373. rclib-0.0.4/cpp_core/third_party/eigen/doc/TutorialSparse.dox +363 -0
  1374. rclib-0.0.4/cpp_core/third_party/eigen/doc/TutorialSparse_example_details.dox +4 -0
  1375. rclib-0.0.4/cpp_core/third_party/eigen/doc/UnalignedArrayAssert.dox +133 -0
  1376. rclib-0.0.4/cpp_core/third_party/eigen/doc/UsingBlasLapackBackends.dox +133 -0
  1377. rclib-0.0.4/cpp_core/third_party/eigen/doc/UsingIntelMKL.dox +113 -0
  1378. rclib-0.0.4/cpp_core/third_party/eigen/doc/UsingNVCC.dox +30 -0
  1379. rclib-0.0.4/cpp_core/third_party/eigen/doc/WrongStackAlignment.dox +56 -0
  1380. rclib-0.0.4/cpp_core/third_party/eigen/doc/eigen_navtree_hacks.js +247 -0
  1381. rclib-0.0.4/cpp_core/third_party/eigen/doc/eigendoxy.css +233 -0
  1382. rclib-0.0.4/cpp_core/third_party/eigen/doc/eigendoxy_footer.html.in +18 -0
  1383. rclib-0.0.4/cpp_core/third_party/eigen/doc/eigendoxy_header.html.in +82 -0
  1384. rclib-0.0.4/cpp_core/third_party/eigen/doc/eigendoxy_layout.xml.in +269 -0
  1385. rclib-0.0.4/cpp_core/third_party/eigen/doc/eigendoxy_tabs.css +59 -0
  1386. rclib-0.0.4/cpp_core/third_party/eigen/doc/examples/.krazy +2 -0
  1387. rclib-0.0.4/cpp_core/third_party/eigen/doc/examples/CMakeLists.txt +17 -0
  1388. rclib-0.0.4/cpp_core/third_party/eigen/doc/examples/CustomizingEigen_Inheritance.cpp +30 -0
  1389. rclib-0.0.4/cpp_core/third_party/eigen/doc/examples/Cwise_erf.cpp +9 -0
  1390. rclib-0.0.4/cpp_core/third_party/eigen/doc/examples/Cwise_erfc.cpp +9 -0
  1391. rclib-0.0.4/cpp_core/third_party/eigen/doc/examples/Cwise_lgamma.cpp +9 -0
  1392. rclib-0.0.4/cpp_core/third_party/eigen/doc/examples/DenseBase_middleCols_int.cpp +15 -0
  1393. rclib-0.0.4/cpp_core/third_party/eigen/doc/examples/DenseBase_middleRows_int.cpp +15 -0
  1394. rclib-0.0.4/cpp_core/third_party/eigen/doc/examples/DenseBase_template_int_middleCols.cpp +15 -0
  1395. rclib-0.0.4/cpp_core/third_party/eigen/doc/examples/DenseBase_template_int_middleRows.cpp +15 -0
  1396. rclib-0.0.4/cpp_core/third_party/eigen/doc/examples/QuickStart_example.cpp +14 -0
  1397. rclib-0.0.4/cpp_core/third_party/eigen/doc/examples/QuickStart_example2_dynamic.cpp +15 -0
  1398. rclib-0.0.4/cpp_core/third_party/eigen/doc/examples/QuickStart_example2_fixed.cpp +15 -0
  1399. rclib-0.0.4/cpp_core/third_party/eigen/doc/examples/TemplateKeyword_flexible.cpp +22 -0
  1400. rclib-0.0.4/cpp_core/third_party/eigen/doc/examples/TemplateKeyword_simple.cpp +20 -0
  1401. rclib-0.0.4/cpp_core/third_party/eigen/doc/examples/TutorialInplaceLU.cpp +61 -0
  1402. rclib-0.0.4/cpp_core/third_party/eigen/doc/examples/TutorialLinAlgComputeTwice.cpp +23 -0
  1403. rclib-0.0.4/cpp_core/third_party/eigen/doc/examples/TutorialLinAlgExComputeSolveError.cpp +14 -0
  1404. rclib-0.0.4/cpp_core/third_party/eigen/doc/examples/TutorialLinAlgExSolveColPivHouseholderQR.cpp +17 -0
  1405. rclib-0.0.4/cpp_core/third_party/eigen/doc/examples/TutorialLinAlgExSolveLDLT.cpp +16 -0
  1406. rclib-0.0.4/cpp_core/third_party/eigen/doc/examples/TutorialLinAlgInverseDeterminant.cpp +16 -0
  1407. rclib-0.0.4/cpp_core/third_party/eigen/doc/examples/TutorialLinAlgRankRevealing.cpp +20 -0
  1408. rclib-0.0.4/cpp_core/third_party/eigen/doc/examples/TutorialLinAlgSVDSolve.cpp +15 -0
  1409. rclib-0.0.4/cpp_core/third_party/eigen/doc/examples/TutorialLinAlgSelfAdjointEigenSolver.cpp +18 -0
  1410. rclib-0.0.4/cpp_core/third_party/eigen/doc/examples/TutorialLinAlgSetThreshold.cpp +16 -0
  1411. rclib-0.0.4/cpp_core/third_party/eigen/doc/examples/Tutorial_ArrayClass_accessors.cpp +24 -0
  1412. rclib-0.0.4/cpp_core/third_party/eigen/doc/examples/Tutorial_ArrayClass_addition.cpp +23 -0
  1413. rclib-0.0.4/cpp_core/third_party/eigen/doc/examples/Tutorial_ArrayClass_cwise_other.cpp +19 -0
  1414. rclib-0.0.4/cpp_core/third_party/eigen/doc/examples/Tutorial_ArrayClass_interop.cpp +22 -0
  1415. rclib-0.0.4/cpp_core/third_party/eigen/doc/examples/Tutorial_ArrayClass_interop_matrix.cpp +26 -0
  1416. rclib-0.0.4/cpp_core/third_party/eigen/doc/examples/Tutorial_ArrayClass_mult.cpp +16 -0
  1417. rclib-0.0.4/cpp_core/third_party/eigen/doc/examples/Tutorial_BlockOperations_block_assignment.cpp +18 -0
  1418. rclib-0.0.4/cpp_core/third_party/eigen/doc/examples/Tutorial_BlockOperations_colrow.cpp +17 -0
  1419. rclib-0.0.4/cpp_core/third_party/eigen/doc/examples/Tutorial_BlockOperations_corner.cpp +17 -0
  1420. rclib-0.0.4/cpp_core/third_party/eigen/doc/examples/Tutorial_BlockOperations_print_block.cpp +20 -0
  1421. rclib-0.0.4/cpp_core/third_party/eigen/doc/examples/Tutorial_BlockOperations_vector.cpp +14 -0
  1422. rclib-0.0.4/cpp_core/third_party/eigen/doc/examples/Tutorial_PartialLU_solve.cpp +18 -0
  1423. rclib-0.0.4/cpp_core/third_party/eigen/doc/examples/Tutorial_ReductionsVisitorsBroadcasting_broadcast_1nn.cpp +24 -0
  1424. rclib-0.0.4/cpp_core/third_party/eigen/doc/examples/Tutorial_ReductionsVisitorsBroadcasting_broadcast_simple.cpp +21 -0
  1425. rclib-0.0.4/cpp_core/third_party/eigen/doc/examples/Tutorial_ReductionsVisitorsBroadcasting_broadcast_simple_rowwise.cpp +20 -0
  1426. rclib-0.0.4/cpp_core/third_party/eigen/doc/examples/Tutorial_ReductionsVisitorsBroadcasting_colwise.cpp +13 -0
  1427. rclib-0.0.4/cpp_core/third_party/eigen/doc/examples/Tutorial_ReductionsVisitorsBroadcasting_maxnorm.cpp +20 -0
  1428. rclib-0.0.4/cpp_core/third_party/eigen/doc/examples/Tutorial_ReductionsVisitorsBroadcasting_reductions_bool.cpp +21 -0
  1429. rclib-0.0.4/cpp_core/third_party/eigen/doc/examples/Tutorial_ReductionsVisitorsBroadcasting_reductions_norm.cpp +28 -0
  1430. rclib-0.0.4/cpp_core/third_party/eigen/doc/examples/Tutorial_ReductionsVisitorsBroadcasting_reductions_operatornorm.cpp +18 -0
  1431. rclib-0.0.4/cpp_core/third_party/eigen/doc/examples/Tutorial_ReductionsVisitorsBroadcasting_rowwise.cpp +13 -0
  1432. rclib-0.0.4/cpp_core/third_party/eigen/doc/examples/Tutorial_ReductionsVisitorsBroadcasting_visitors.cpp +26 -0
  1433. rclib-0.0.4/cpp_core/third_party/eigen/doc/examples/Tutorial_simple_example_dynamic_size.cpp +22 -0
  1434. rclib-0.0.4/cpp_core/third_party/eigen/doc/examples/Tutorial_simple_example_fixed_size.cpp +15 -0
  1435. rclib-0.0.4/cpp_core/third_party/eigen/doc/examples/class_Block.cpp +27 -0
  1436. rclib-0.0.4/cpp_core/third_party/eigen/doc/examples/class_CwiseBinaryOp.cpp +18 -0
  1437. rclib-0.0.4/cpp_core/third_party/eigen/doc/examples/class_CwiseUnaryOp.cpp +19 -0
  1438. rclib-0.0.4/cpp_core/third_party/eigen/doc/examples/class_CwiseUnaryOp_ptrfun.cpp +20 -0
  1439. rclib-0.0.4/cpp_core/third_party/eigen/doc/examples/class_FixedBlock.cpp +27 -0
  1440. rclib-0.0.4/cpp_core/third_party/eigen/doc/examples/class_FixedReshaped.cpp +22 -0
  1441. rclib-0.0.4/cpp_core/third_party/eigen/doc/examples/class_FixedVectorBlock.cpp +27 -0
  1442. rclib-0.0.4/cpp_core/third_party/eigen/doc/examples/class_Reshaped.cpp +23 -0
  1443. rclib-0.0.4/cpp_core/third_party/eigen/doc/examples/class_VectorBlock.cpp +27 -0
  1444. rclib-0.0.4/cpp_core/third_party/eigen/doc/examples/function_taking_eigenbase.cpp +18 -0
  1445. rclib-0.0.4/cpp_core/third_party/eigen/doc/examples/function_taking_ref.cpp +19 -0
  1446. rclib-0.0.4/cpp_core/third_party/eigen/doc/examples/make_circulant.cpp +11 -0
  1447. rclib-0.0.4/cpp_core/third_party/eigen/doc/examples/make_circulant.cpp.entry +5 -0
  1448. rclib-0.0.4/cpp_core/third_party/eigen/doc/examples/make_circulant.cpp.evaluator +32 -0
  1449. rclib-0.0.4/cpp_core/third_party/eigen/doc/examples/make_circulant.cpp.expression +20 -0
  1450. rclib-0.0.4/cpp_core/third_party/eigen/doc/examples/make_circulant.cpp.main +8 -0
  1451. rclib-0.0.4/cpp_core/third_party/eigen/doc/examples/make_circulant.cpp.preamble +4 -0
  1452. rclib-0.0.4/cpp_core/third_party/eigen/doc/examples/make_circulant.cpp.traits +19 -0
  1453. rclib-0.0.4/cpp_core/third_party/eigen/doc/examples/make_circulant2.cpp +52 -0
  1454. rclib-0.0.4/cpp_core/third_party/eigen/doc/examples/matrixfree_cg.cpp +129 -0
  1455. rclib-0.0.4/cpp_core/third_party/eigen/doc/examples/nullary_indexing.cpp +66 -0
  1456. rclib-0.0.4/cpp_core/third_party/eigen/doc/examples/tut_arithmetic_add_sub.cpp +22 -0
  1457. rclib-0.0.4/cpp_core/third_party/eigen/doc/examples/tut_arithmetic_dot_cross.cpp +15 -0
  1458. rclib-0.0.4/cpp_core/third_party/eigen/doc/examples/tut_arithmetic_matrix_mul.cpp +19 -0
  1459. rclib-0.0.4/cpp_core/third_party/eigen/doc/examples/tut_arithmetic_redux_basic.cpp +16 -0
  1460. rclib-0.0.4/cpp_core/third_party/eigen/doc/examples/tut_arithmetic_scalar_mul_div.cpp +17 -0
  1461. rclib-0.0.4/cpp_core/third_party/eigen/doc/examples/tut_matrix_coefficient_accessors.cpp +18 -0
  1462. rclib-0.0.4/cpp_core/third_party/eigen/doc/examples/tut_matrix_resize.cpp +18 -0
  1463. rclib-0.0.4/cpp_core/third_party/eigen/doc/examples/tut_matrix_resize_fixed_size.cpp +12 -0
  1464. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/.krazy +2 -0
  1465. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/AngleAxis_mimic_euler.cpp +5 -0
  1466. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Array_initializer_list_23_cxx11.cpp +5 -0
  1467. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Array_initializer_list_vector_cxx11.cpp +2 -0
  1468. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Array_variadic_ctor_cxx11.cpp +3 -0
  1469. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/BiCGSTAB_simple.cpp +11 -0
  1470. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/BiCGSTAB_step_by_step.cpp +14 -0
  1471. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/CMakeLists.txt +37 -0
  1472. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/ColPivHouseholderQR_solve.cpp +8 -0
  1473. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/ComplexEigenSolver_compute.cpp +16 -0
  1474. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/ComplexEigenSolver_eigenvalues.cpp +4 -0
  1475. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/ComplexEigenSolver_eigenvectors.cpp +4 -0
  1476. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/ComplexSchur_compute.cpp +6 -0
  1477. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/ComplexSchur_matrixT.cpp +4 -0
  1478. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/ComplexSchur_matrixU.cpp +4 -0
  1479. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Cwise_abs.cpp +2 -0
  1480. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Cwise_abs2.cpp +2 -0
  1481. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Cwise_acos.cpp +2 -0
  1482. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Cwise_arg.cpp +3 -0
  1483. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Cwise_array_power_array.cpp +4 -0
  1484. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Cwise_asin.cpp +2 -0
  1485. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Cwise_atan.cpp +2 -0
  1486. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Cwise_boolean_and.cpp +2 -0
  1487. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Cwise_boolean_not.cpp +5 -0
  1488. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Cwise_boolean_or.cpp +2 -0
  1489. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Cwise_boolean_xor.cpp +2 -0
  1490. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Cwise_ceil.cpp +3 -0
  1491. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Cwise_cos.cpp +2 -0
  1492. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Cwise_cosh.cpp +2 -0
  1493. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Cwise_cube.cpp +2 -0
  1494. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Cwise_equal_equal.cpp +2 -0
  1495. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Cwise_exp.cpp +2 -0
  1496. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Cwise_floor.cpp +3 -0
  1497. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Cwise_greater.cpp +2 -0
  1498. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Cwise_greater_equal.cpp +2 -0
  1499. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Cwise_inverse.cpp +2 -0
  1500. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Cwise_isFinite.cpp +5 -0
  1501. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Cwise_isInf.cpp +5 -0
  1502. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Cwise_isNaN.cpp +5 -0
  1503. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Cwise_less.cpp +2 -0
  1504. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Cwise_less_equal.cpp +2 -0
  1505. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Cwise_log.cpp +2 -0
  1506. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Cwise_log10.cpp +2 -0
  1507. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Cwise_max.cpp +2 -0
  1508. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Cwise_min.cpp +2 -0
  1509. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Cwise_minus.cpp +2 -0
  1510. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Cwise_minus_equal.cpp +3 -0
  1511. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Cwise_not_equal.cpp +2 -0
  1512. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Cwise_plus.cpp +2 -0
  1513. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Cwise_plus_equal.cpp +3 -0
  1514. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Cwise_pow.cpp +2 -0
  1515. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Cwise_product.cpp +4 -0
  1516. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Cwise_quotient.cpp +2 -0
  1517. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Cwise_rint.cpp +3 -0
  1518. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Cwise_round.cpp +3 -0
  1519. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Cwise_scalar_power_array.cpp +2 -0
  1520. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Cwise_sign.cpp +2 -0
  1521. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Cwise_sin.cpp +2 -0
  1522. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Cwise_sinh.cpp +2 -0
  1523. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Cwise_slash_equal.cpp +3 -0
  1524. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Cwise_sqrt.cpp +2 -0
  1525. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Cwise_square.cpp +2 -0
  1526. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Cwise_tan.cpp +2 -0
  1527. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Cwise_tanh.cpp +2 -0
  1528. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Cwise_times_equal.cpp +3 -0
  1529. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/DenseBase_LinSpaced.cpp +2 -0
  1530. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/DenseBase_LinSpacedInt.cpp +8 -0
  1531. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/DenseBase_LinSpaced_seq_deprecated.cpp +2 -0
  1532. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/DenseBase_setLinSpaced.cpp +3 -0
  1533. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/DirectionWise_hnormalized.cpp +6 -0
  1534. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/DirectionWise_replicate.cpp +4 -0
  1535. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/DirectionWise_replicate_int.cpp +4 -0
  1536. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/EigenSolver_EigenSolver_MatrixType.cpp +16 -0
  1537. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/EigenSolver_compute.cpp +6 -0
  1538. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/EigenSolver_eigenvalues.cpp +4 -0
  1539. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/EigenSolver_eigenvectors.cpp +4 -0
  1540. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/EigenSolver_pseudoEigenvectors.cpp +9 -0
  1541. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/FullPivHouseholderQR_solve.cpp +8 -0
  1542. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/FullPivLU_image.cpp +9 -0
  1543. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/FullPivLU_kernel.cpp +7 -0
  1544. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/FullPivLU_solve.cpp +11 -0
  1545. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/GeneralizedEigenSolver.cpp +7 -0
  1546. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/HessenbergDecomposition_compute.cpp +6 -0
  1547. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/HessenbergDecomposition_matrixH.cpp +8 -0
  1548. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/HessenbergDecomposition_packedMatrix.cpp +9 -0
  1549. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/HouseholderQR_householderQ.cpp +7 -0
  1550. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/HouseholderQR_solve.cpp +9 -0
  1551. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/HouseholderSequence_HouseholderSequence.cpp +31 -0
  1552. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/IOFormat.cpp +14 -0
  1553. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/JacobiSVD_basic.cpp +9 -0
  1554. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Jacobi_makeGivens.cpp +6 -0
  1555. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Jacobi_makeJacobi.cpp +8 -0
  1556. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/LLT_example.cpp +12 -0
  1557. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/LLT_solve.cpp +8 -0
  1558. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/LeastSquaresNormalEquations.cpp +4 -0
  1559. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/LeastSquaresQR.cpp +4 -0
  1560. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Map_general_stride.cpp +5 -0
  1561. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Map_inner_stride.cpp +5 -0
  1562. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Map_outer_stride.cpp +3 -0
  1563. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Map_placement_new.cpp +5 -0
  1564. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Map_simple.cpp +3 -0
  1565. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_adjoint.cpp +3 -0
  1566. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_all.cpp +7 -0
  1567. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_applyOnTheLeft.cpp +7 -0
  1568. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_applyOnTheRight.cpp +9 -0
  1569. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_array.cpp +4 -0
  1570. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_array_const.cpp +4 -0
  1571. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_asDiagonal.cpp +1 -0
  1572. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_block_int_int.cpp +5 -0
  1573. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_block_int_int_int_int.cpp +5 -0
  1574. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_bottomLeftCorner_int_int.cpp +6 -0
  1575. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_bottomRightCorner_int_int.cpp +6 -0
  1576. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_bottomRows_int.cpp +6 -0
  1577. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_cast.cpp +3 -0
  1578. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_col.cpp +3 -0
  1579. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_colwise.cpp +5 -0
  1580. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_colwise_iterator_cxx11.cpp +12 -0
  1581. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_computeInverseAndDetWithCheck.cpp +13 -0
  1582. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_computeInverseWithCheck.cpp +11 -0
  1583. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_cwiseAbs.cpp +4 -0
  1584. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_cwiseAbs2.cpp +4 -0
  1585. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_cwiseArg.cpp +3 -0
  1586. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_cwiseEqual.cpp +7 -0
  1587. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_cwiseInverse.cpp +4 -0
  1588. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_cwiseMax.cpp +2 -0
  1589. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_cwiseMin.cpp +2 -0
  1590. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_cwiseNotEqual.cpp +7 -0
  1591. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_cwiseProduct.cpp +4 -0
  1592. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_cwiseQuotient.cpp +2 -0
  1593. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_cwiseSign.cpp +4 -0
  1594. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_cwiseSqrt.cpp +2 -0
  1595. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_diagonal.cpp +4 -0
  1596. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_diagonal_int.cpp +5 -0
  1597. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_diagonal_template_int.cpp +5 -0
  1598. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_eigenvalues.cpp +3 -0
  1599. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_end_int.cpp +5 -0
  1600. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_eval.cpp +12 -0
  1601. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_fixedBlock_int_int.cpp +5 -0
  1602. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_hnormalized.cpp +6 -0
  1603. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_homogeneous.cpp +6 -0
  1604. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_identity.cpp +1 -0
  1605. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_identity_int_int.cpp +1 -0
  1606. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_inverse.cpp +3 -0
  1607. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_isDiagonal.cpp +6 -0
  1608. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_isIdentity.cpp +5 -0
  1609. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_isOnes.cpp +5 -0
  1610. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_isOrthogonal.cpp +6 -0
  1611. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_isUnitary.cpp +5 -0
  1612. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_isZero.cpp +5 -0
  1613. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_leftCols_int.cpp +6 -0
  1614. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_noalias.cpp +3 -0
  1615. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_ones.cpp +2 -0
  1616. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_ones_int.cpp +2 -0
  1617. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_ones_int_int.cpp +1 -0
  1618. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_operatorNorm.cpp +3 -0
  1619. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_prod.cpp +3 -0
  1620. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_random.cpp +1 -0
  1621. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_random_int.cpp +1 -0
  1622. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_random_int_int.cpp +1 -0
  1623. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_replicate.cpp +4 -0
  1624. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_replicate_int_int.cpp +4 -0
  1625. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_reshaped_auto.cpp +4 -0
  1626. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_reshaped_fixed.cpp +3 -0
  1627. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_reshaped_int_int.cpp +3 -0
  1628. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_reshaped_to_vector.cpp +4 -0
  1629. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_reverse.cpp +8 -0
  1630. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_rightCols_int.cpp +6 -0
  1631. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_row.cpp +3 -0
  1632. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_rowwise.cpp +5 -0
  1633. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_segment_int_int.cpp +5 -0
  1634. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_select.cpp +6 -0
  1635. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_selfadjointView.cpp +6 -0
  1636. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_set.cpp +13 -0
  1637. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_setIdentity.cpp +3 -0
  1638. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_setOnes.cpp +3 -0
  1639. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_setRandom.cpp +3 -0
  1640. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_setZero.cpp +3 -0
  1641. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_start_int.cpp +5 -0
  1642. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_template_int_bottomRows.cpp +6 -0
  1643. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_template_int_end.cpp +5 -0
  1644. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_template_int_int_block_int_int_int_int.cpp +5 -0
  1645. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_template_int_int_bottomLeftCorner.cpp +6 -0
  1646. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_template_int_int_bottomLeftCorner_int_int.cpp +6 -0
  1647. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_template_int_int_bottomRightCorner.cpp +6 -0
  1648. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_template_int_int_bottomRightCorner_int_int.cpp +6 -0
  1649. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_template_int_int_topLeftCorner.cpp +6 -0
  1650. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_template_int_int_topLeftCorner_int_int.cpp +6 -0
  1651. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_template_int_int_topRightCorner.cpp +6 -0
  1652. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_template_int_int_topRightCorner_int_int.cpp +6 -0
  1653. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_template_int_leftCols.cpp +6 -0
  1654. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_template_int_rightCols.cpp +6 -0
  1655. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_template_int_segment.cpp +5 -0
  1656. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_template_int_start.cpp +5 -0
  1657. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_template_int_topRows.cpp +6 -0
  1658. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_topLeftCorner_int_int.cpp +6 -0
  1659. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_topRightCorner_int_int.cpp +6 -0
  1660. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_topRows_int.cpp +6 -0
  1661. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_transpose.cpp +8 -0
  1662. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_triangularView.cpp +9 -0
  1663. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_zero.cpp +2 -0
  1664. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_zero_int.cpp +2 -0
  1665. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/MatrixBase_zero_int_int.cpp +1 -0
  1666. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Matrix_Map_stride.cpp +7 -0
  1667. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Matrix_initializer_list_23_cxx11.cpp +5 -0
  1668. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Matrix_initializer_list_vector_cxx11.cpp +2 -0
  1669. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Matrix_resize_NoChange_int.cpp +3 -0
  1670. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Matrix_resize_int.cpp +6 -0
  1671. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Matrix_resize_int_NoChange.cpp +3 -0
  1672. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Matrix_resize_int_int.cpp +9 -0
  1673. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Matrix_setConstant_int.cpp +3 -0
  1674. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Matrix_setConstant_int_int.cpp +3 -0
  1675. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Matrix_setIdentity_int_int.cpp +3 -0
  1676. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Matrix_setOnes_int.cpp +3 -0
  1677. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Matrix_setOnes_int_int.cpp +3 -0
  1678. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Matrix_setRandom_int.cpp +3 -0
  1679. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Matrix_setRandom_int_int.cpp +3 -0
  1680. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Matrix_setZero_int.cpp +3 -0
  1681. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Matrix_setZero_int_int.cpp +3 -0
  1682. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Matrix_variadic_ctor_cxx11.cpp +3 -0
  1683. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/PartialPivLU_solve.cpp +7 -0
  1684. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/PartialRedux_count.cpp +5 -0
  1685. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/PartialRedux_maxCoeff.cpp +3 -0
  1686. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/PartialRedux_minCoeff.cpp +3 -0
  1687. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/PartialRedux_norm.cpp +3 -0
  1688. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/PartialRedux_prod.cpp +3 -0
  1689. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/PartialRedux_squaredNorm.cpp +3 -0
  1690. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/PartialRedux_sum.cpp +3 -0
  1691. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/RealQZ_compute.cpp +17 -0
  1692. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/RealSchur_RealSchur_MatrixType.cpp +10 -0
  1693. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/RealSchur_compute.cpp +6 -0
  1694. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/SelfAdjointEigenSolver_SelfAdjointEigenSolver.cpp +7 -0
  1695. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/SelfAdjointEigenSolver_SelfAdjointEigenSolver_MatrixType.cpp +17 -0
  1696. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/SelfAdjointEigenSolver_SelfAdjointEigenSolver_MatrixType2.cpp +16 -0
  1697. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/SelfAdjointEigenSolver_compute_MatrixType.cpp +7 -0
  1698. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/SelfAdjointEigenSolver_compute_MatrixType2.cpp +9 -0
  1699. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/SelfAdjointEigenSolver_eigenvalues.cpp +4 -0
  1700. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/SelfAdjointEigenSolver_eigenvectors.cpp +4 -0
  1701. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/SelfAdjointEigenSolver_operatorInverseSqrt.cpp +9 -0
  1702. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/SelfAdjointEigenSolver_operatorSqrt.cpp +8 -0
  1703. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/SelfAdjointView_eigenvalues.cpp +3 -0
  1704. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/SelfAdjointView_operatorNorm.cpp +3 -0
  1705. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Slicing_arrayexpr.cpp +4 -0
  1706. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Slicing_custom_padding_cxx11.cpp +12 -0
  1707. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Slicing_rawarray_cxx11.cpp +5 -0
  1708. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Slicing_stdvector_cxx11.cpp +4 -0
  1709. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/SparseMatrix_coeffs.cpp +9 -0
  1710. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/TopicAliasing_block.cpp +7 -0
  1711. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/TopicAliasing_block_correct.cpp +7 -0
  1712. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/TopicAliasing_cwise.cpp +20 -0
  1713. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/TopicAliasing_mult1.cpp +4 -0
  1714. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/TopicAliasing_mult2.cpp +10 -0
  1715. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/TopicAliasing_mult3.cpp +4 -0
  1716. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/TopicAliasing_mult4.cpp +5 -0
  1717. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/TopicAliasing_mult5.cpp +5 -0
  1718. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/TopicStorageOrders_example.cpp +18 -0
  1719. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Triangular_solve.cpp +11 -0
  1720. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Tridiagonalization_Tridiagonalization_MatrixType.cpp +9 -0
  1721. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Tridiagonalization_compute.cpp +9 -0
  1722. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Tridiagonalization_decomposeInPlace.cpp +11 -0
  1723. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Tridiagonalization_diagonal.cpp +13 -0
  1724. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Tridiagonalization_householderCoefficients.cpp +6 -0
  1725. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Tridiagonalization_packedMatrix.cpp +8 -0
  1726. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Tutorial_AdvancedInitialization_Block.cpp +5 -0
  1727. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Tutorial_AdvancedInitialization_CommaTemporary.cpp +4 -0
  1728. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Tutorial_AdvancedInitialization_Join.cpp +11 -0
  1729. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Tutorial_AdvancedInitialization_LinSpaced.cpp +7 -0
  1730. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Tutorial_AdvancedInitialization_ThreeWays.cpp +20 -0
  1731. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Tutorial_AdvancedInitialization_Zero.cpp +13 -0
  1732. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Tutorial_Map_rowmajor.cpp +7 -0
  1733. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Tutorial_Map_using.cpp +21 -0
  1734. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Tutorial_ReshapeMat2Mat.cpp +6 -0
  1735. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Tutorial_ReshapeMat2Vec.cpp +11 -0
  1736. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Tutorial_SlicingCol.cpp +11 -0
  1737. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Tutorial_SlicingVec.cpp +4 -0
  1738. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Tutorial_commainit_01.cpp +5 -0
  1739. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Tutorial_commainit_01b.cpp +5 -0
  1740. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Tutorial_commainit_02.cpp +7 -0
  1741. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Tutorial_range_for_loop_1d_cxx11.cpp +4 -0
  1742. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Tutorial_range_for_loop_2d_cxx11.cpp +5 -0
  1743. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Tutorial_reshaped_vs_resize_1.cpp +5 -0
  1744. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Tutorial_reshaped_vs_resize_2.cpp +6 -0
  1745. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Tutorial_solve_matrix_inverse.cpp +6 -0
  1746. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Tutorial_solve_multiple_rhs.cpp +10 -0
  1747. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Tutorial_solve_reuse_decomposition.cpp +13 -0
  1748. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Tutorial_solve_singular.cpp +9 -0
  1749. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Tutorial_solve_triangular.cpp +8 -0
  1750. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Tutorial_solve_triangular_inplace.cpp +6 -0
  1751. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Tutorial_std_sort.cpp +4 -0
  1752. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Tutorial_std_sort_rows_cxx11.cpp +5 -0
  1753. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/VectorwiseOp_homogeneous.cpp +6 -0
  1754. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/Vectorwise_reverse.cpp +10 -0
  1755. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/class_FullPivLU.cpp +16 -0
  1756. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/compile_snippet.cpp.in +24 -0
  1757. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/tut_arithmetic_redux_minmax.cpp +12 -0
  1758. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/tut_arithmetic_transpose_aliasing.cpp +5 -0
  1759. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/tut_arithmetic_transpose_conjugate.cpp +12 -0
  1760. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/tut_arithmetic_transpose_inplace.cpp +6 -0
  1761. rclib-0.0.4/cpp_core/third_party/eigen/doc/snippets/tut_matrix_assignment_resizing.cpp +5 -0
  1762. rclib-0.0.4/cpp_core/third_party/eigen/doc/special_examples/CMakeLists.txt +34 -0
  1763. rclib-0.0.4/cpp_core/third_party/eigen/doc/special_examples/Tutorial_sparse_example.cpp +38 -0
  1764. rclib-0.0.4/cpp_core/third_party/eigen/doc/special_examples/Tutorial_sparse_example_details.cpp +44 -0
  1765. rclib-0.0.4/cpp_core/third_party/eigen/doc/special_examples/random_cpp11.cpp +14 -0
  1766. rclib-0.0.4/cpp_core/third_party/eigen/doc/tutorial.cpp +62 -0
  1767. rclib-0.0.4/cpp_core/third_party/eigen/eigen3.pc.in +9 -0
  1768. rclib-0.0.4/cpp_core/third_party/eigen/failtest/CMakeLists.txt +70 -0
  1769. rclib-0.0.4/cpp_core/third_party/eigen/failtest/bdcsvd_int.cpp +14 -0
  1770. rclib-0.0.4/cpp_core/third_party/eigen/failtest/block_nonconst_ctor_on_const_xpr_0.cpp +15 -0
  1771. rclib-0.0.4/cpp_core/third_party/eigen/failtest/block_nonconst_ctor_on_const_xpr_1.cpp +15 -0
  1772. rclib-0.0.4/cpp_core/third_party/eigen/failtest/block_nonconst_ctor_on_const_xpr_2.cpp +16 -0
  1773. rclib-0.0.4/cpp_core/third_party/eigen/failtest/block_on_const_type_actually_const_0.cpp +16 -0
  1774. rclib-0.0.4/cpp_core/third_party/eigen/failtest/block_on_const_type_actually_const_1.cpp +16 -0
  1775. rclib-0.0.4/cpp_core/third_party/eigen/failtest/colpivqr_int.cpp +14 -0
  1776. rclib-0.0.4/cpp_core/third_party/eigen/failtest/const_qualified_block_method_retval_0.cpp +15 -0
  1777. rclib-0.0.4/cpp_core/third_party/eigen/failtest/const_qualified_block_method_retval_1.cpp +15 -0
  1778. rclib-0.0.4/cpp_core/third_party/eigen/failtest/const_qualified_diagonal_method_retval.cpp +15 -0
  1779. rclib-0.0.4/cpp_core/third_party/eigen/failtest/const_qualified_transpose_method_retval.cpp +15 -0
  1780. rclib-0.0.4/cpp_core/third_party/eigen/failtest/cwiseunaryview_nonconst_ctor_on_const_xpr.cpp +15 -0
  1781. rclib-0.0.4/cpp_core/third_party/eigen/failtest/cwiseunaryview_on_const_type_actually_const.cpp +16 -0
  1782. rclib-0.0.4/cpp_core/third_party/eigen/failtest/diagonal_nonconst_ctor_on_const_xpr.cpp +15 -0
  1783. rclib-0.0.4/cpp_core/third_party/eigen/failtest/diagonal_on_const_type_actually_const.cpp +16 -0
  1784. rclib-0.0.4/cpp_core/third_party/eigen/failtest/eigensolver_cplx.cpp +14 -0
  1785. rclib-0.0.4/cpp_core/third_party/eigen/failtest/eigensolver_int.cpp +14 -0
  1786. rclib-0.0.4/cpp_core/third_party/eigen/failtest/failtest_sanity_check.cpp +5 -0
  1787. rclib-0.0.4/cpp_core/third_party/eigen/failtest/fullpivlu_int.cpp +14 -0
  1788. rclib-0.0.4/cpp_core/third_party/eigen/failtest/fullpivqr_int.cpp +14 -0
  1789. rclib-0.0.4/cpp_core/third_party/eigen/failtest/initializer_list_1.cpp +14 -0
  1790. rclib-0.0.4/cpp_core/third_party/eigen/failtest/initializer_list_2.cpp +16 -0
  1791. rclib-0.0.4/cpp_core/third_party/eigen/failtest/jacobisvd_int.cpp +14 -0
  1792. rclib-0.0.4/cpp_core/third_party/eigen/failtest/ldlt_int.cpp +14 -0
  1793. rclib-0.0.4/cpp_core/third_party/eigen/failtest/llt_int.cpp +14 -0
  1794. rclib-0.0.4/cpp_core/third_party/eigen/failtest/map_nonconst_ctor_on_const_ptr_0.cpp +15 -0
  1795. rclib-0.0.4/cpp_core/third_party/eigen/failtest/map_nonconst_ctor_on_const_ptr_1.cpp +15 -0
  1796. rclib-0.0.4/cpp_core/third_party/eigen/failtest/map_nonconst_ctor_on_const_ptr_2.cpp +15 -0
  1797. rclib-0.0.4/cpp_core/third_party/eigen/failtest/map_nonconst_ctor_on_const_ptr_3.cpp +15 -0
  1798. rclib-0.0.4/cpp_core/third_party/eigen/failtest/map_nonconst_ctor_on_const_ptr_4.cpp +15 -0
  1799. rclib-0.0.4/cpp_core/third_party/eigen/failtest/map_on_const_type_actually_const_0.cpp +15 -0
  1800. rclib-0.0.4/cpp_core/third_party/eigen/failtest/map_on_const_type_actually_const_1.cpp +15 -0
  1801. rclib-0.0.4/cpp_core/third_party/eigen/failtest/partialpivlu_int.cpp +14 -0
  1802. rclib-0.0.4/cpp_core/third_party/eigen/failtest/qr_int.cpp +14 -0
  1803. rclib-0.0.4/cpp_core/third_party/eigen/failtest/ref_1.cpp +18 -0
  1804. rclib-0.0.4/cpp_core/third_party/eigen/failtest/ref_2.cpp +15 -0
  1805. rclib-0.0.4/cpp_core/third_party/eigen/failtest/ref_3.cpp +15 -0
  1806. rclib-0.0.4/cpp_core/third_party/eigen/failtest/ref_4.cpp +15 -0
  1807. rclib-0.0.4/cpp_core/third_party/eigen/failtest/ref_5.cpp +16 -0
  1808. rclib-0.0.4/cpp_core/third_party/eigen/failtest/selfadjointview_nonconst_ctor_on_const_xpr.cpp +15 -0
  1809. rclib-0.0.4/cpp_core/third_party/eigen/failtest/selfadjointview_on_const_type_actually_const.cpp +16 -0
  1810. rclib-0.0.4/cpp_core/third_party/eigen/failtest/sparse_ref_1.cpp +18 -0
  1811. rclib-0.0.4/cpp_core/third_party/eigen/failtest/sparse_ref_2.cpp +15 -0
  1812. rclib-0.0.4/cpp_core/third_party/eigen/failtest/sparse_ref_3.cpp +15 -0
  1813. rclib-0.0.4/cpp_core/third_party/eigen/failtest/sparse_ref_4.cpp +15 -0
  1814. rclib-0.0.4/cpp_core/third_party/eigen/failtest/sparse_ref_5.cpp +16 -0
  1815. rclib-0.0.4/cpp_core/third_party/eigen/failtest/sparse_storage_mismatch.cpp +16 -0
  1816. rclib-0.0.4/cpp_core/third_party/eigen/failtest/swap_1.cpp +14 -0
  1817. rclib-0.0.4/cpp_core/third_party/eigen/failtest/swap_2.cpp +14 -0
  1818. rclib-0.0.4/cpp_core/third_party/eigen/failtest/ternary_1.cpp +13 -0
  1819. rclib-0.0.4/cpp_core/third_party/eigen/failtest/ternary_2.cpp +13 -0
  1820. rclib-0.0.4/cpp_core/third_party/eigen/failtest/transpose_nonconst_ctor_on_const_xpr.cpp +15 -0
  1821. rclib-0.0.4/cpp_core/third_party/eigen/failtest/transpose_on_const_type_actually_const.cpp +16 -0
  1822. rclib-0.0.4/cpp_core/third_party/eigen/failtest/triangularview_nonconst_ctor_on_const_xpr.cpp +15 -0
  1823. rclib-0.0.4/cpp_core/third_party/eigen/failtest/triangularview_on_const_type_actually_const.cpp +16 -0
  1824. rclib-0.0.4/cpp_core/third_party/eigen/lapack/CMakeLists.txt +465 -0
  1825. rclib-0.0.4/cpp_core/third_party/eigen/lapack/cholesky.cpp +72 -0
  1826. rclib-0.0.4/cpp_core/third_party/eigen/lapack/clacgv.f +116 -0
  1827. rclib-0.0.4/cpp_core/third_party/eigen/lapack/cladiv.f +97 -0
  1828. rclib-0.0.4/cpp_core/third_party/eigen/lapack/clarf.f +232 -0
  1829. rclib-0.0.4/cpp_core/third_party/eigen/lapack/clarfb.f +771 -0
  1830. rclib-0.0.4/cpp_core/third_party/eigen/lapack/clarfg.f +203 -0
  1831. rclib-0.0.4/cpp_core/third_party/eigen/lapack/clarft.f +328 -0
  1832. rclib-0.0.4/cpp_core/third_party/eigen/lapack/complex_double.cpp +18 -0
  1833. rclib-0.0.4/cpp_core/third_party/eigen/lapack/complex_single.cpp +18 -0
  1834. rclib-0.0.4/cpp_core/third_party/eigen/lapack/dladiv.f +128 -0
  1835. rclib-0.0.4/cpp_core/third_party/eigen/lapack/dlamch.f +189 -0
  1836. rclib-0.0.4/cpp_core/third_party/eigen/lapack/dlapy2.f +104 -0
  1837. rclib-0.0.4/cpp_core/third_party/eigen/lapack/dlapy3.f +111 -0
  1838. rclib-0.0.4/cpp_core/third_party/eigen/lapack/dlarf.f +227 -0
  1839. rclib-0.0.4/cpp_core/third_party/eigen/lapack/dlarfb.f +762 -0
  1840. rclib-0.0.4/cpp_core/third_party/eigen/lapack/dlarfg.f +196 -0
  1841. rclib-0.0.4/cpp_core/third_party/eigen/lapack/dlarft.f +326 -0
  1842. rclib-0.0.4/cpp_core/third_party/eigen/lapack/double.cpp +18 -0
  1843. rclib-0.0.4/cpp_core/third_party/eigen/lapack/dsecnd_NONE.f +52 -0
  1844. rclib-0.0.4/cpp_core/third_party/eigen/lapack/eigenvalues.cpp +62 -0
  1845. rclib-0.0.4/cpp_core/third_party/eigen/lapack/ilaclc.f +118 -0
  1846. rclib-0.0.4/cpp_core/third_party/eigen/lapack/ilaclr.f +121 -0
  1847. rclib-0.0.4/cpp_core/third_party/eigen/lapack/iladlc.f +118 -0
  1848. rclib-0.0.4/cpp_core/third_party/eigen/lapack/iladlr.f +121 -0
  1849. rclib-0.0.4/cpp_core/third_party/eigen/lapack/ilaslc.f +118 -0
  1850. rclib-0.0.4/cpp_core/third_party/eigen/lapack/ilaslr.f +121 -0
  1851. rclib-0.0.4/cpp_core/third_party/eigen/lapack/ilazlc.f +118 -0
  1852. rclib-0.0.4/cpp_core/third_party/eigen/lapack/ilazlr.f +121 -0
  1853. rclib-0.0.4/cpp_core/third_party/eigen/lapack/lapack_common.h +29 -0
  1854. rclib-0.0.4/cpp_core/third_party/eigen/lapack/lu.cpp +89 -0
  1855. rclib-0.0.4/cpp_core/third_party/eigen/lapack/second_NONE.f +52 -0
  1856. rclib-0.0.4/cpp_core/third_party/eigen/lapack/single.cpp +18 -0
  1857. rclib-0.0.4/cpp_core/third_party/eigen/lapack/sladiv.f +128 -0
  1858. rclib-0.0.4/cpp_core/third_party/eigen/lapack/slamch.f +192 -0
  1859. rclib-0.0.4/cpp_core/third_party/eigen/lapack/slapy2.f +104 -0
  1860. rclib-0.0.4/cpp_core/third_party/eigen/lapack/slapy3.f +111 -0
  1861. rclib-0.0.4/cpp_core/third_party/eigen/lapack/slarf.f +227 -0
  1862. rclib-0.0.4/cpp_core/third_party/eigen/lapack/slarfb.f +763 -0
  1863. rclib-0.0.4/cpp_core/third_party/eigen/lapack/slarfg.f +196 -0
  1864. rclib-0.0.4/cpp_core/third_party/eigen/lapack/slarft.f +326 -0
  1865. rclib-0.0.4/cpp_core/third_party/eigen/lapack/svd.cpp +138 -0
  1866. rclib-0.0.4/cpp_core/third_party/eigen/lapack/zlacgv.f +116 -0
  1867. rclib-0.0.4/cpp_core/third_party/eigen/lapack/zladiv.f +97 -0
  1868. rclib-0.0.4/cpp_core/third_party/eigen/lapack/zlarf.f +232 -0
  1869. rclib-0.0.4/cpp_core/third_party/eigen/lapack/zlarfb.f +774 -0
  1870. rclib-0.0.4/cpp_core/third_party/eigen/lapack/zlarfg.f +203 -0
  1871. rclib-0.0.4/cpp_core/third_party/eigen/lapack/zlarft.f +327 -0
  1872. rclib-0.0.4/cpp_core/third_party/eigen/scripts/CMakeLists.txt +6 -0
  1873. rclib-0.0.4/cpp_core/third_party/eigen/scripts/buildtests.in +22 -0
  1874. rclib-0.0.4/cpp_core/third_party/eigen/scripts/cdashtesting.cmake.in +49 -0
  1875. rclib-0.0.4/cpp_core/third_party/eigen/scripts/check.in +21 -0
  1876. rclib-0.0.4/cpp_core/third_party/eigen/scripts/debug.in +3 -0
  1877. rclib-0.0.4/cpp_core/third_party/eigen/scripts/eigen_gen_credits.cpp +232 -0
  1878. rclib-0.0.4/cpp_core/third_party/eigen/scripts/eigen_gen_docs +24 -0
  1879. rclib-0.0.4/cpp_core/third_party/eigen/scripts/eigen_gen_split_test_help.cmake +11 -0
  1880. rclib-0.0.4/cpp_core/third_party/eigen/scripts/eigen_monitor_perf.sh +25 -0
  1881. rclib-0.0.4/cpp_core/third_party/eigen/scripts/release.in +3 -0
  1882. rclib-0.0.4/cpp_core/third_party/eigen/scripts/relicense.py +69 -0
  1883. rclib-0.0.4/cpp_core/third_party/eigen/signature_of_eigen3_matrix_library +1 -0
  1884. rclib-0.0.4/cpp_core/third_party/eigen/test/AnnoyingScalar.h +165 -0
  1885. rclib-0.0.4/cpp_core/third_party/eigen/test/CMakeLists.txt +475 -0
  1886. rclib-0.0.4/cpp_core/third_party/eigen/test/MovableScalar.h +35 -0
  1887. rclib-0.0.4/cpp_core/third_party/eigen/test/SafeScalar.h +30 -0
  1888. rclib-0.0.4/cpp_core/third_party/eigen/test/adjoint.cpp +219 -0
  1889. rclib-0.0.4/cpp_core/third_party/eigen/test/array_cwise.cpp +726 -0
  1890. rclib-0.0.4/cpp_core/third_party/eigen/test/array_for_matrix.cpp +341 -0
  1891. rclib-0.0.4/cpp_core/third_party/eigen/test/array_of_string.cpp +32 -0
  1892. rclib-0.0.4/cpp_core/third_party/eigen/test/array_replicate.cpp +81 -0
  1893. rclib-0.0.4/cpp_core/third_party/eigen/test/array_reverse.cpp +204 -0
  1894. rclib-0.0.4/cpp_core/third_party/eigen/test/bandmatrix.cpp +71 -0
  1895. rclib-0.0.4/cpp_core/third_party/eigen/test/basicstuff.cpp +356 -0
  1896. rclib-0.0.4/cpp_core/third_party/eigen/test/bdcsvd.cpp +163 -0
  1897. rclib-0.0.4/cpp_core/third_party/eigen/test/bfloat16_float.cpp +378 -0
  1898. rclib-0.0.4/cpp_core/third_party/eigen/test/bicgstab.cpp +34 -0
  1899. rclib-0.0.4/cpp_core/third_party/eigen/test/blasutil.cpp +210 -0
  1900. rclib-0.0.4/cpp_core/third_party/eigen/test/block.cpp +317 -0
  1901. rclib-0.0.4/cpp_core/third_party/eigen/test/boostmultiprec.cpp +207 -0
  1902. rclib-0.0.4/cpp_core/third_party/eigen/test/bug1213.cpp +13 -0
  1903. rclib-0.0.4/cpp_core/third_party/eigen/test/bug1213.h +8 -0
  1904. rclib-0.0.4/cpp_core/third_party/eigen/test/bug1213_main.cpp +18 -0
  1905. rclib-0.0.4/cpp_core/third_party/eigen/test/cholesky.cpp +532 -0
  1906. rclib-0.0.4/cpp_core/third_party/eigen/test/cholmod_support.cpp +69 -0
  1907. rclib-0.0.4/cpp_core/third_party/eigen/test/clz.cpp +74 -0
  1908. rclib-0.0.4/cpp_core/third_party/eigen/test/commainitializer.cpp +118 -0
  1909. rclib-0.0.4/cpp_core/third_party/eigen/test/conjugate_gradient.cpp +34 -0
  1910. rclib-0.0.4/cpp_core/third_party/eigen/test/conservative_resize.cpp +167 -0
  1911. rclib-0.0.4/cpp_core/third_party/eigen/test/constructor.cpp +98 -0
  1912. rclib-0.0.4/cpp_core/third_party/eigen/test/corners.cpp +117 -0
  1913. rclib-0.0.4/cpp_core/third_party/eigen/test/ctorleak.cpp +81 -0
  1914. rclib-0.0.4/cpp_core/third_party/eigen/test/denseLM.cpp +190 -0
  1915. rclib-0.0.4/cpp_core/third_party/eigen/test/dense_storage.cpp +190 -0
  1916. rclib-0.0.4/cpp_core/third_party/eigen/test/determinant.cpp +66 -0
  1917. rclib-0.0.4/cpp_core/third_party/eigen/test/diagonal.cpp +105 -0
  1918. rclib-0.0.4/cpp_core/third_party/eigen/test/diagonal_matrix_variadic_ctor.cpp +185 -0
  1919. rclib-0.0.4/cpp_core/third_party/eigen/test/diagonalmatrices.cpp +173 -0
  1920. rclib-0.0.4/cpp_core/third_party/eigen/test/dontalign.cpp +62 -0
  1921. rclib-0.0.4/cpp_core/third_party/eigen/test/dynalloc.cpp +177 -0
  1922. rclib-0.0.4/cpp_core/third_party/eigen/test/eigen2support.cpp +65 -0
  1923. rclib-0.0.4/cpp_core/third_party/eigen/test/eigensolver_complex.cpp +176 -0
  1924. rclib-0.0.4/cpp_core/third_party/eigen/test/eigensolver_generalized_real.cpp +140 -0
  1925. rclib-0.0.4/cpp_core/third_party/eigen/test/eigensolver_generic.cpp +247 -0
  1926. rclib-0.0.4/cpp_core/third_party/eigen/test/eigensolver_selfadjoint.cpp +281 -0
  1927. rclib-0.0.4/cpp_core/third_party/eigen/test/evaluator_common.h +0 -0
  1928. rclib-0.0.4/cpp_core/third_party/eigen/test/evaluators.cpp +525 -0
  1929. rclib-0.0.4/cpp_core/third_party/eigen/test/exceptions.cpp +49 -0
  1930. rclib-0.0.4/cpp_core/third_party/eigen/test/fastmath.cpp +99 -0
  1931. rclib-0.0.4/cpp_core/third_party/eigen/test/first_aligned.cpp +51 -0
  1932. rclib-0.0.4/cpp_core/third_party/eigen/test/geo_alignedbox.cpp +531 -0
  1933. rclib-0.0.4/cpp_core/third_party/eigen/test/geo_eulerangles.cpp +112 -0
  1934. rclib-0.0.4/cpp_core/third_party/eigen/test/geo_homogeneous.cpp +125 -0
  1935. rclib-0.0.4/cpp_core/third_party/eigen/test/geo_hyperplane.cpp +192 -0
  1936. rclib-0.0.4/cpp_core/third_party/eigen/test/geo_orthomethods.cpp +134 -0
  1937. rclib-0.0.4/cpp_core/third_party/eigen/test/geo_parametrizedline.cpp +125 -0
  1938. rclib-0.0.4/cpp_core/third_party/eigen/test/geo_quaternion.cpp +332 -0
  1939. rclib-0.0.4/cpp_core/third_party/eigen/test/geo_transformations.cpp +737 -0
  1940. rclib-0.0.4/cpp_core/third_party/eigen/test/gpu_basic.cu +465 -0
  1941. rclib-0.0.4/cpp_core/third_party/eigen/test/gpu_common.h +176 -0
  1942. rclib-0.0.4/cpp_core/third_party/eigen/test/half_float.cpp +352 -0
  1943. rclib-0.0.4/cpp_core/third_party/eigen/test/hessenberg.cpp +62 -0
  1944. rclib-0.0.4/cpp_core/third_party/eigen/test/householder.cpp +148 -0
  1945. rclib-0.0.4/cpp_core/third_party/eigen/test/incomplete_cholesky.cpp +69 -0
  1946. rclib-0.0.4/cpp_core/third_party/eigen/test/indexed_view.cpp +473 -0
  1947. rclib-0.0.4/cpp_core/third_party/eigen/test/initializer_list_construction.cpp +385 -0
  1948. rclib-0.0.4/cpp_core/third_party/eigen/test/inplace_decomposition.cpp +110 -0
  1949. rclib-0.0.4/cpp_core/third_party/eigen/test/integer_types.cpp +173 -0
  1950. rclib-0.0.4/cpp_core/third_party/eigen/test/inverse.cpp +150 -0
  1951. rclib-0.0.4/cpp_core/third_party/eigen/test/io.cpp +71 -0
  1952. rclib-0.0.4/cpp_core/third_party/eigen/test/is_same_dense.cpp +41 -0
  1953. rclib-0.0.4/cpp_core/third_party/eigen/test/jacobi.cpp +80 -0
  1954. rclib-0.0.4/cpp_core/third_party/eigen/test/jacobisvd.cpp +156 -0
  1955. rclib-0.0.4/cpp_core/third_party/eigen/test/klu_support.cpp +32 -0
  1956. rclib-0.0.4/cpp_core/third_party/eigen/test/linearstructure.cpp +147 -0
  1957. rclib-0.0.4/cpp_core/third_party/eigen/test/lscg.cpp +37 -0
  1958. rclib-0.0.4/cpp_core/third_party/eigen/test/lu.cpp +252 -0
  1959. rclib-0.0.4/cpp_core/third_party/eigen/test/main.h +884 -0
  1960. rclib-0.0.4/cpp_core/third_party/eigen/test/mapped_matrix.cpp +207 -0
  1961. rclib-0.0.4/cpp_core/third_party/eigen/test/mapstaticmethods.cpp +177 -0
  1962. rclib-0.0.4/cpp_core/third_party/eigen/test/mapstride.cpp +260 -0
  1963. rclib-0.0.4/cpp_core/third_party/eigen/test/meta.cpp +138 -0
  1964. rclib-0.0.4/cpp_core/third_party/eigen/test/metis_support.cpp +25 -0
  1965. rclib-0.0.4/cpp_core/third_party/eigen/test/miscmatrices.cpp +46 -0
  1966. rclib-0.0.4/cpp_core/third_party/eigen/test/mixingtypes.cpp +330 -0
  1967. rclib-0.0.4/cpp_core/third_party/eigen/test/mpl2only.cpp +24 -0
  1968. rclib-0.0.4/cpp_core/third_party/eigen/test/nestbyvalue.cpp +37 -0
  1969. rclib-0.0.4/cpp_core/third_party/eigen/test/nesting_ops.cpp +107 -0
  1970. rclib-0.0.4/cpp_core/third_party/eigen/test/nomalloc.cpp +228 -0
  1971. rclib-0.0.4/cpp_core/third_party/eigen/test/nullary.cpp +341 -0
  1972. rclib-0.0.4/cpp_core/third_party/eigen/test/num_dimensions.cpp +90 -0
  1973. rclib-0.0.4/cpp_core/third_party/eigen/test/numext.cpp +275 -0
  1974. rclib-0.0.4/cpp_core/third_party/eigen/test/packetmath.cpp +1404 -0
  1975. rclib-0.0.4/cpp_core/third_party/eigen/test/packetmath_test_shared.h +275 -0
  1976. rclib-0.0.4/cpp_core/third_party/eigen/test/pardiso_support.cpp +29 -0
  1977. rclib-0.0.4/cpp_core/third_party/eigen/test/pastix_support.cpp +54 -0
  1978. rclib-0.0.4/cpp_core/third_party/eigen/test/permutationmatrices.cpp +181 -0
  1979. rclib-0.0.4/cpp_core/third_party/eigen/test/prec_inverse_4x4.cpp +82 -0
  1980. rclib-0.0.4/cpp_core/third_party/eigen/test/product.h +259 -0
  1981. rclib-0.0.4/cpp_core/third_party/eigen/test/product_extra.cpp +390 -0
  1982. rclib-0.0.4/cpp_core/third_party/eigen/test/product_large.cpp +131 -0
  1983. rclib-0.0.4/cpp_core/third_party/eigen/test/product_mmtr.cpp +106 -0
  1984. rclib-0.0.4/cpp_core/third_party/eigen/test/product_notemporary.cpp +209 -0
  1985. rclib-0.0.4/cpp_core/third_party/eigen/test/product_selfadjoint.cpp +86 -0
  1986. rclib-0.0.4/cpp_core/third_party/eigen/test/product_small.cpp +323 -0
  1987. rclib-0.0.4/cpp_core/third_party/eigen/test/product_symm.cpp +125 -0
  1988. rclib-0.0.4/cpp_core/third_party/eigen/test/product_syrk.cpp +146 -0
  1989. rclib-0.0.4/cpp_core/third_party/eigen/test/product_trmm.cpp +137 -0
  1990. rclib-0.0.4/cpp_core/third_party/eigen/test/product_trmv.cpp +90 -0
  1991. rclib-0.0.4/cpp_core/third_party/eigen/test/product_trsolve.cpp +127 -0
  1992. rclib-0.0.4/cpp_core/third_party/eigen/test/qr.cpp +130 -0
  1993. rclib-0.0.4/cpp_core/third_party/eigen/test/qr_colpivoting.cpp +368 -0
  1994. rclib-0.0.4/cpp_core/third_party/eigen/test/qr_fullpivoting.cpp +159 -0
  1995. rclib-0.0.4/cpp_core/third_party/eigen/test/qtvector.cpp +156 -0
  1996. rclib-0.0.4/cpp_core/third_party/eigen/test/rand.cpp +118 -0
  1997. rclib-0.0.4/cpp_core/third_party/eigen/test/random_without_cast_overflow.h +152 -0
  1998. rclib-0.0.4/cpp_core/third_party/eigen/test/real_qz.cpp +94 -0
  1999. rclib-0.0.4/cpp_core/third_party/eigen/test/redux.cpp +183 -0
  2000. rclib-0.0.4/cpp_core/third_party/eigen/test/ref.cpp +360 -0
  2001. rclib-0.0.4/cpp_core/third_party/eigen/test/reshape.cpp +235 -0
  2002. rclib-0.0.4/cpp_core/third_party/eigen/test/resize.cpp +41 -0
  2003. rclib-0.0.4/cpp_core/third_party/eigen/test/rvalue_types.cpp +157 -0
  2004. rclib-0.0.4/cpp_core/third_party/eigen/test/schur_complex.cpp +92 -0
  2005. rclib-0.0.4/cpp_core/third_party/eigen/test/schur_real.cpp +122 -0
  2006. rclib-0.0.4/cpp_core/third_party/eigen/test/selfadjoint.cpp +75 -0
  2007. rclib-0.0.4/cpp_core/third_party/eigen/test/simplicial_cholesky.cpp +50 -0
  2008. rclib-0.0.4/cpp_core/third_party/eigen/test/sizeof.cpp +47 -0
  2009. rclib-0.0.4/cpp_core/third_party/eigen/test/sizeoverflow.cpp +64 -0
  2010. rclib-0.0.4/cpp_core/third_party/eigen/test/smallvectors.cpp +67 -0
  2011. rclib-0.0.4/cpp_core/third_party/eigen/test/solverbase.h +36 -0
  2012. rclib-0.0.4/cpp_core/third_party/eigen/test/sparse.h +204 -0
  2013. rclib-0.0.4/cpp_core/third_party/eigen/test/sparseLM.cpp +176 -0
  2014. rclib-0.0.4/cpp_core/third_party/eigen/test/sparse_basic.cpp +760 -0
  2015. rclib-0.0.4/cpp_core/third_party/eigen/test/sparse_block.cpp +323 -0
  2016. rclib-0.0.4/cpp_core/third_party/eigen/test/sparse_permutations.cpp +236 -0
  2017. rclib-0.0.4/cpp_core/third_party/eigen/test/sparse_product.cpp +477 -0
  2018. rclib-0.0.4/cpp_core/third_party/eigen/test/sparse_ref.cpp +139 -0
  2019. rclib-0.0.4/cpp_core/third_party/eigen/test/sparse_solver.h +706 -0
  2020. rclib-0.0.4/cpp_core/third_party/eigen/test/sparse_solvers.cpp +125 -0
  2021. rclib-0.0.4/cpp_core/third_party/eigen/test/sparse_vector.cpp +163 -0
  2022. rclib-0.0.4/cpp_core/third_party/eigen/test/sparselu.cpp +45 -0
  2023. rclib-0.0.4/cpp_core/third_party/eigen/test/sparseqr.cpp +149 -0
  2024. rclib-0.0.4/cpp_core/third_party/eigen/test/special_numbers.cpp +58 -0
  2025. rclib-0.0.4/cpp_core/third_party/eigen/test/split_test_helper.h +5994 -0
  2026. rclib-0.0.4/cpp_core/third_party/eigen/test/spqr_support.cpp +64 -0
  2027. rclib-0.0.4/cpp_core/third_party/eigen/test/stable_norm.cpp +245 -0
  2028. rclib-0.0.4/cpp_core/third_party/eigen/test/stddeque.cpp +130 -0
  2029. rclib-0.0.4/cpp_core/third_party/eigen/test/stddeque_overload.cpp +158 -0
  2030. rclib-0.0.4/cpp_core/third_party/eigen/test/stdlist.cpp +130 -0
  2031. rclib-0.0.4/cpp_core/third_party/eigen/test/stdlist_overload.cpp +192 -0
  2032. rclib-0.0.4/cpp_core/third_party/eigen/test/stdvector.cpp +158 -0
  2033. rclib-0.0.4/cpp_core/third_party/eigen/test/stdvector_overload.cpp +161 -0
  2034. rclib-0.0.4/cpp_core/third_party/eigen/test/stl_iterators.cpp +562 -0
  2035. rclib-0.0.4/cpp_core/third_party/eigen/test/superlu_support.cpp +23 -0
  2036. rclib-0.0.4/cpp_core/third_party/eigen/test/svd_common.h +523 -0
  2037. rclib-0.0.4/cpp_core/third_party/eigen/test/svd_fill.h +118 -0
  2038. rclib-0.0.4/cpp_core/third_party/eigen/test/swap.cpp +94 -0
  2039. rclib-0.0.4/cpp_core/third_party/eigen/test/symbolic_index.cpp +84 -0
  2040. rclib-0.0.4/cpp_core/third_party/eigen/test/triangular.cpp +292 -0
  2041. rclib-0.0.4/cpp_core/third_party/eigen/test/type_alias.cpp +48 -0
  2042. rclib-0.0.4/cpp_core/third_party/eigen/test/umeyama.cpp +183 -0
  2043. rclib-0.0.4/cpp_core/third_party/eigen/test/umfpack_support.cpp +34 -0
  2044. rclib-0.0.4/cpp_core/third_party/eigen/test/unalignedcount.cpp +60 -0
  2045. rclib-0.0.4/cpp_core/third_party/eigen/test/upperbidiagonalization.cpp +43 -0
  2046. rclib-0.0.4/cpp_core/third_party/eigen/test/vectorization_logic.cpp +432 -0
  2047. rclib-0.0.4/cpp_core/third_party/eigen/test/vectorwiseop.cpp +298 -0
  2048. rclib-0.0.4/cpp_core/third_party/eigen/test/visitor.cpp +193 -0
  2049. rclib-0.0.4/cpp_core/third_party/eigen/test/zerosized.cpp +111 -0
  2050. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/CMakeLists.txt +11 -0
  2051. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/AdolcForward +159 -0
  2052. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/AlignedVector3 +234 -0
  2053. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/ArpackSupport +30 -0
  2054. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/AutoDiff +48 -0
  2055. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/BVH +95 -0
  2056. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CMakeLists.txt +32 -0
  2057. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/CMakeLists.txt +8 -0
  2058. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/Tensor +137 -0
  2059. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/TensorSymmetry +42 -0
  2060. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/ThreadPool +74 -0
  2061. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/README.md +1815 -0
  2062. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/Tensor.h +554 -0
  2063. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorArgMax.h +327 -0
  2064. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorAssign.h +242 -0
  2065. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorBase.h +1176 -0
  2066. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorBlock.h +1559 -0
  2067. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorBroadcasting.h +1083 -0
  2068. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorChipping.h +510 -0
  2069. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorConcatenation.h +373 -0
  2070. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorContraction.h +1019 -0
  2071. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorContractionBlocking.h +73 -0
  2072. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorContractionCuda.h +6 -0
  2073. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorContractionGpu.h +1413 -0
  2074. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorContractionMapper.h +575 -0
  2075. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorContractionSycl.h +1650 -0
  2076. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorContractionThreadPool.h +1679 -0
  2077. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorConversion.h +455 -0
  2078. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorConvolution.h +1126 -0
  2079. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorConvolutionSycl.h +536 -0
  2080. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorCostModel.h +213 -0
  2081. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorCustomOp.h +342 -0
  2082. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorDevice.h +137 -0
  2083. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceCuda.h +6 -0
  2084. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceDefault.h +104 -0
  2085. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceGpu.h +389 -0
  2086. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceSycl.h +1048 -0
  2087. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceThreadPool.h +409 -0
  2088. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorDimensionList.h +234 -0
  2089. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorDimensions.h +493 -0
  2090. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorEvalTo.h +229 -0
  2091. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorEvaluator.h +980 -0
  2092. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorExecutor.h +701 -0
  2093. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorExpr.h +389 -0
  2094. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorFFT.h +669 -0
  2095. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorFixedSize.h +377 -0
  2096. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorForcedEval.h +232 -0
  2097. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorForwardDeclarations.h +191 -0
  2098. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorFunctors.h +488 -0
  2099. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorGenerator.h +297 -0
  2100. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorGlobalFunctions.h +33 -0
  2101. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorGpuHipCudaDefines.h +99 -0
  2102. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorGpuHipCudaUndefines.h +44 -0
  2103. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorIO.h +79 -0
  2104. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorImagePatch.h +602 -0
  2105. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorIndexList.h +735 -0
  2106. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorInflation.h +244 -0
  2107. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorInitializer.h +82 -0
  2108. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorIntDiv.h +257 -0
  2109. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorLayoutSwap.h +213 -0
  2110. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorMacros.h +98 -0
  2111. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorMap.h +327 -0
  2112. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorMeta.h +311 -0
  2113. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorMorphing.h +1098 -0
  2114. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorPadding.h +705 -0
  2115. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorPatch.h +286 -0
  2116. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorRandom.h +317 -0
  2117. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorReduction.h +1000 -0
  2118. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorReductionCuda.h +6 -0
  2119. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorReductionGpu.h +973 -0
  2120. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorReductionSycl.h +582 -0
  2121. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorRef.h +454 -0
  2122. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorReverse.h +462 -0
  2123. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorScan.h +528 -0
  2124. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorScanSycl.h +513 -0
  2125. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorShuffling.h +466 -0
  2126. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorStorage.h +157 -0
  2127. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorStriding.h +341 -0
  2128. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorTrace.h +299 -0
  2129. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorTraits.h +264 -0
  2130. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorUInt128.h +249 -0
  2131. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorVolumePatch.h +628 -0
  2132. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/TensorSymmetry/DynamicSymmetry.h +293 -0
  2133. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/TensorSymmetry/StaticSymmetry.h +236 -0
  2134. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/TensorSymmetry/Symmetry.h +338 -0
  2135. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/TensorSymmetry/util/TemplateGroupTheory.h +669 -0
  2136. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/ThreadPool/Barrier.h +67 -0
  2137. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/ThreadPool/EventCount.h +249 -0
  2138. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/ThreadPool/NonBlockingThreadPool.h +486 -0
  2139. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/ThreadPool/RunQueue.h +236 -0
  2140. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/ThreadPool/ThreadCancel.h +23 -0
  2141. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/ThreadPool/ThreadEnvironment.h +40 -0
  2142. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/ThreadPool/ThreadLocal.h +301 -0
  2143. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/ThreadPool/ThreadPoolInterface.h +48 -0
  2144. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/ThreadPool/ThreadYield.h +20 -0
  2145. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/util/CXX11Meta.h +538 -0
  2146. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/util/CXX11Workarounds.h +88 -0
  2147. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/util/EmulateArray.h +261 -0
  2148. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/CXX11/src/util/MaxSizeVector.h +158 -0
  2149. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/EulerAngles +43 -0
  2150. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/FFT +420 -0
  2151. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/IterativeSolvers +51 -0
  2152. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/KroneckerProduct +36 -0
  2153. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/LevenbergMarquardt +49 -0
  2154. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/MPRealSupport +213 -0
  2155. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/MatrixFunctions +504 -0
  2156. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/MoreVectorization +24 -0
  2157. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/NonLinearOptimization +140 -0
  2158. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/NumericalDiff +56 -0
  2159. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/OpenGLSupport +322 -0
  2160. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/Polynomials +137 -0
  2161. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/Skyline +39 -0
  2162. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/SparseExtra +54 -0
  2163. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/SpecialFunctions +103 -0
  2164. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/Splines +35 -0
  2165. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/src/AutoDiff/AutoDiffJacobian.h +108 -0
  2166. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/src/AutoDiff/AutoDiffScalar.h +730 -0
  2167. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/src/AutoDiff/AutoDiffVector.h +220 -0
  2168. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/src/BVH/BVAlgorithms.h +293 -0
  2169. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/src/BVH/KdBVH.h +223 -0
  2170. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/src/Eigenvalues/ArpackSelfAdjointEigenSolver.h +790 -0
  2171. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/src/EulerAngles/CMakeLists.txt +6 -0
  2172. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/src/EulerAngles/EulerAngles.h +356 -0
  2173. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/src/EulerAngles/EulerSystem.h +306 -0
  2174. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/src/FFT/ei_fftw_impl.h +261 -0
  2175. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/src/FFT/ei_kissfft_impl.h +449 -0
  2176. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/src/IterativeSolvers/ConstrainedConjGrad.h +187 -0
  2177. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/src/IterativeSolvers/DGMRES.h +511 -0
  2178. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/src/IterativeSolvers/GMRES.h +335 -0
  2179. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/src/IterativeSolvers/IDRS.h +436 -0
  2180. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/src/IterativeSolvers/IncompleteLU.h +90 -0
  2181. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/src/IterativeSolvers/IterationController.h +154 -0
  2182. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/src/IterativeSolvers/MINRES.h +267 -0
  2183. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/src/IterativeSolvers/Scaling.h +193 -0
  2184. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h +305 -0
  2185. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/src/LevenbergMarquardt/CopyrightMINPACK.txt +52 -0
  2186. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/src/LevenbergMarquardt/LMcovar.h +84 -0
  2187. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/src/LevenbergMarquardt/LMonestep.h +202 -0
  2188. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/src/LevenbergMarquardt/LMpar.h +160 -0
  2189. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/src/LevenbergMarquardt/LMqrsolv.h +188 -0
  2190. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/src/LevenbergMarquardt/LevenbergMarquardt.h +396 -0
  2191. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/src/MatrixFunctions/MatrixExponential.h +441 -0
  2192. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/src/MatrixFunctions/MatrixFunction.h +569 -0
  2193. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/src/MatrixFunctions/MatrixLogarithm.h +373 -0
  2194. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/src/MatrixFunctions/MatrixPower.h +705 -0
  2195. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/src/MatrixFunctions/MatrixSquareRoot.h +368 -0
  2196. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/src/MatrixFunctions/StemFunction.h +117 -0
  2197. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/src/MoreVectorization/MathFunctions.h +95 -0
  2198. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/src/NonLinearOptimization/HybridNonLinearSolver.h +601 -0
  2199. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/src/NonLinearOptimization/LevenbergMarquardt.h +657 -0
  2200. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/src/NonLinearOptimization/chkder.h +66 -0
  2201. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/src/NonLinearOptimization/covar.h +70 -0
  2202. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/src/NonLinearOptimization/dogleg.h +107 -0
  2203. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/src/NonLinearOptimization/fdjac1.h +79 -0
  2204. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/src/NonLinearOptimization/lmpar.h +298 -0
  2205. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/src/NonLinearOptimization/qrsolv.h +91 -0
  2206. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/src/NonLinearOptimization/r1mpyq.h +30 -0
  2207. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/src/NonLinearOptimization/r1updt.h +99 -0
  2208. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/src/NonLinearOptimization/rwupdt.h +49 -0
  2209. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/src/NumericalDiff/NumericalDiff.h +130 -0
  2210. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/src/Polynomials/Companion.h +280 -0
  2211. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/src/Polynomials/PolynomialSolver.h +429 -0
  2212. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/src/Polynomials/PolynomialUtils.h +143 -0
  2213. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/src/Skyline/SkylineInplaceLU.h +352 -0
  2214. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/src/Skyline/SkylineMatrix.h +862 -0
  2215. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/src/Skyline/SkylineMatrixBase.h +212 -0
  2216. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/src/Skyline/SkylineProduct.h +295 -0
  2217. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/src/Skyline/SkylineStorage.h +259 -0
  2218. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/src/Skyline/SkylineUtil.h +89 -0
  2219. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/src/SparseExtra/BlockOfDynamicSparseMatrix.h +122 -0
  2220. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/src/SparseExtra/BlockSparseMatrix.h +1079 -0
  2221. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/src/SparseExtra/DynamicSparseMatrix.h +404 -0
  2222. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/src/SparseExtra/MarketIO.h +282 -0
  2223. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/src/SparseExtra/MatrixMarketIterator.h +247 -0
  2224. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/src/SparseExtra/RandomSetter.h +349 -0
  2225. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsArrayAPI.h +286 -0
  2226. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsBFloat16.h +68 -0
  2227. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsFunctors.h +357 -0
  2228. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsHalf.h +66 -0
  2229. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsImpl.h +1959 -0
  2230. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsPacketMath.h +118 -0
  2231. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/src/SpecialFunctions/HipVectorCompatibility.h +67 -0
  2232. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsArrayAPI.h +167 -0
  2233. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsBFloat16.h +58 -0
  2234. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsFunctors.h +330 -0
  2235. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsHalf.h +58 -0
  2236. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsImpl.h +2051 -0
  2237. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsPacketMath.h +79 -0
  2238. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/src/SpecialFunctions/arch/AVX/BesselFunctions.h +46 -0
  2239. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/src/SpecialFunctions/arch/AVX/SpecialFunctions.h +16 -0
  2240. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/src/SpecialFunctions/arch/AVX512/BesselFunctions.h +51 -0
  2241. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/src/SpecialFunctions/arch/AVX512/SpecialFunctions.h +16 -0
  2242. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/src/SpecialFunctions/arch/GPU/SpecialFunctions.h +369 -0
  2243. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/src/SpecialFunctions/arch/NEON/BesselFunctions.h +54 -0
  2244. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/src/SpecialFunctions/arch/NEON/SpecialFunctions.h +34 -0
  2245. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/src/Splines/Spline.h +507 -0
  2246. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/src/Splines/SplineFitting.h +431 -0
  2247. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/Eigen/src/Splines/SplineFwd.h +93 -0
  2248. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/README.txt +50 -0
  2249. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/bench/bench_svd.cpp +123 -0
  2250. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/doc/CMakeLists.txt +4 -0
  2251. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/doc/Overview.dox +31 -0
  2252. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/doc/SYCL.dox +9 -0
  2253. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/doc/eigendoxy_layout.xml.in +269 -0
  2254. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/doc/examples/BVH_Example.cpp +50 -0
  2255. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/doc/examples/CMakeLists.txt +23 -0
  2256. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/doc/examples/EulerAngles.cpp +46 -0
  2257. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/doc/examples/FFT.cpp +118 -0
  2258. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/doc/examples/MatrixExponential.cpp +16 -0
  2259. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/doc/examples/MatrixFunction.cpp +23 -0
  2260. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/doc/examples/MatrixLogarithm.cpp +15 -0
  2261. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/doc/examples/MatrixPower.cpp +16 -0
  2262. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/doc/examples/MatrixPower_optimal.cpp +17 -0
  2263. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/doc/examples/MatrixSine.cpp +20 -0
  2264. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/doc/examples/MatrixSinh.cpp +20 -0
  2265. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/doc/examples/MatrixSquareRoot.cpp +16 -0
  2266. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/doc/examples/PolynomialSolver1.cpp +53 -0
  2267. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/doc/examples/PolynomialUtils1.cpp +20 -0
  2268. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/doc/examples/SYCL/CMakeLists.txt +31 -0
  2269. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/doc/examples/SYCL/CwiseMul.cpp +63 -0
  2270. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/doc/snippets/CMakeLists.txt +26 -0
  2271. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/BVH.cpp +222 -0
  2272. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/CMakeLists.txt +338 -0
  2273. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/EulerAngles.cpp +296 -0
  2274. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/FFT.cpp +2 -0
  2275. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/FFTW.cpp +262 -0
  2276. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/NonLinearOptimization.cpp +1883 -0
  2277. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/NumericalDiff.cpp +114 -0
  2278. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/alignedvector3.cpp +87 -0
  2279. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/autodiff.cpp +387 -0
  2280. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/autodiff_scalar.cpp +101 -0
  2281. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/bessel_functions.cpp +370 -0
  2282. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_eventcount.cpp +142 -0
  2283. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_maxsizevector.cpp +77 -0
  2284. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_meta.cpp +357 -0
  2285. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_non_blocking_thread_pool.cpp +180 -0
  2286. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_runqueue.cpp +235 -0
  2287. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_argmax.cpp +294 -0
  2288. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_argmax_gpu.cu +253 -0
  2289. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_argmax_sycl.cpp +258 -0
  2290. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_assign.cpp +370 -0
  2291. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_block_access.cpp +576 -0
  2292. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_block_eval.cpp +858 -0
  2293. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_block_io.cpp +445 -0
  2294. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_broadcast_sycl.cpp +144 -0
  2295. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_broadcasting.cpp +349 -0
  2296. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_builtins_sycl.cpp +354 -0
  2297. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_cast_float16_gpu.cu +79 -0
  2298. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_casts.cpp +186 -0
  2299. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_chipping.cpp +425 -0
  2300. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_chipping_sycl.cpp +623 -0
  2301. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_comparisons.cpp +84 -0
  2302. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_complex_cwise_ops_gpu.cu +102 -0
  2303. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_complex_gpu.cu +186 -0
  2304. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_concatenation.cpp +143 -0
  2305. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_concatenation_sycl.cpp +180 -0
  2306. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_const.cpp +62 -0
  2307. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_contract_gpu.cu +234 -0
  2308. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_contract_sycl.cpp +1026 -0
  2309. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_contraction.cpp +601 -0
  2310. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_convolution.cpp +150 -0
  2311. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_convolution_sycl.cpp +469 -0
  2312. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_custom_index.cpp +100 -0
  2313. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_custom_op.cpp +111 -0
  2314. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_custom_op_sycl.cpp +170 -0
  2315. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_device.cu +396 -0
  2316. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_device_sycl.cpp +77 -0
  2317. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_dimension.cpp +88 -0
  2318. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_empty.cpp +40 -0
  2319. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_executor.cpp +731 -0
  2320. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_expr.cpp +464 -0
  2321. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_fft.cpp +304 -0
  2322. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_fixed_size.cpp +261 -0
  2323. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_forced_eval.cpp +79 -0
  2324. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_forced_eval_sycl.cpp +77 -0
  2325. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_generator.cpp +91 -0
  2326. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_generator_sycl.cpp +147 -0
  2327. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_gpu.cu +1626 -0
  2328. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_ifft.cpp +154 -0
  2329. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_image_op_sycl.cpp +103 -0
  2330. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_image_patch.cpp +809 -0
  2331. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_image_patch_sycl.cpp +1092 -0
  2332. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_index_list.cpp +385 -0
  2333. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_inflation.cpp +81 -0
  2334. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_inflation_sycl.cpp +136 -0
  2335. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_intdiv.cpp +147 -0
  2336. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_io.cpp +136 -0
  2337. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_layout_swap.cpp +61 -0
  2338. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_layout_swap_sycl.cpp +126 -0
  2339. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_lvalue.cpp +42 -0
  2340. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_map.cpp +327 -0
  2341. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_math.cpp +46 -0
  2342. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_math_sycl.cpp +105 -0
  2343. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_mixed_indices.cpp +53 -0
  2344. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_morphing.cpp +565 -0
  2345. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_morphing_sycl.cpp +386 -0
  2346. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_move.cpp +76 -0
  2347. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_notification.cpp +64 -0
  2348. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_of_complex.cpp +103 -0
  2349. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_of_const_values.cpp +105 -0
  2350. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_of_float16_gpu.cu +488 -0
  2351. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_of_strings.cpp +152 -0
  2352. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_padding.cpp +93 -0
  2353. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_padding_sycl.cpp +157 -0
  2354. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_patch.cpp +172 -0
  2355. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_patch_sycl.cpp +249 -0
  2356. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_random.cpp +86 -0
  2357. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_random_gpu.cu +86 -0
  2358. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_random_sycl.cpp +100 -0
  2359. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_reduction.cpp +532 -0
  2360. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_reduction_gpu.cu +154 -0
  2361. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_reduction_sycl.cpp +1014 -0
  2362. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_ref.cpp +248 -0
  2363. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_reverse.cpp +190 -0
  2364. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_reverse_sycl.cpp +253 -0
  2365. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_roundings.cpp +62 -0
  2366. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_scan.cpp +110 -0
  2367. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_scan_gpu.cu +78 -0
  2368. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_scan_sycl.cpp +141 -0
  2369. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_shuffling.cpp +283 -0
  2370. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_shuffling_sycl.cpp +117 -0
  2371. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_simple.cpp +327 -0
  2372. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_striding.cpp +119 -0
  2373. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_striding_sycl.cpp +203 -0
  2374. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_sugar.cpp +81 -0
  2375. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_sycl.cpp +361 -0
  2376. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_symmetry.cpp +818 -0
  2377. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_thread_local.cpp +149 -0
  2378. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_thread_pool.cpp +721 -0
  2379. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_trace.cpp +172 -0
  2380. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_uint128.cpp +160 -0
  2381. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_volume_patch.cpp +112 -0
  2382. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/cxx11_tensor_volume_patch_sycl.cpp +222 -0
  2383. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/dgmres.cpp +31 -0
  2384. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/forward_adolc.cpp +141 -0
  2385. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/gmres.cpp +31 -0
  2386. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/idrs.cpp +27 -0
  2387. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/kronecker_product.cpp +252 -0
  2388. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/levenberg_marquardt.cpp +1508 -0
  2389. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/matrix_exponential.cpp +141 -0
  2390. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/matrix_function.cpp +227 -0
  2391. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/matrix_functions.h +67 -0
  2392. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/matrix_power.cpp +204 -0
  2393. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/matrix_square_root.cpp +31 -0
  2394. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/minres.cpp +44 -0
  2395. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/mpreal_support.cpp +66 -0
  2396. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/openglsupport.cpp +600 -0
  2397. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/polynomialsolver.cpp +232 -0
  2398. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/polynomialutils.cpp +113 -0
  2399. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/sparse_extra.cpp +226 -0
  2400. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/special_functions.cpp +497 -0
  2401. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/special_packetmath.cpp +149 -0
  2402. rclib-0.0.4/cpp_core/third_party/eigen/unsupported/test/splines.cpp +281 -0
  2403. rclib-0.0.4/cpp_core/third_party/pybind11/.appveyor.yml +35 -0
  2404. rclib-0.0.4/cpp_core/third_party/pybind11/.clang-format +38 -0
  2405. rclib-0.0.4/cpp_core/third_party/pybind11/.clang-tidy +80 -0
  2406. rclib-0.0.4/cpp_core/third_party/pybind11/.cmake-format.yaml +73 -0
  2407. rclib-0.0.4/cpp_core/third_party/pybind11/.codespell-ignore-lines +35 -0
  2408. rclib-0.0.4/cpp_core/third_party/pybind11/.gitattributes +1 -0
  2409. rclib-0.0.4/cpp_core/third_party/pybind11/.github/CODEOWNERS +9 -0
  2410. rclib-0.0.4/cpp_core/third_party/pybind11/.github/CONTRIBUTING.md +349 -0
  2411. rclib-0.0.4/cpp_core/third_party/pybind11/.github/ISSUE_TEMPLATE/bug-report.yml +61 -0
  2412. rclib-0.0.4/cpp_core/third_party/pybind11/.github/ISSUE_TEMPLATE/config.yml +8 -0
  2413. rclib-0.0.4/cpp_core/third_party/pybind11/.github/dependabot.yml +15 -0
  2414. rclib-0.0.4/cpp_core/third_party/pybind11/.github/labeler.yml +13 -0
  2415. rclib-0.0.4/cpp_core/third_party/pybind11/.github/labeler_merged.yml +8 -0
  2416. rclib-0.0.4/cpp_core/third_party/pybind11/.github/matchers/pylint.json +32 -0
  2417. rclib-0.0.4/cpp_core/third_party/pybind11/.github/pull_request_template.md +15 -0
  2418. rclib-0.0.4/cpp_core/third_party/pybind11/.github/workflows/ci.yml +1279 -0
  2419. rclib-0.0.4/cpp_core/third_party/pybind11/.github/workflows/configure.yml +85 -0
  2420. rclib-0.0.4/cpp_core/third_party/pybind11/.github/workflows/docs-link.yml +41 -0
  2421. rclib-0.0.4/cpp_core/third_party/pybind11/.github/workflows/format.yml +54 -0
  2422. rclib-0.0.4/cpp_core/third_party/pybind11/.github/workflows/labeler.yml +25 -0
  2423. rclib-0.0.4/cpp_core/third_party/pybind11/.github/workflows/nightlies.yml +59 -0
  2424. rclib-0.0.4/cpp_core/third_party/pybind11/.github/workflows/pip.yml +118 -0
  2425. rclib-0.0.4/cpp_core/third_party/pybind11/.github/workflows/reusable-standard.yml +96 -0
  2426. rclib-0.0.4/cpp_core/third_party/pybind11/.github/workflows/tests-cibw.yml +86 -0
  2427. rclib-0.0.4/cpp_core/third_party/pybind11/.github/workflows/upstream.yml +116 -0
  2428. rclib-0.0.4/cpp_core/third_party/pybind11/.gitignore +53 -0
  2429. rclib-0.0.4/cpp_core/third_party/pybind11/.pre-commit-config.yaml +149 -0
  2430. rclib-0.0.4/cpp_core/third_party/pybind11/.readthedocs.yml +20 -0
  2431. rclib-0.0.4/cpp_core/third_party/pybind11/CMakeLists.txt +423 -0
  2432. rclib-0.0.4/cpp_core/third_party/pybind11/CMakePresets.json +93 -0
  2433. rclib-0.0.4/cpp_core/third_party/pybind11/LICENSE +29 -0
  2434. rclib-0.0.4/cpp_core/third_party/pybind11/README.rst +216 -0
  2435. rclib-0.0.4/cpp_core/third_party/pybind11/SECURITY.md +13 -0
  2436. rclib-0.0.4/cpp_core/third_party/pybind11/docs/Doxyfile +21 -0
  2437. rclib-0.0.4/cpp_core/third_party/pybind11/docs/_static/css/custom.css +3 -0
  2438. rclib-0.0.4/cpp_core/third_party/pybind11/docs/advanced/cast/chrono.rst +81 -0
  2439. rclib-0.0.4/cpp_core/third_party/pybind11/docs/advanced/cast/custom.rst +137 -0
  2440. rclib-0.0.4/cpp_core/third_party/pybind11/docs/advanced/cast/eigen.rst +310 -0
  2441. rclib-0.0.4/cpp_core/third_party/pybind11/docs/advanced/cast/functional.rst +109 -0
  2442. rclib-0.0.4/cpp_core/third_party/pybind11/docs/advanced/cast/index.rst +43 -0
  2443. rclib-0.0.4/cpp_core/third_party/pybind11/docs/advanced/cast/overview.rst +170 -0
  2444. rclib-0.0.4/cpp_core/third_party/pybind11/docs/advanced/cast/stl.rst +249 -0
  2445. rclib-0.0.4/cpp_core/third_party/pybind11/docs/advanced/cast/strings.rst +296 -0
  2446. rclib-0.0.4/cpp_core/third_party/pybind11/docs/advanced/classes.rst +1408 -0
  2447. rclib-0.0.4/cpp_core/third_party/pybind11/docs/advanced/deadlock.md +391 -0
  2448. rclib-0.0.4/cpp_core/third_party/pybind11/docs/advanced/deprecated.rst +179 -0
  2449. rclib-0.0.4/cpp_core/third_party/pybind11/docs/advanced/embedding.rst +495 -0
  2450. rclib-0.0.4/cpp_core/third_party/pybind11/docs/advanced/exceptions.rst +422 -0
  2451. rclib-0.0.4/cpp_core/third_party/pybind11/docs/advanced/functions.rst +616 -0
  2452. rclib-0.0.4/cpp_core/third_party/pybind11/docs/advanced/misc.rst +615 -0
  2453. rclib-0.0.4/cpp_core/third_party/pybind11/docs/advanced/pycpp/index.rst +13 -0
  2454. rclib-0.0.4/cpp_core/third_party/pybind11/docs/advanced/pycpp/numpy.rst +493 -0
  2455. rclib-0.0.4/cpp_core/third_party/pybind11/docs/advanced/pycpp/object.rst +286 -0
  2456. rclib-0.0.4/cpp_core/third_party/pybind11/docs/advanced/pycpp/utilities.rst +155 -0
  2457. rclib-0.0.4/cpp_core/third_party/pybind11/docs/advanced/smart_ptrs.rst +179 -0
  2458. rclib-0.0.4/cpp_core/third_party/pybind11/docs/basics.rst +314 -0
  2459. rclib-0.0.4/cpp_core/third_party/pybind11/docs/benchmark.py +89 -0
  2460. rclib-0.0.4/cpp_core/third_party/pybind11/docs/benchmark.rst +95 -0
  2461. rclib-0.0.4/cpp_core/third_party/pybind11/docs/changelog.md +3234 -0
  2462. rclib-0.0.4/cpp_core/third_party/pybind11/docs/classes.rst +652 -0
  2463. rclib-0.0.4/cpp_core/third_party/pybind11/docs/cmake/index.rst +8 -0
  2464. rclib-0.0.4/cpp_core/third_party/pybind11/docs/compiling.rst +731 -0
  2465. rclib-0.0.4/cpp_core/third_party/pybind11/docs/conf.py +369 -0
  2466. rclib-0.0.4/cpp_core/third_party/pybind11/docs/faq.rst +351 -0
  2467. rclib-0.0.4/cpp_core/third_party/pybind11/docs/index.rst +49 -0
  2468. rclib-0.0.4/cpp_core/third_party/pybind11/docs/installing.rst +105 -0
  2469. rclib-0.0.4/cpp_core/third_party/pybind11/docs/limitations.rst +68 -0
  2470. rclib-0.0.4/cpp_core/third_party/pybind11/docs/pybind11_vs_boost_python1.svg +427 -0
  2471. rclib-0.0.4/cpp_core/third_party/pybind11/docs/pybind11_vs_boost_python2.svg +427 -0
  2472. rclib-0.0.4/cpp_core/third_party/pybind11/docs/reference.rst +130 -0
  2473. rclib-0.0.4/cpp_core/third_party/pybind11/docs/release.rst +135 -0
  2474. rclib-0.0.4/cpp_core/third_party/pybind11/docs/requirements.in +7 -0
  2475. rclib-0.0.4/cpp_core/third_party/pybind11/docs/requirements.txt +91 -0
  2476. rclib-0.0.4/cpp_core/third_party/pybind11/docs/upgrade.rst +746 -0
  2477. rclib-0.0.4/cpp_core/third_party/pybind11/include/pybind11/attr.h +722 -0
  2478. rclib-0.0.4/cpp_core/third_party/pybind11/include/pybind11/buffer_info.h +208 -0
  2479. rclib-0.0.4/cpp_core/third_party/pybind11/include/pybind11/cast.h +2361 -0
  2480. rclib-0.0.4/cpp_core/third_party/pybind11/include/pybind11/chrono.h +228 -0
  2481. rclib-0.0.4/cpp_core/third_party/pybind11/include/pybind11/common.h +2 -0
  2482. rclib-0.0.4/cpp_core/third_party/pybind11/include/pybind11/complex.h +74 -0
  2483. rclib-0.0.4/cpp_core/third_party/pybind11/include/pybind11/conduit/README.txt +15 -0
  2484. rclib-0.0.4/cpp_core/third_party/pybind11/include/pybind11/conduit/pybind11_conduit_v1.h +116 -0
  2485. rclib-0.0.4/cpp_core/third_party/pybind11/include/pybind11/conduit/pybind11_platform_abi_id.h +87 -0
  2486. rclib-0.0.4/cpp_core/third_party/pybind11/include/pybind11/conduit/wrap_include_python_h.h +72 -0
  2487. rclib-0.0.4/cpp_core/third_party/pybind11/include/pybind11/critical_section.h +56 -0
  2488. rclib-0.0.4/cpp_core/third_party/pybind11/include/pybind11/detail/class.h +823 -0
  2489. rclib-0.0.4/cpp_core/third_party/pybind11/include/pybind11/detail/common.h +1348 -0
  2490. rclib-0.0.4/cpp_core/third_party/pybind11/include/pybind11/detail/cpp_conduit.h +75 -0
  2491. rclib-0.0.4/cpp_core/third_party/pybind11/include/pybind11/detail/descr.h +226 -0
  2492. rclib-0.0.4/cpp_core/third_party/pybind11/include/pybind11/detail/dynamic_raw_ptr_cast_if_possible.h +39 -0
  2493. rclib-0.0.4/cpp_core/third_party/pybind11/include/pybind11/detail/exception_translation.h +71 -0
  2494. rclib-0.0.4/cpp_core/third_party/pybind11/include/pybind11/detail/function_record_pyobject.h +191 -0
  2495. rclib-0.0.4/cpp_core/third_party/pybind11/include/pybind11/detail/init.h +538 -0
  2496. rclib-0.0.4/cpp_core/third_party/pybind11/include/pybind11/detail/internals.h +799 -0
  2497. rclib-0.0.4/cpp_core/third_party/pybind11/include/pybind11/detail/native_enum_data.h +209 -0
  2498. rclib-0.0.4/cpp_core/third_party/pybind11/include/pybind11/detail/pybind11_namespace_macros.h +82 -0
  2499. rclib-0.0.4/cpp_core/third_party/pybind11/include/pybind11/detail/struct_smart_holder.h +378 -0
  2500. rclib-0.0.4/cpp_core/third_party/pybind11/include/pybind11/detail/type_caster_base.h +1591 -0
  2501. rclib-0.0.4/cpp_core/third_party/pybind11/include/pybind11/detail/typeid.h +65 -0
  2502. rclib-0.0.4/cpp_core/third_party/pybind11/include/pybind11/detail/using_smart_holder.h +22 -0
  2503. rclib-0.0.4/cpp_core/third_party/pybind11/include/pybind11/detail/value_and_holder.h +90 -0
  2504. rclib-0.0.4/cpp_core/third_party/pybind11/include/pybind11/eigen/common.h +9 -0
  2505. rclib-0.0.4/cpp_core/third_party/pybind11/include/pybind11/eigen/matrix.h +723 -0
  2506. rclib-0.0.4/cpp_core/third_party/pybind11/include/pybind11/eigen/tensor.h +521 -0
  2507. rclib-0.0.4/cpp_core/third_party/pybind11/include/pybind11/eigen.h +12 -0
  2508. rclib-0.0.4/cpp_core/third_party/pybind11/include/pybind11/embed.h +320 -0
  2509. rclib-0.0.4/cpp_core/third_party/pybind11/include/pybind11/eval.h +161 -0
  2510. rclib-0.0.4/cpp_core/third_party/pybind11/include/pybind11/functional.h +147 -0
  2511. rclib-0.0.4/cpp_core/third_party/pybind11/include/pybind11/gil.h +199 -0
  2512. rclib-0.0.4/cpp_core/third_party/pybind11/include/pybind11/gil_safe_call_once.h +102 -0
  2513. rclib-0.0.4/cpp_core/third_party/pybind11/include/pybind11/gil_simple.h +37 -0
  2514. rclib-0.0.4/cpp_core/third_party/pybind11/include/pybind11/iostream.h +265 -0
  2515. rclib-0.0.4/cpp_core/third_party/pybind11/include/pybind11/native_enum.h +67 -0
  2516. rclib-0.0.4/cpp_core/third_party/pybind11/include/pybind11/numpy.h +2312 -0
  2517. rclib-0.0.4/cpp_core/third_party/pybind11/include/pybind11/operators.h +202 -0
  2518. rclib-0.0.4/cpp_core/third_party/pybind11/include/pybind11/options.h +92 -0
  2519. rclib-0.0.4/cpp_core/third_party/pybind11/include/pybind11/pybind11.h +3645 -0
  2520. rclib-0.0.4/cpp_core/third_party/pybind11/include/pybind11/pytypes.h +2680 -0
  2521. rclib-0.0.4/cpp_core/third_party/pybind11/include/pybind11/stl/filesystem.h +114 -0
  2522. rclib-0.0.4/cpp_core/third_party/pybind11/include/pybind11/stl.h +666 -0
  2523. rclib-0.0.4/cpp_core/third_party/pybind11/include/pybind11/stl_bind.h +858 -0
  2524. rclib-0.0.4/cpp_core/third_party/pybind11/include/pybind11/subinterpreter.h +299 -0
  2525. rclib-0.0.4/cpp_core/third_party/pybind11/include/pybind11/trampoline_self_life_support.h +65 -0
  2526. rclib-0.0.4/cpp_core/third_party/pybind11/include/pybind11/type_caster_pyobject_ptr.h +61 -0
  2527. rclib-0.0.4/cpp_core/third_party/pybind11/include/pybind11/typing.h +298 -0
  2528. rclib-0.0.4/cpp_core/third_party/pybind11/include/pybind11/warnings.h +75 -0
  2529. rclib-0.0.4/cpp_core/third_party/pybind11/noxfile.py +151 -0
  2530. rclib-0.0.4/cpp_core/third_party/pybind11/pybind11/__init__.py +19 -0
  2531. rclib-0.0.4/cpp_core/third_party/pybind11/pybind11/__main__.py +97 -0
  2532. rclib-0.0.4/cpp_core/third_party/pybind11/pybind11/_version.py +34 -0
  2533. rclib-0.0.4/cpp_core/third_party/pybind11/pybind11/commands.py +39 -0
  2534. rclib-0.0.4/cpp_core/third_party/pybind11/pybind11/py.typed +0 -0
  2535. rclib-0.0.4/cpp_core/third_party/pybind11/pybind11/setup_helpers.py +500 -0
  2536. rclib-0.0.4/cpp_core/third_party/pybind11/pyproject.toml +184 -0
  2537. rclib-0.0.4/cpp_core/third_party/pybind11/tests/CMakeLists.txt +658 -0
  2538. rclib-0.0.4/cpp_core/third_party/pybind11/tests/conftest.py +277 -0
  2539. rclib-0.0.4/cpp_core/third_party/pybind11/tests/constructor_stats.h +330 -0
  2540. rclib-0.0.4/cpp_core/third_party/pybind11/tests/cross_module_gil_utils.cpp +111 -0
  2541. rclib-0.0.4/cpp_core/third_party/pybind11/tests/cross_module_interleaved_error_already_set.cpp +54 -0
  2542. rclib-0.0.4/cpp_core/third_party/pybind11/tests/custom_exceptions.py +10 -0
  2543. rclib-0.0.4/cpp_core/third_party/pybind11/tests/eigen_tensor_avoid_stl_array.cpp +16 -0
  2544. rclib-0.0.4/cpp_core/third_party/pybind11/tests/env.py +37 -0
  2545. rclib-0.0.4/cpp_core/third_party/pybind11/tests/exo_planet_c_api.cpp +76 -0
  2546. rclib-0.0.4/cpp_core/third_party/pybind11/tests/exo_planet_pybind11.cpp +19 -0
  2547. rclib-0.0.4/cpp_core/third_party/pybind11/tests/extra_python_package/pytest.ini +0 -0
  2548. rclib-0.0.4/cpp_core/third_party/pybind11/tests/extra_python_package/test_files.py +383 -0
  2549. rclib-0.0.4/cpp_core/third_party/pybind11/tests/extra_setuptools/pytest.ini +0 -0
  2550. rclib-0.0.4/cpp_core/third_party/pybind11/tests/extra_setuptools/test_setuphelper.py +153 -0
  2551. rclib-0.0.4/cpp_core/third_party/pybind11/tests/home_planet_very_lonely_traveler.cpp +13 -0
  2552. rclib-0.0.4/cpp_core/third_party/pybind11/tests/local_bindings.h +92 -0
  2553. rclib-0.0.4/cpp_core/third_party/pybind11/tests/mod_per_interpreter_gil.cpp +20 -0
  2554. rclib-0.0.4/cpp_core/third_party/pybind11/tests/mod_shared_interpreter_gil.cpp +17 -0
  2555. rclib-0.0.4/cpp_core/third_party/pybind11/tests/object.h +205 -0
  2556. rclib-0.0.4/cpp_core/third_party/pybind11/tests/pure_cpp/CMakeLists.txt +20 -0
  2557. rclib-0.0.4/cpp_core/third_party/pybind11/tests/pure_cpp/smart_holder_poc.h +56 -0
  2558. rclib-0.0.4/cpp_core/third_party/pybind11/tests/pure_cpp/smart_holder_poc_test.cpp +427 -0
  2559. rclib-0.0.4/cpp_core/third_party/pybind11/tests/pybind11_cross_module_tests.cpp +149 -0
  2560. rclib-0.0.4/cpp_core/third_party/pybind11/tests/pybind11_tests.cpp +129 -0
  2561. rclib-0.0.4/cpp_core/third_party/pybind11/tests/pybind11_tests.h +119 -0
  2562. rclib-0.0.4/cpp_core/third_party/pybind11/tests/pyproject.toml +38 -0
  2563. rclib-0.0.4/cpp_core/third_party/pybind11/tests/pytest.ini +22 -0
  2564. rclib-0.0.4/cpp_core/third_party/pybind11/tests/requirements.txt +18 -0
  2565. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_async.cpp +25 -0
  2566. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_async.py +31 -0
  2567. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_buffers.cpp +442 -0
  2568. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_buffers.py +401 -0
  2569. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_builtin_casters.cpp +391 -0
  2570. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_builtin_casters.py +551 -0
  2571. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_call_policies.cpp +113 -0
  2572. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_call_policies.py +256 -0
  2573. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_callbacks.cpp +302 -0
  2574. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_callbacks.py +247 -0
  2575. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_chrono.cpp +81 -0
  2576. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_chrono.py +207 -0
  2577. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_class.cpp +681 -0
  2578. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_class.py +557 -0
  2579. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_class_release_gil_before_calling_cpp_dtor.cpp +53 -0
  2580. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_class_release_gil_before_calling_cpp_dtor.py +21 -0
  2581. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_class_sh_basic.cpp +248 -0
  2582. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_class_sh_basic.py +248 -0
  2583. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_class_sh_disowning.cpp +41 -0
  2584. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_class_sh_disowning.py +78 -0
  2585. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_class_sh_disowning_mi.cpp +85 -0
  2586. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_class_sh_disowning_mi.py +246 -0
  2587. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_class_sh_factory_constructors.cpp +156 -0
  2588. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_class_sh_factory_constructors.py +53 -0
  2589. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_class_sh_inheritance.cpp +90 -0
  2590. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_class_sh_inheritance.py +63 -0
  2591. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_class_sh_mi_thunks.cpp +93 -0
  2592. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_class_sh_mi_thunks.py +53 -0
  2593. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_class_sh_property.cpp +94 -0
  2594. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_class_sh_property.py +166 -0
  2595. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_class_sh_property_non_owning.cpp +63 -0
  2596. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_class_sh_property_non_owning.py +30 -0
  2597. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_class_sh_shared_ptr_copy_move.cpp +103 -0
  2598. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_class_sh_shared_ptr_copy_move.py +41 -0
  2599. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_class_sh_trampoline_basic.cpp +57 -0
  2600. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_class_sh_trampoline_basic.py +35 -0
  2601. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_class_sh_trampoline_self_life_support.cpp +86 -0
  2602. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_class_sh_trampoline_self_life_support.py +38 -0
  2603. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_class_sh_trampoline_shared_from_this.cpp +137 -0
  2604. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_class_sh_trampoline_shared_from_this.py +247 -0
  2605. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_class_sh_trampoline_shared_ptr_cpp_arg.cpp +92 -0
  2606. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_class_sh_trampoline_shared_ptr_cpp_arg.py +154 -0
  2607. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_class_sh_trampoline_unique_ptr.cpp +63 -0
  2608. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_class_sh_trampoline_unique_ptr.py +31 -0
  2609. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_class_sh_unique_ptr_custom_deleter.cpp +30 -0
  2610. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_class_sh_unique_ptr_custom_deleter.py +8 -0
  2611. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_class_sh_unique_ptr_member.cpp +50 -0
  2612. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_class_sh_unique_ptr_member.py +26 -0
  2613. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_class_sh_virtual_py_cpp_mix.cpp +58 -0
  2614. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_class_sh_virtual_py_cpp_mix.py +66 -0
  2615. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_cmake_build/CMakeLists.txt +91 -0
  2616. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_cmake_build/embed.cpp +23 -0
  2617. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_cmake_build/installed_embed/CMakeLists.txt +19 -0
  2618. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_cmake_build/installed_function/CMakeLists.txt +29 -0
  2619. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_cmake_build/installed_target/CMakeLists.txt +37 -0
  2620. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_cmake_build/main.cpp +6 -0
  2621. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_cmake_build/subdirectory_embed/CMakeLists.txt +38 -0
  2622. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_cmake_build/subdirectory_function/CMakeLists.txt +32 -0
  2623. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_cmake_build/subdirectory_target/CMakeLists.txt +38 -0
  2624. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_cmake_build/test.py +10 -0
  2625. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_const_name.cpp +55 -0
  2626. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_const_name.py +31 -0
  2627. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_constants_and_functions.cpp +158 -0
  2628. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_constants_and_functions.py +58 -0
  2629. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_copy_move.cpp +546 -0
  2630. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_copy_move.py +144 -0
  2631. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_cpp_conduit.cpp +22 -0
  2632. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_cpp_conduit.py +183 -0
  2633. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_cpp_conduit_traveler_bindings.h +47 -0
  2634. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_cpp_conduit_traveler_types.h +25 -0
  2635. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_cross_module_rtti/CMakeLists.txt +68 -0
  2636. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_cross_module_rtti/bindings.cpp +20 -0
  2637. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_cross_module_rtti/catch.cpp +22 -0
  2638. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_cross_module_rtti/lib.cpp +13 -0
  2639. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_cross_module_rtti/lib.h +30 -0
  2640. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_cross_module_rtti/test_cross_module_rtti.cpp +50 -0
  2641. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_custom_type_casters.cpp +217 -0
  2642. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_custom_type_casters.py +126 -0
  2643. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_custom_type_setup.cpp +49 -0
  2644. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_custom_type_setup.py +50 -0
  2645. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_docs_advanced_cast_custom.cpp +69 -0
  2646. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_docs_advanced_cast_custom.py +40 -0
  2647. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_docstring_options.cpp +129 -0
  2648. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_docstring_options.py +72 -0
  2649. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_eigen_matrix.cpp +447 -0
  2650. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_eigen_matrix.py +839 -0
  2651. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_eigen_tensor.cpp +18 -0
  2652. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_eigen_tensor.inl +338 -0
  2653. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_eigen_tensor.py +316 -0
  2654. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_embed/CMakeLists.txt +61 -0
  2655. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_embed/catch.cpp +43 -0
  2656. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_embed/external_module.cpp +24 -0
  2657. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_embed/test_interpreter.cpp +482 -0
  2658. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_embed/test_interpreter.py +16 -0
  2659. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_embed/test_subinterpreter.cpp +442 -0
  2660. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_embed/test_trampoline.py +18 -0
  2661. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_enum.cpp +149 -0
  2662. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_enum.py +344 -0
  2663. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_eval.cpp +118 -0
  2664. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_eval.py +52 -0
  2665. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_eval_call.py +5 -0
  2666. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_exceptions.cpp +427 -0
  2667. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_exceptions.h +13 -0
  2668. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_exceptions.py +439 -0
  2669. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_factory_constructors.cpp +430 -0
  2670. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_factory_constructors.py +531 -0
  2671. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_gil_scoped.cpp +144 -0
  2672. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_gil_scoped.py +285 -0
  2673. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_iostream.cpp +126 -0
  2674. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_iostream.py +297 -0
  2675. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_kwargs_and_defaults.cpp +331 -0
  2676. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_kwargs_and_defaults.py +471 -0
  2677. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_local_bindings.cpp +106 -0
  2678. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_local_bindings.py +257 -0
  2679. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_methods_and_attributes.cpp +492 -0
  2680. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_methods_and_attributes.py +568 -0
  2681. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_modules.cpp +124 -0
  2682. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_modules.py +146 -0
  2683. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_multiple_inheritance.cpp +341 -0
  2684. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_multiple_inheritance.py +500 -0
  2685. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_multiple_interpreters.py +200 -0
  2686. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_native_enum.cpp +258 -0
  2687. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_native_enum.py +322 -0
  2688. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_numpy_array.cpp +598 -0
  2689. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_numpy_array.py +710 -0
  2690. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_numpy_dtypes.cpp +745 -0
  2691. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_numpy_dtypes.py +464 -0
  2692. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_numpy_scalars.cpp +63 -0
  2693. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_numpy_scalars.py +54 -0
  2694. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_numpy_vectorize.cpp +107 -0
  2695. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_numpy_vectorize.py +268 -0
  2696. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_opaque_types.cpp +77 -0
  2697. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_opaque_types.py +64 -0
  2698. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_operator_overloading.cpp +281 -0
  2699. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_operator_overloading.py +161 -0
  2700. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_pickling.cpp +191 -0
  2701. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_pickling.py +149 -0
  2702. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_potentially_slicing_weak_ptr.cpp +168 -0
  2703. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_potentially_slicing_weak_ptr.py +174 -0
  2704. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_python_multiple_inheritance.cpp +45 -0
  2705. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_python_multiple_inheritance.py +36 -0
  2706. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_pytypes.cpp +1213 -0
  2707. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_pytypes.py +1349 -0
  2708. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_scoped_critical_section.cpp +275 -0
  2709. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_scoped_critical_section.py +30 -0
  2710. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_sequences_and_iterators.cpp +600 -0
  2711. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_sequences_and_iterators.py +307 -0
  2712. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_smart_ptr.cpp +587 -0
  2713. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_smart_ptr.py +357 -0
  2714. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_stl.cpp +666 -0
  2715. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_stl.py +735 -0
  2716. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_stl_binders.cpp +275 -0
  2717. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_stl_binders.py +414 -0
  2718. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_tagbased_polymorphic.cpp +148 -0
  2719. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_tagbased_polymorphic.py +30 -0
  2720. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_thread.cpp +72 -0
  2721. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_thread.py +68 -0
  2722. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_type_caster_pyobject_ptr.cpp +168 -0
  2723. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_type_caster_pyobject_ptr.py +124 -0
  2724. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_type_caster_std_function_specializations.cpp +46 -0
  2725. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_type_caster_std_function_specializations.py +15 -0
  2726. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_union.cpp +22 -0
  2727. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_union.py +10 -0
  2728. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_unnamed_namespace_a.cpp +37 -0
  2729. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_unnamed_namespace_a.py +30 -0
  2730. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_unnamed_namespace_b.cpp +13 -0
  2731. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_unnamed_namespace_b.py +7 -0
  2732. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_vector_unique_ptr_member.cpp +54 -0
  2733. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_vector_unique_ptr_member.py +16 -0
  2734. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_virtual_functions.cpp +592 -0
  2735. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_virtual_functions.py +468 -0
  2736. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_warnings.cpp +46 -0
  2737. rclib-0.0.4/cpp_core/third_party/pybind11/tests/test_warnings.py +68 -0
  2738. rclib-0.0.4/cpp_core/third_party/pybind11/tests/valgrind-numpy-scipy.supp +140 -0
  2739. rclib-0.0.4/cpp_core/third_party/pybind11/tests/valgrind-python.supp +117 -0
  2740. rclib-0.0.4/cpp_core/third_party/pybind11/tools/FindCatch.cmake +74 -0
  2741. rclib-0.0.4/cpp_core/third_party/pybind11/tools/FindEigen3.cmake +86 -0
  2742. rclib-0.0.4/cpp_core/third_party/pybind11/tools/FindPythonLibsNew.cmake +320 -0
  2743. rclib-0.0.4/cpp_core/third_party/pybind11/tools/JoinPaths.cmake +23 -0
  2744. rclib-0.0.4/cpp_core/third_party/pybind11/tools/check-style.sh +44 -0
  2745. rclib-0.0.4/cpp_core/third_party/pybind11/tools/cmake_uninstall.cmake.in +23 -0
  2746. rclib-0.0.4/cpp_core/third_party/pybind11/tools/codespell_ignore_lines_from_errors.py +40 -0
  2747. rclib-0.0.4/cpp_core/third_party/pybind11/tools/libsize.py +38 -0
  2748. rclib-0.0.4/cpp_core/third_party/pybind11/tools/make_changelog.py +121 -0
  2749. rclib-0.0.4/cpp_core/third_party/pybind11/tools/make_global.py +33 -0
  2750. rclib-0.0.4/cpp_core/third_party/pybind11/tools/pybind11.pc.in +7 -0
  2751. rclib-0.0.4/cpp_core/third_party/pybind11/tools/pybind11Common.cmake +447 -0
  2752. rclib-0.0.4/cpp_core/third_party/pybind11/tools/pybind11Config.cmake.in +240 -0
  2753. rclib-0.0.4/cpp_core/third_party/pybind11/tools/pybind11GuessPythonExtSuffix.cmake +86 -0
  2754. rclib-0.0.4/cpp_core/third_party/pybind11/tools/pybind11NewTools.cmake +353 -0
  2755. rclib-0.0.4/cpp_core/third_party/pybind11/tools/pybind11Tools.cmake +217 -0
  2756. rclib-0.0.4/cpp_core/third_party/pybind11/tools/test-pybind11GuessPythonExtSuffix.cmake +161 -0
  2757. rclib-0.0.4/docs/api/index.md +0 -0
  2758. rclib-0.0.4/docs/assets/ipa_logo.png +0 -0
  2759. rclib-0.0.4/docs/assets/mitou_target_logo.png +0 -0
  2760. rclib-0.0.4/docs/development/index.md +0 -0
  2761. rclib-0.0.4/docs/development/release_process.md +55 -0
  2762. rclib-0.0.4/docs/development/reports/RLS_Optimization_Report.md +158 -0
  2763. rclib-0.0.4/docs/development/reports/generate_pdf.sh +66 -0
  2764. rclib-0.0.4/docs/development/testing_roadmap.md +41 -0
  2765. rclib-0.0.4/docs/index.md +18 -0
  2766. rclib-0.0.4/docs/javascripts/mathjax.js +16 -0
  2767. rclib-0.0.4/docs/theory/index.md +0 -0
  2768. rclib-0.0.4/docs/user_guide/index.md +0 -0
  2769. rclib-0.0.4/examples/cpp/CMakeLists.txt +23 -0
  2770. rclib-0.0.4/examples/cpp/compare_online_learning.cpp +125 -0
  2771. rclib-0.0.4/examples/cpp/generative_prediction.cpp +96 -0
  2772. rclib-0.0.4/examples/cpp/mackey_glass.cpp +63 -0
  2773. rclib-0.0.4/examples/cpp/multi_dimensional_prediction.cpp +88 -0
  2774. rclib-0.0.4/examples/cpp/online_learning.cpp +65 -0
  2775. rclib-0.0.4/examples/cpp/performance_benchmark.cpp +138 -0
  2776. rclib-0.0.4/examples/cpp/quick_start.cpp +42 -0
  2777. rclib-0.0.4/examples/cpp/sine_wave_prediction.cpp +90 -0
  2778. rclib-0.0.4/examples/python/__init__.py +1 -0
  2779. rclib-0.0.4/examples/python/compare_online_learning.py +158 -0
  2780. rclib-0.0.4/examples/python/generative_prediction.py +123 -0
  2781. rclib-0.0.4/examples/python/mackey_glass.py +71 -0
  2782. rclib-0.0.4/examples/python/multi_dimensional_prediction.py +167 -0
  2783. rclib-0.0.4/examples/python/online_learning.py +74 -0
  2784. rclib-0.0.4/examples/python/quick_start.py +56 -0
  2785. rclib-0.0.4/examples/python/sine_wave_prediction.py +101 -0
  2786. rclib-0.0.4/mkdocs.yml +71 -0
  2787. rclib-0.0.4/noxfile.py +63 -0
  2788. rclib-0.0.4/pyproject.toml +272 -0
  2789. rclib-0.0.4/python/CMakeLists.txt +5 -0
  2790. rclib-0.0.4/python/rclib/__init__.py +8 -0
  2791. rclib-0.0.4/python/rclib/_rclib.cpp +63 -0
  2792. rclib-0.0.4/python/rclib/model.py +221 -0
  2793. rclib-0.0.4/python/rclib/py.typed +0 -0
  2794. rclib-0.0.4/python/rclib/readouts.py +47 -0
  2795. rclib-0.0.4/python/rclib/reservoirs.py +49 -0
  2796. rclib-0.0.4/scripts/bump_version.sh +68 -0
  2797. rclib-0.0.4/tests/cpp/CMakeLists.txt +42 -0
  2798. rclib-0.0.4/tests/cpp/test_bias_effect.cpp +75 -0
  2799. rclib-0.0.4/tests/cpp/test_integration_mackey_glass.cpp +71 -0
  2800. rclib-0.0.4/tests/cpp/test_integration_online_learning.cpp +74 -0
  2801. rclib-0.0.4/tests/cpp/test_lms_readout.cpp +60 -0
  2802. rclib-0.0.4/tests/cpp/test_model.cpp +106 -0
  2803. rclib-0.0.4/tests/cpp/test_nvar_reservoir.cpp +50 -0
  2804. rclib-0.0.4/tests/cpp/test_readout.cpp +47 -0
  2805. rclib-0.0.4/tests/cpp/test_reservoir.cpp +67 -0
  2806. rclib-0.0.4/tests/cpp/test_rls_readout.cpp +60 -0
  2807. rclib-0.0.4/tests/cpp/test_seed_consistency.cpp +31 -0
  2808. rclib-0.0.4/tests/python/__init__.py +1 -0
  2809. rclib-0.0.4/tests/python/test_bias_effect.py +68 -0
  2810. rclib-0.0.4/tests/python/test_integration_mackey_glass.py +89 -0
  2811. rclib-0.0.4/tests/python/test_integration_online_learning.py +61 -0
  2812. rclib-0.0.4/tests/python/test_model.py +88 -0
  2813. rclib-0.0.4/tests/python/test_readouts.py +153 -0
  2814. rclib-0.0.4/tests/python/test_reservoirs.py +137 -0
  2815. rclib-0.0.4/tests/python/test_seed_consistency.py +71 -0
@@ -0,0 +1,13 @@
1
+ ---
2
+ # from: https://github.com/pybind/pybind11/blob/master/.clang-format.yaml
3
+ # See all possible options and defaults with:
4
+ # clang-format --style=llvm --dump-config
5
+ BasedOnStyle: LLVM
6
+ ColumnLimit: 120
7
+ CommentPragmas: 'NOLINT:.*|^ IWYU pragma:'
8
+ IncludeBlocks: Regroup
9
+ IndentCaseLabels: true
10
+ IndentPPDirectives: AfterHash
11
+ Standard: c++17
12
+ StatementMacros: ['PyObject_HEAD']
13
+ ...
@@ -0,0 +1,3 @@
1
+ format:
2
+ line_width: 120
3
+ tab_size: 2
@@ -0,0 +1 @@
1
+ /cpp_core/third_party/
@@ -0,0 +1,96 @@
1
+ name: CI
2
+
3
+ on:
4
+ push:
5
+ branches: ["main", "develop"]
6
+ pull_request:
7
+ branches: ["main", "develop"]
8
+ workflow_dispatch:
9
+
10
+ concurrency:
11
+ group: ${{ github.workflow }}-${{ github.ref }}
12
+ cancel-in-progress: true
13
+
14
+ jobs:
15
+ tests-python:
16
+ name: Python Tests
17
+ runs-on: ubuntu-latest
18
+ strategy:
19
+ fail-fast: false
20
+ matrix:
21
+ python-version: ["3.11", "3.12", "3.13"]
22
+
23
+ steps:
24
+ - name: Checkout code
25
+ uses: actions/checkout@v4
26
+ with:
27
+ submodules: recursive
28
+
29
+ - name: Install system dependencies
30
+ run: |
31
+ sudo apt-get update
32
+ sudo apt-get install -y libomp-dev
33
+
34
+ - name: Install uv
35
+ uses: astral-sh/setup-uv@v5
36
+ with:
37
+ version: "latest"
38
+
39
+ - name: Set up Python ${{ matrix.python-version }}
40
+ run: uv python install ${{ matrix.python-version }}
41
+
42
+ - name: Run Tests
43
+ run: uv run nox -s tests-${{ matrix.python-version }}
44
+
45
+ tests-cpp:
46
+ name: C++ Tests
47
+ runs-on: ubuntu-latest
48
+ steps:
49
+ - name: Checkout code
50
+ uses: actions/checkout@v4
51
+ with:
52
+ submodules: recursive
53
+
54
+ - name: Install system dependencies
55
+ run: |
56
+ sudo apt-get update
57
+ sudo apt-get install -y libomp-dev
58
+
59
+ - name: Install uv
60
+ uses: astral-sh/setup-uv@v5
61
+ with:
62
+ version: "latest"
63
+
64
+ - name: Set up Python
65
+ run: uv python install 3.12
66
+
67
+ - name: Run C++ Tests
68
+ run: uv run nox -s tests_cpp
69
+
70
+ lint-type-check:
71
+ name: Lint & Type Check
72
+ runs-on: ubuntu-latest
73
+ steps:
74
+ - name: Checkout code
75
+ uses: actions/checkout@v4
76
+ with:
77
+ submodules: recursive
78
+
79
+ - name: Install system dependencies
80
+ run: |
81
+ sudo apt-get update
82
+ sudo apt-get install -y libomp-dev
83
+
84
+ - name: Install uv
85
+ uses: astral-sh/setup-uv@v5
86
+ with:
87
+ version: "latest"
88
+
89
+ - name: Set up Python
90
+ run: uv python install 3.12
91
+
92
+ - name: Run Lint
93
+ run: uv run nox -s lint
94
+
95
+ - name: Run Type Check
96
+ run: uv run nox -s type_check
@@ -0,0 +1,28 @@
1
+ name: Create Release Draft
2
+
3
+ on:
4
+ push:
5
+ tags:
6
+ - "v*"
7
+
8
+ permissions:
9
+ contents: write
10
+
11
+ jobs:
12
+ create-draft:
13
+ name: Create Release Draft
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - name: Checkout code
17
+ uses: actions/checkout@v4
18
+ with:
19
+ submodules: recursive
20
+
21
+ - name: Create Release Draft
22
+ env:
23
+ GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
24
+ run: |
25
+ gh release create ${{ github.ref_name }} \
26
+ --draft \
27
+ --generate-notes \
28
+ --title "${{ github.ref_name }}"
@@ -0,0 +1,47 @@
1
+ name: Deploy Docs
2
+
3
+ on:
4
+ push:
5
+ branches:
6
+ - main
7
+
8
+ concurrency:
9
+ group: ${{ github.workflow }}-${{ github.ref }}
10
+ cancel-in-progress: true
11
+
12
+ permissions:
13
+ contents: write
14
+ pages: write
15
+ id-token: write
16
+
17
+ jobs:
18
+ deploy:
19
+ runs-on: ubuntu-latest
20
+ steps:
21
+ - name: Checkout code
22
+ uses: actions/checkout@v4
23
+ with:
24
+ submodules: recursive
25
+
26
+ - name: Install system dependencies
27
+ run: |
28
+ sudo apt-get update
29
+ sudo apt-get install -y libomp-dev
30
+
31
+ - name: Install uv
32
+ uses: astral-sh/setup-uv@v5
33
+ with:
34
+ version: "latest"
35
+
36
+ - name: Set up Python
37
+ run: uv python install 3.12
38
+
39
+ - name: Build documentation
40
+ run: uv run nox -s docs
41
+
42
+ - name: Deploy documentation
43
+ run: |
44
+ uv run nox -s docs
45
+ uv run mkdocs gh-deploy --force --clean --verbose
46
+ env:
47
+ GH_TOKEN: ${{ github.token }}
@@ -0,0 +1,67 @@
1
+ name: Publish to PyPI
2
+
3
+ on:
4
+ release:
5
+ types: [published]
6
+ workflow_dispatch:
7
+
8
+ jobs:
9
+ build_wheels:
10
+ name: Build wheels on ${{ matrix.os }}
11
+ runs-on: ${{ matrix.os }}
12
+ strategy:
13
+ matrix:
14
+ os: [ubuntu-latest]
15
+
16
+ steps:
17
+ - name: Checkout code
18
+ uses: actions/checkout@v4
19
+ with:
20
+ submodules: recursive
21
+
22
+ - name: Build wheels
23
+ uses: pypa/cibuildwheel@v3.3.0
24
+
25
+ - uses: actions/upload-artifact@v4
26
+ with:
27
+ name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}
28
+ path: ./wheelhouse/*.whl
29
+
30
+ build_sdist:
31
+ name: Build source distribution
32
+ runs-on: ubuntu-latest
33
+ steps:
34
+ - name: Checkout code
35
+ uses: actions/checkout@v4
36
+ with:
37
+ submodules: recursive
38
+
39
+ - name: Install uv
40
+ uses: astral-sh/setup-uv@v5
41
+
42
+ - name: Build sdist
43
+ run: |
44
+ uv run --with scikit-build-core --with pybind11 uv build --sdist --no-build-isolation
45
+
46
+ - uses: actions/upload-artifact@v4
47
+ with:
48
+ name: cibw-sdist
49
+ path: dist/*.tar.gz
50
+
51
+ publish:
52
+ name: Publish to PyPI
53
+ needs: [build_wheels, build_sdist]
54
+ runs-on: ubuntu-latest
55
+ permissions:
56
+ # IMPORTANT: this permission is mandatory for Trusted Publishing
57
+ id-token: write
58
+ steps:
59
+ - name: Download all the dists
60
+ uses: actions/download-artifact@v4
61
+ with:
62
+ pattern: cibw-*
63
+ path: dist
64
+ merge-multiple: true
65
+
66
+ - name: Publish to PyPI
67
+ uses: pypa/gh-action-pypi-publish@release/v1
rclib-0.0.4/.gitignore ADDED
@@ -0,0 +1,115 @@
1
+ # Build artifacts
2
+ build/
3
+ _build/
4
+ build_serial/
5
+ build_user_omp/
6
+ build_eigen_omp/
7
+ build_scikit/
8
+ build_nox/
9
+
10
+ # Python
11
+ .venv/
12
+ env/
13
+ venv/
14
+ __pycache__/
15
+ *.pyc
16
+ *.egg-info/
17
+ dist/
18
+ .eggs/
19
+
20
+ # Distribution / packaging
21
+ .Python
22
+ build/
23
+ develop-eggs/
24
+ dist/
25
+ downloads/
26
+ eggs/
27
+ .eggs/
28
+ lib/
29
+ lib64/
30
+ parts/
31
+ sdist/
32
+ var/
33
+ wheels/
34
+ wheelhouse/
35
+ share/python-wheels/
36
+ *.egg-info/
37
+ .installed.cfg
38
+ *.egg
39
+ MANIFEST
40
+
41
+ # Unit test / coverage reports
42
+ htmlcov/
43
+ .tox/
44
+ .nox/
45
+ .coverage
46
+ .coverage.*
47
+ .cache
48
+ nosetests.xml
49
+ coverage.xml
50
+ *.cover
51
+ *.py,cover
52
+ .hypothesis/
53
+ .pytest_cache/
54
+ cover/
55
+
56
+ # mkdocs documentation
57
+ /site
58
+
59
+ # uv
60
+ uv.lock
61
+
62
+ # ruff
63
+ .ruff_cache/
64
+
65
+ # LSP config files
66
+ pyrightconfig.json
67
+
68
+ # CMake
69
+ CMakeCache.txt
70
+ CMakeFiles/
71
+ Makefile
72
+ cmake_install.cmake
73
+ install_manifest.txt
74
+ CTestTestfile.cmake
75
+
76
+ # C++
77
+ *.o
78
+ *.so
79
+ *.a
80
+ *.lo
81
+ *.la
82
+ *.dll
83
+
84
+ # Logs
85
+ *.log
86
+
87
+ # Temporary files
88
+ *.tmp
89
+ *~
90
+ *.png
91
+ !/docs/assets/*.png
92
+ *.csv
93
+
94
+ # IDEs
95
+ .vscode/
96
+ .idea/
97
+
98
+ # Caches
99
+ .cache/
100
+
101
+ # Build artifacts
102
+ .skbuild-info.json
103
+ .cmake/
104
+ CMakeInit.txt
105
+
106
+ # LaTeX build artifacts in docs/
107
+ /docs/*.aux
108
+ /docs/*.log
109
+ /docs/*.tex
110
+ /docs/*.fls
111
+ /docs/*.fdb_latexmk
112
+ /docs/*.synctex.gz
113
+ /docs/*.toc
114
+ /docs/*.out
115
+ /docs/listings_setup.tex
@@ -0,0 +1,9 @@
1
+ [submodule "cpp_core/third_party/eigen"]
2
+ path = cpp_core/third_party/eigen
3
+ url = https://gitlab.com/libeigen/eigen.git
4
+ [submodule "cpp_core/third_party/catch2"]
5
+ path = cpp_core/third_party/catch2
6
+ url = https://github.com/catchorg/Catch2.git
7
+ [submodule "cpp_core/third_party/pybind11"]
8
+ path = cpp_core/third_party/pybind11
9
+ url = https://github.com/pybind/pybind11.git
@@ -0,0 +1,85 @@
1
+ # To use:
2
+ #
3
+ # pre-commit run -a
4
+ #
5
+ # Or:
6
+ #
7
+ # pre-commit install # (runs every time you commit in git)
8
+ #
9
+ # To update this file:
10
+ #
11
+ # pre-commit autoupdate
12
+ #
13
+ # See https://github.com/pre-commit/pre-commit
14
+
15
+ ci:
16
+ autoupdate_commit_msg: "chore: update pre-commit hooks"
17
+ autofix_commit_msg: "style: pre-commit fixes"
18
+
19
+ repos:
20
+ - repo: https://github.com/pre-commit/pre-commit-hooks
21
+ rev: v6.0.0
22
+ hooks:
23
+ - id: trailing-whitespace
24
+ - id: end-of-file-fixer
25
+ - id: check-yaml
26
+ args: [--unsafe]
27
+ - id: check-toml
28
+ - id: check-added-large-files
29
+ - id: check-merge-conflict
30
+ - id: check-executables-have-shebangs
31
+ - id: check-illegal-windows-names
32
+ - id: check-symlinks
33
+ - id: debug-statements
34
+
35
+ - repo: https://github.com/astral-sh/ruff-pre-commit
36
+ rev: v0.14.10 # Ensure this matches or is newer than pyproject.toml
37
+ hooks:
38
+ # Run the linter and apply fixes
39
+ - id: ruff-check
40
+ args: [--fix, --exit-non-zero-on-fix, --config=pyproject.toml]
41
+ # Run the formatter
42
+ - id: ruff-format
43
+ exclude: ^(docs)
44
+ files: \.py$
45
+
46
+ # Changes tabs to spaces
47
+ - repo: https://github.com/Lucas-C/pre-commit-hooks
48
+ rev: v1.5.5
49
+ hooks:
50
+ - id: remove-tabs
51
+ exclude: ^(docs|.gitmodules|[Mm]akefile)
52
+
53
+ # Shell script linting
54
+ - repo: https://github.com/shellcheck-py/shellcheck-py
55
+ rev: v0.11.0.1
56
+ hooks:
57
+ - id: shellcheck
58
+
59
+ # CMake formatting
60
+ - repo: https://github.com/cheshirekow/cmake-format-precommit
61
+ rev: v0.6.13
62
+ hooks:
63
+ - id: cmake-format
64
+ additional_dependencies: [pyyaml>=5.1]
65
+ types: [file]
66
+ files: (\.cmake|CMakeLists.txt)(.in)?$
67
+ - id: cmake-lint
68
+ additional_dependencies: [pyyaml>=5.1]
69
+
70
+ # C++ formatting
71
+ - repo: https://github.com/pre-commit/mirrors-clang-format
72
+ rev: v21.1.8
73
+ hooks:
74
+ - id: clang-format
75
+ types_or: [c++, c, cuda]
76
+ exclude: ^cpp_core/third_party/
77
+
78
+ - repo: local
79
+ hooks:
80
+ - id: basedpyright
81
+ name: basedpyright
82
+ entry: uv run basedpyright
83
+ language: system
84
+ types: [python]
85
+ pass_filenames: false # Pyright needs full project context, not just changed files
@@ -0,0 +1,34 @@
1
+ cmake_minimum_required(VERSION 3.15)
2
+ project(rclib LANGUAGES CXX)
3
+
4
+ set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
5
+
6
+ if(NOT CMAKE_BUILD_TYPE)
7
+ set(CMAKE_BUILD_TYPE
8
+ Release
9
+ CACHE STRING "Choose the type of build." FORCE)
10
+ endif()
11
+
12
+ enable_testing()
13
+
14
+ # Add subdirectories for third-party dependencies
15
+ add_subdirectory(cpp_core/third_party/catch2)
16
+ set(PYBIND11_FINDPYTHON NEW)
17
+ add_subdirectory(cpp_core/third_party/pybind11)
18
+ add_subdirectory(cpp_core/third_party/eigen)
19
+
20
+ # Add the C++ core subdirectory
21
+ add_subdirectory(cpp_core)
22
+
23
+ # Add the Python binding subdirectory
24
+ add_subdirectory(python)
25
+
26
+ # Add the C++ tests subdirectory
27
+ if(BUILD_TESTING)
28
+ add_subdirectory(tests/cpp)
29
+ endif()
30
+
31
+ option(BUILD_EXAMPLES "Build examples" OFF)
32
+ if(BUILD_EXAMPLES)
33
+ add_subdirectory(examples/cpp)
34
+ endif()