pyvpmr 240515__tar.gz → 240921__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 (2377) hide show
  1. pyvpmr-240921/PKG-INFO +976 -0
  2. pyvpmr-240921/README.md +273 -0
  3. pyvpmr-240921/eigen/Eigen/Core +418 -0
  4. pyvpmr-240921/eigen/Eigen/Geometry +61 -0
  5. pyvpmr-240921/eigen/Eigen/OrderingMethods +73 -0
  6. pyvpmr-240921/eigen/Eigen/ThreadPool +79 -0
  7. pyvpmr-240921/eigen/Eigen/src/CholmodSupport/CholmodSupport.h +738 -0
  8. pyvpmr-240921/eigen/Eigen/src/Core/Array.h +367 -0
  9. pyvpmr-240921/eigen/Eigen/src/Core/CoreEvaluators.h +1685 -0
  10. pyvpmr-240921/eigen/Eigen/src/Core/DenseBase.h +647 -0
  11. pyvpmr-240921/eigen/Eigen/src/Core/DeviceWrapper.h +155 -0
  12. pyvpmr-240921/eigen/Eigen/src/Core/Dot.h +268 -0
  13. pyvpmr-240921/eigen/Eigen/src/Core/EigenBase.h +149 -0
  14. pyvpmr-240921/eigen/Eigen/src/Core/GeneralProduct.h +517 -0
  15. pyvpmr-240921/eigen/Eigen/src/Core/GenericPacketMath.h +1527 -0
  16. pyvpmr-240921/eigen/Eigen/src/Core/GlobalFunctions.h +229 -0
  17. pyvpmr-240921/eigen/Eigen/src/Core/InnerProduct.h +250 -0
  18. pyvpmr-240921/eigen/Eigen/src/Core/MathFunctions.h +1949 -0
  19. pyvpmr-240921/eigen/Eigen/src/Core/MathFunctionsImpl.h +262 -0
  20. pyvpmr-240921/eigen/Eigen/src/Core/Matrix.h +526 -0
  21. pyvpmr-240921/eigen/Eigen/src/Core/NumTraits.h +328 -0
  22. pyvpmr-240921/eigen/Eigen/src/Core/PermutationMatrix.h +552 -0
  23. pyvpmr-240921/eigen/Eigen/src/Core/PlainObjectBase.h +1050 -0
  24. pyvpmr-240921/eigen/Eigen/src/Core/Product.h +307 -0
  25. pyvpmr-240921/eigen/Eigen/src/Core/ProductEvaluators.h +1156 -0
  26. pyvpmr-240921/eigen/Eigen/src/Core/RandomImpl.h +253 -0
  27. pyvpmr-240921/eigen/Eigen/src/Core/Replicate.h +130 -0
  28. pyvpmr-240921/eigen/Eigen/src/Core/StableNorm.h +217 -0
  29. pyvpmr-240921/eigen/Eigen/src/Core/StlIterators.h +620 -0
  30. pyvpmr-240921/eigen/Eigen/src/Core/Transpositions.h +323 -0
  31. pyvpmr-240921/eigen/Eigen/src/Core/Visitor.h +789 -0
  32. pyvpmr-240921/eigen/Eigen/src/Core/arch/AVX/Complex.h +530 -0
  33. pyvpmr-240921/eigen/Eigen/src/Core/arch/AVX/MathFunctions.h +127 -0
  34. pyvpmr-240921/eigen/Eigen/src/Core/arch/AVX/PacketMath.h +2857 -0
  35. pyvpmr-240921/eigen/Eigen/src/Core/arch/AVX512/PacketMath.h +3092 -0
  36. pyvpmr-240921/eigen/Eigen/src/Core/arch/AVX512/PacketMathFP16.h +877 -0
  37. pyvpmr-240921/eigen/Eigen/src/Core/arch/AVX512/TrsmKernel.h +1167 -0
  38. pyvpmr-240921/eigen/Eigen/src/Core/arch/AVX512/TrsmUnrolls.inc +1218 -0
  39. pyvpmr-240921/eigen/Eigen/src/Core/arch/AVX512/TypeCasting.h +336 -0
  40. pyvpmr-240921/eigen/Eigen/src/Core/arch/AltiVec/MatrixProduct.h +3686 -0
  41. pyvpmr-240921/eigen/Eigen/src/Core/arch/AltiVec/PacketMath.h +3722 -0
  42. pyvpmr-240921/eigen/Eigen/src/Core/arch/Default/BFloat16.h +829 -0
  43. pyvpmr-240921/eigen/Eigen/src/Core/arch/Default/GenericPacketMathFunctions.h +2660 -0
  44. pyvpmr-240921/eigen/Eigen/src/Core/arch/Default/GenericPacketMathFunctionsFwd.h +204 -0
  45. pyvpmr-240921/eigen/Eigen/src/Core/arch/Default/Half.h +981 -0
  46. pyvpmr-240921/eigen/Eigen/src/Core/arch/GPU/PacketMath.h +1704 -0
  47. pyvpmr-240921/eigen/Eigen/src/Core/arch/HVX/PacketMath.h +1071 -0
  48. pyvpmr-240921/eigen/Eigen/src/Core/arch/MSA/PacketMath.h +1237 -0
  49. pyvpmr-240921/eigen/Eigen/src/Core/arch/NEON/Complex.h +752 -0
  50. pyvpmr-240921/eigen/Eigen/src/Core/arch/NEON/MathFunctions.h +67 -0
  51. pyvpmr-240921/eigen/Eigen/src/Core/arch/NEON/PacketMath.h +6175 -0
  52. pyvpmr-240921/eigen/Eigen/src/Core/arch/SSE/Complex.h +519 -0
  53. pyvpmr-240921/eigen/Eigen/src/Core/arch/SSE/PacketMath.h +2551 -0
  54. pyvpmr-240921/eigen/Eigen/src/Core/arch/SVE/PacketMath.h +671 -0
  55. pyvpmr-240921/eigen/Eigen/src/Core/arch/SVE/TypeCasting.h +52 -0
  56. pyvpmr-240921/eigen/Eigen/src/Core/arch/ZVector/PacketMath.h +1286 -0
  57. pyvpmr-240921/eigen/Eigen/src/Core/functors/UnaryFunctors.h +1400 -0
  58. pyvpmr-240921/eigen/Eigen/src/Core/products/GeneralBlockPanelKernel.h +3152 -0
  59. pyvpmr-240921/eigen/Eigen/src/Core/products/GeneralMatrixMatrix.h +459 -0
  60. pyvpmr-240921/eigen/Eigen/src/Core/products/GeneralMatrixMatrixTriangular_BLAS.h +148 -0
  61. pyvpmr-240921/eigen/Eigen/src/Core/products/GeneralMatrixVector.h +473 -0
  62. pyvpmr-240921/eigen/Eigen/src/Core/products/Parallelizer.h +275 -0
  63. pyvpmr-240921/eigen/Eigen/src/Core/products/TriangularSolverMatrix.h +388 -0
  64. pyvpmr-240921/eigen/Eigen/src/Core/util/ConfigureVectorization.h +529 -0
  65. pyvpmr-240921/eigen/Eigen/src/Core/util/Constants.h +595 -0
  66. pyvpmr-240921/eigen/Eigen/src/Core/util/ForwardDeclarations.h +510 -0
  67. pyvpmr-240921/eigen/Eigen/src/Core/util/IntegralConstant.h +279 -0
  68. pyvpmr-240921/eigen/Eigen/src/Core/util/Macros.h +1312 -0
  69. pyvpmr-240921/eigen/Eigen/src/Core/util/Memory.h +1336 -0
  70. pyvpmr-240921/eigen/Eigen/src/Core/util/Meta.h +753 -0
  71. pyvpmr-240921/eigen/Eigen/src/Core/util/SymbolicIndex.h +445 -0
  72. pyvpmr-240921/eigen/Eigen/src/Core/util/XprHelper.h +1089 -0
  73. pyvpmr-240921/eigen/Eigen/src/Eigenvalues/GeneralizedEigenSolver.h +402 -0
  74. pyvpmr-240921/eigen/Eigen/src/Geometry/Rotation2D.h +201 -0
  75. pyvpmr-240921/eigen/Eigen/src/Householder/BlockHouseholder.h +115 -0
  76. pyvpmr-240921/eigen/Eigen/src/IterativeLinearSolvers/SolveWithGuess.h +111 -0
  77. pyvpmr-240921/eigen/Eigen/src/LU/arch/InverseSize4.h +353 -0
  78. pyvpmr-240921/eigen/Eigen/src/OrderingMethods/Eigen_Colamd.h +1690 -0
  79. pyvpmr-240921/eigen/Eigen/src/SVD/BDCSVD.h +1465 -0
  80. pyvpmr-240921/eigen/Eigen/src/SVD/JacobiSVD.h +807 -0
  81. pyvpmr-240921/eigen/Eigen/src/SparseCore/SparseCwiseBinaryOp.h +938 -0
  82. pyvpmr-240921/eigen/Eigen/src/SparseCore/SparseDenseProduct.h +314 -0
  83. pyvpmr-240921/eigen/Eigen/src/SparseCore/SparseMatrix.h +1866 -0
  84. pyvpmr-240921/eigen/Eigen/src/SparseCore/SparseSelfAdjointView.h +613 -0
  85. pyvpmr-240921/eigen/Eigen/src/SparseCore/SparseVector.h +523 -0
  86. pyvpmr-240921/eigen/Eigen/src/SparseLU/SparseLU.h +969 -0
  87. pyvpmr-240921/eigen/Eigen/src/SparseLU/SparseLU_Structs.h +113 -0
  88. pyvpmr-240921/eigen/Eigen/src/SparseLU/SparseLU_pivotL.h +136 -0
  89. pyvpmr-240921/eigen/Eigen/src/SparseLU/SparseLU_pruneL.h +130 -0
  90. pyvpmr-240921/eigen/Eigen/src/ThreadPool/CoreThreadPoolDevice.h +327 -0
  91. pyvpmr-240921/eigen/Eigen/src/ThreadPool/EventCount.h +241 -0
  92. pyvpmr-240921/eigen/Eigen/src/ThreadPool/NonBlockingThreadPool.h +617 -0
  93. pyvpmr-240921/eigen/Eigen/src/ThreadPool/RunQueue.h +230 -0
  94. pyvpmr-240921/eigen/Eigen/src/plugins/ArrayCwiseUnaryOps.inc +537 -0
  95. pyvpmr-240921/eigen/unsupported/Eigen/CXX11/src/Tensor/README.md +1863 -0
  96. pyvpmr-240921/eigen/unsupported/Eigen/CXX11/src/Tensor/Tensor.h +382 -0
  97. pyvpmr-240921/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorBase.h +1228 -0
  98. pyvpmr-240921/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorChipping.h +474 -0
  99. pyvpmr-240921/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorContractionSycl.h +1654 -0
  100. pyvpmr-240921/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorContractionThreadPool.h +1552 -0
  101. pyvpmr-240921/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceThreadPool.h +376 -0
  102. pyvpmr-240921/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorDimensions.h +329 -0
  103. pyvpmr-240921/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorForwardDeclarations.h +213 -0
  104. pyvpmr-240921/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorIO.h +413 -0
  105. pyvpmr-240921/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorIntDiv.h +261 -0
  106. pyvpmr-240921/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorMap.h +191 -0
  107. pyvpmr-240921/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorRandom.h +309 -0
  108. pyvpmr-240921/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorReductionSycl.h +588 -0
  109. pyvpmr-240921/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorVolumePatch.h +619 -0
  110. pyvpmr-240921/eigen/unsupported/Eigen/FFT +418 -0
  111. pyvpmr-240921/eigen/unsupported/Eigen/NNLS +388 -0
  112. pyvpmr-240921/eigen/unsupported/Eigen/src/AutoDiff/AutoDiffScalar.h +639 -0
  113. pyvpmr-240921/eigen/unsupported/Eigen/src/FFT/ei_kissfft_impl.h +416 -0
  114. pyvpmr-240921/eigen/unsupported/Eigen/src/IterativeSolvers/BiCGSTABL.h +339 -0
  115. pyvpmr-240921/eigen/unsupported/Eigen/src/IterativeSolvers/IDRSTABL.h +476 -0
  116. pyvpmr-240921/eigen/unsupported/Eigen/src/SparseExtra/SparseInverse.h +232 -0
  117. pyvpmr-240921/pybind11/README.rst +181 -0
  118. pyvpmr-240921/pybind11/include/pybind11/cast.h +1855 -0
  119. pyvpmr-240921/pybind11/include/pybind11/detail/class.h +757 -0
  120. pyvpmr-240921/pybind11/include/pybind11/detail/common.h +1287 -0
  121. pyvpmr-240921/pybind11/include/pybind11/detail/cpp_conduit.h +77 -0
  122. pyvpmr-240921/pybind11/include/pybind11/detail/exception_translation.h +71 -0
  123. pyvpmr-240921/pybind11/include/pybind11/detail/init.h +436 -0
  124. pyvpmr-240921/pybind11/include/pybind11/detail/internals.h +784 -0
  125. pyvpmr-240921/pybind11/include/pybind11/detail/type_caster_base.h +1195 -0
  126. pyvpmr-240921/pybind11/include/pybind11/detail/value_and_holder.h +77 -0
  127. pyvpmr-240921/pybind11/include/pybind11/eigen/matrix.h +715 -0
  128. pyvpmr-240921/pybind11/include/pybind11/eigen/tensor.h +515 -0
  129. pyvpmr-240921/pybind11/include/pybind11/embed.h +303 -0
  130. pyvpmr-240921/pybind11/include/pybind11/eval.h +156 -0
  131. pyvpmr-240921/pybind11/include/pybind11/functional.h +149 -0
  132. pyvpmr-240921/pybind11/include/pybind11/gil.h +215 -0
  133. pyvpmr-240921/pybind11/include/pybind11/gil_safe_call_once.h +100 -0
  134. pyvpmr-240921/pybind11/include/pybind11/numpy.h +2139 -0
  135. pyvpmr-240921/pybind11/include/pybind11/pybind11.h +2991 -0
  136. pyvpmr-240921/pybind11/include/pybind11/pytypes.h +2606 -0
  137. pyvpmr-240921/pybind11/include/pybind11/stl/filesystem.h +124 -0
  138. pyvpmr-240921/pybind11/include/pybind11/stl.h +648 -0
  139. pyvpmr-240921/pybind11/include/pybind11/stl_bind.h +822 -0
  140. pyvpmr-240921/pybind11/include/pybind11/typing.h +242 -0
  141. pyvpmr-240921/pybind11/include/pybind11/warnings.h +75 -0
  142. pyvpmr-240921/pybind11/noxfile.py +107 -0
  143. pyvpmr-240921/pybind11/pybind11/__init__.py +19 -0
  144. pyvpmr-240921/pybind11/pybind11/__main__.py +86 -0
  145. pyvpmr-240921/pybind11/pybind11/_version.py +12 -0
  146. pyvpmr-240921/pybind11/pybind11/commands.py +39 -0
  147. pyvpmr-240921/pybind11/pybind11/setup_helpers.py +500 -0
  148. pyvpmr-240921/pybind11/pyproject.toml +87 -0
  149. pyvpmr-240921/pybind11/setup.cfg +42 -0
  150. pyvpmr-240921/pybind11/setup.py +149 -0
  151. pyvpmr-240921/pyproject.toml +55 -0
  152. pyvpmr-240921/pyvpmr.egg-info/PKG-INFO +976 -0
  153. pyvpmr-240921/pyvpmr.egg-info/SOURCES.txt +781 -0
  154. pyvpmr-240921/setup.py +38 -0
  155. pyvpmr-240921/src/Gauss.hpp +130 -0
  156. pyvpmr-240921/src/VPMR.cpp +461 -0
  157. pyvpmr-240921/src/VPMR.h +32 -0
  158. pyvpmr-240515/.clang-format +0 -48
  159. pyvpmr-240515/.github/.codecov.yml +0 -13
  160. pyvpmr-240515/.github/dependabot.yml +0 -6
  161. pyvpmr-240515/.github/workflows/coverage.yml +0 -40
  162. pyvpmr-240515/.github/workflows/release.yml +0 -94
  163. pyvpmr-240515/.github/workflows/wheels.yml +0 -63
  164. pyvpmr-240515/.github/workflows/windows.yml +0 -60
  165. pyvpmr-240515/.gitignore +0 -9
  166. pyvpmr-240515/.gitmodules +0 -15
  167. pyvpmr-240515/CMakeLists.txt +0 -53
  168. pyvpmr-240515/Dockerfile +0 -22
  169. pyvpmr-240515/MANIFEST.in +0 -3
  170. pyvpmr-240515/PKG-INFO +0 -969
  171. pyvpmr-240515/README.md +0 -265
  172. pyvpmr-240515/eigen/.clang-format +0 -12
  173. pyvpmr-240515/eigen/.git +0 -1
  174. pyvpmr-240515/eigen/.git-blame-ignore-revs +0 -4
  175. pyvpmr-240515/eigen/.gitignore +0 -41
  176. pyvpmr-240515/eigen/.gitlab/issue_templates/Bug Report.md +0 -69
  177. pyvpmr-240515/eigen/.gitlab/issue_templates/Feature Request.md +0 -7
  178. pyvpmr-240515/eigen/.gitlab/merge_request_templates/Merge Request Template.md +0 -26
  179. pyvpmr-240515/eigen/.gitlab-ci.yml +0 -31
  180. pyvpmr-240515/eigen/.hgeol +0 -11
  181. pyvpmr-240515/eigen/CMakeLists.txt +0 -743
  182. pyvpmr-240515/eigen/COPYING.APACHE +0 -203
  183. pyvpmr-240515/eigen/COPYING.BSD +0 -26
  184. pyvpmr-240515/eigen/COPYING.MINPACK +0 -51
  185. pyvpmr-240515/eigen/COPYING.MPL2 +0 -373
  186. pyvpmr-240515/eigen/COPYING.README +0 -6
  187. pyvpmr-240515/eigen/CTestConfig.cmake +0 -17
  188. pyvpmr-240515/eigen/CTestCustom.cmake.in +0 -4
  189. pyvpmr-240515/eigen/Eigen/Core +0 -411
  190. pyvpmr-240515/eigen/Eigen/Geometry +0 -61
  191. pyvpmr-240515/eigen/Eigen/OrderingMethods +0 -73
  192. pyvpmr-240515/eigen/Eigen/ThreadPool +0 -78
  193. pyvpmr-240515/eigen/Eigen/src/CholmodSupport/CholmodSupport.h +0 -738
  194. pyvpmr-240515/eigen/Eigen/src/Core/Array.h +0 -369
  195. pyvpmr-240515/eigen/Eigen/src/Core/CoreEvaluators.h +0 -1687
  196. pyvpmr-240515/eigen/Eigen/src/Core/DenseBase.h +0 -645
  197. pyvpmr-240515/eigen/Eigen/src/Core/Dot.h +0 -289
  198. pyvpmr-240515/eigen/Eigen/src/Core/EigenBase.h +0 -144
  199. pyvpmr-240515/eigen/Eigen/src/Core/GeneralProduct.h +0 -519
  200. pyvpmr-240515/eigen/Eigen/src/Core/GenericPacketMath.h +0 -1520
  201. pyvpmr-240515/eigen/Eigen/src/Core/GlobalFunctions.h +0 -226
  202. pyvpmr-240515/eigen/Eigen/src/Core/MathFunctions.h +0 -1905
  203. pyvpmr-240515/eigen/Eigen/src/Core/MathFunctionsImpl.h +0 -262
  204. pyvpmr-240515/eigen/Eigen/src/Core/Matrix.h +0 -528
  205. pyvpmr-240515/eigen/Eigen/src/Core/NumTraits.h +0 -327
  206. pyvpmr-240515/eigen/Eigen/src/Core/PermutationMatrix.h +0 -552
  207. pyvpmr-240515/eigen/Eigen/src/Core/PlainObjectBase.h +0 -1052
  208. pyvpmr-240515/eigen/Eigen/src/Core/Product.h +0 -174
  209. pyvpmr-240515/eigen/Eigen/src/Core/ProductEvaluators.h +0 -1155
  210. pyvpmr-240515/eigen/Eigen/src/Core/RandomImpl.h +0 -253
  211. pyvpmr-240515/eigen/Eigen/src/Core/Replicate.h +0 -133
  212. pyvpmr-240515/eigen/Eigen/src/Core/StableNorm.h +0 -236
  213. pyvpmr-240515/eigen/Eigen/src/Core/StlIterators.h +0 -614
  214. pyvpmr-240515/eigen/Eigen/src/Core/Transpositions.h +0 -323
  215. pyvpmr-240515/eigen/Eigen/src/Core/Visitor.h +0 -789
  216. pyvpmr-240515/eigen/Eigen/src/Core/arch/AVX/Complex.h +0 -456
  217. pyvpmr-240515/eigen/Eigen/src/Core/arch/AVX/MathFunctions.h +0 -121
  218. pyvpmr-240515/eigen/Eigen/src/Core/arch/AVX/PacketMath.h +0 -2852
  219. pyvpmr-240515/eigen/Eigen/src/Core/arch/AVX512/PacketMath.h +0 -3065
  220. pyvpmr-240515/eigen/Eigen/src/Core/arch/AVX512/PacketMathFP16.h +0 -870
  221. pyvpmr-240515/eigen/Eigen/src/Core/arch/AVX512/TrsmKernel.h +0 -1167
  222. pyvpmr-240515/eigen/Eigen/src/Core/arch/AVX512/TrsmUnrolls.inc +0 -1218
  223. pyvpmr-240515/eigen/Eigen/src/Core/arch/AVX512/TypeCasting.h +0 -322
  224. pyvpmr-240515/eigen/Eigen/src/Core/arch/AltiVec/MatrixProduct.h +0 -3686
  225. pyvpmr-240515/eigen/Eigen/src/Core/arch/AltiVec/PacketMath.h +0 -3720
  226. pyvpmr-240515/eigen/Eigen/src/Core/arch/Default/BFloat16.h +0 -822
  227. pyvpmr-240515/eigen/Eigen/src/Core/arch/Default/GenericPacketMathFunctions.h +0 -2475
  228. pyvpmr-240515/eigen/Eigen/src/Core/arch/Default/GenericPacketMathFunctionsFwd.h +0 -177
  229. pyvpmr-240515/eigen/Eigen/src/Core/arch/Default/Half.h +0 -974
  230. pyvpmr-240515/eigen/Eigen/src/Core/arch/GPU/PacketMath.h +0 -1681
  231. pyvpmr-240515/eigen/Eigen/src/Core/arch/HVX/PacketMath.h +0 -1074
  232. pyvpmr-240515/eigen/Eigen/src/Core/arch/MSA/PacketMath.h +0 -1243
  233. pyvpmr-240515/eigen/Eigen/src/Core/arch/NEON/Complex.h +0 -694
  234. pyvpmr-240515/eigen/Eigen/src/Core/arch/NEON/MathFunctions.h +0 -67
  235. pyvpmr-240515/eigen/Eigen/src/Core/arch/NEON/PacketMath.h +0 -6185
  236. pyvpmr-240515/eigen/Eigen/src/Core/arch/SSE/Complex.h +0 -436
  237. pyvpmr-240515/eigen/Eigen/src/Core/arch/SSE/PacketMath.h +0 -2620
  238. pyvpmr-240515/eigen/Eigen/src/Core/arch/SVE/PacketMath.h +0 -667
  239. pyvpmr-240515/eigen/Eigen/src/Core/arch/SVE/TypeCasting.h +0 -52
  240. pyvpmr-240515/eigen/Eigen/src/Core/arch/ZVector/PacketMath.h +0 -1292
  241. pyvpmr-240515/eigen/Eigen/src/Core/functors/UnaryFunctors.h +0 -1327
  242. pyvpmr-240515/eigen/Eigen/src/Core/products/GeneralBlockPanelKernel.h +0 -3153
  243. pyvpmr-240515/eigen/Eigen/src/Core/products/GeneralMatrixMatrix.h +0 -457
  244. pyvpmr-240515/eigen/Eigen/src/Core/products/GeneralMatrixMatrixTriangular_BLAS.h +0 -148
  245. pyvpmr-240515/eigen/Eigen/src/Core/products/GeneralMatrixVector.h +0 -473
  246. pyvpmr-240515/eigen/Eigen/src/Core/products/Parallelizer.h +0 -276
  247. pyvpmr-240515/eigen/Eigen/src/Core/products/TriangularSolverMatrix.h +0 -388
  248. pyvpmr-240515/eigen/Eigen/src/Core/util/ConfigureVectorization.h +0 -520
  249. pyvpmr-240515/eigen/Eigen/src/Core/util/Constants.h +0 -595
  250. pyvpmr-240515/eigen/Eigen/src/Core/util/ForwardDeclarations.h +0 -507
  251. pyvpmr-240515/eigen/Eigen/src/Core/util/IntegralConstant.h +0 -279
  252. pyvpmr-240515/eigen/Eigen/src/Core/util/Macros.h +0 -1301
  253. pyvpmr-240515/eigen/Eigen/src/Core/util/Memory.h +0 -1326
  254. pyvpmr-240515/eigen/Eigen/src/Core/util/Meta.h +0 -717
  255. pyvpmr-240515/eigen/Eigen/src/Core/util/SymbolicIndex.h +0 -445
  256. pyvpmr-240515/eigen/Eigen/src/Core/util/XprHelper.h +0 -1025
  257. pyvpmr-240515/eigen/Eigen/src/Eigenvalues/GeneralizedEigenSolver.h +0 -402
  258. pyvpmr-240515/eigen/Eigen/src/Geometry/Rotation2D.h +0 -201
  259. pyvpmr-240515/eigen/Eigen/src/Householder/BlockHouseholder.h +0 -115
  260. pyvpmr-240515/eigen/Eigen/src/IterativeLinearSolvers/SolveWithGuess.h +0 -111
  261. pyvpmr-240515/eigen/Eigen/src/LU/arch/InverseSize4.h +0 -353
  262. pyvpmr-240515/eigen/Eigen/src/OrderingMethods/Eigen_Colamd.h +0 -1690
  263. pyvpmr-240515/eigen/Eigen/src/SVD/BDCSVD.h +0 -1486
  264. pyvpmr-240515/eigen/Eigen/src/SVD/JacobiSVD.h +0 -807
  265. pyvpmr-240515/eigen/Eigen/src/SparseCore/SparseCwiseBinaryOp.h +0 -938
  266. pyvpmr-240515/eigen/Eigen/src/SparseCore/SparseDenseProduct.h +0 -316
  267. pyvpmr-240515/eigen/Eigen/src/SparseCore/SparseMatrix.h +0 -1864
  268. pyvpmr-240515/eigen/Eigen/src/SparseCore/SparseSelfAdjointView.h +0 -613
  269. pyvpmr-240515/eigen/Eigen/src/SparseCore/SparseVector.h +0 -523
  270. pyvpmr-240515/eigen/Eigen/src/SparseLU/SparseLU.h +0 -969
  271. pyvpmr-240515/eigen/Eigen/src/SparseLU/SparseLU_Structs.h +0 -113
  272. pyvpmr-240515/eigen/Eigen/src/SparseLU/SparseLU_pivotL.h +0 -136
  273. pyvpmr-240515/eigen/Eigen/src/SparseLU/SparseLU_pruneL.h +0 -130
  274. pyvpmr-240515/eigen/Eigen/src/ThreadPool/EventCount.h +0 -238
  275. pyvpmr-240515/eigen/Eigen/src/ThreadPool/NonBlockingThreadPool.h +0 -473
  276. pyvpmr-240515/eigen/Eigen/src/ThreadPool/RunQueue.h +0 -226
  277. pyvpmr-240515/eigen/Eigen/src/plugins/ArrayCwiseUnaryOps.inc +0 -525
  278. pyvpmr-240515/eigen/INSTALL +0 -35
  279. pyvpmr-240515/eigen/bench/BenchSparseUtil.h +0 -129
  280. pyvpmr-240515/eigen/bench/BenchTimer.h +0 -176
  281. pyvpmr-240515/eigen/bench/BenchUtil.h +0 -86
  282. pyvpmr-240515/eigen/bench/README.txt +0 -55
  283. pyvpmr-240515/eigen/bench/analyze-blocking-sizes.cpp +0 -772
  284. pyvpmr-240515/eigen/bench/basicbench.cxxlist +0 -28
  285. pyvpmr-240515/eigen/bench/basicbenchmark.cpp +0 -34
  286. pyvpmr-240515/eigen/bench/basicbenchmark.h +0 -54
  287. pyvpmr-240515/eigen/bench/benchBlasGemm.cpp +0 -199
  288. pyvpmr-240515/eigen/bench/benchCholesky.cpp +0 -124
  289. pyvpmr-240515/eigen/bench/benchEigenSolver.cpp +0 -192
  290. pyvpmr-240515/eigen/bench/benchFFT.cpp +0 -117
  291. pyvpmr-240515/eigen/bench/benchGeometry.cpp +0 -120
  292. pyvpmr-240515/eigen/bench/benchVecAdd.cpp +0 -131
  293. pyvpmr-240515/eigen/bench/bench_gemm.cpp +0 -393
  294. pyvpmr-240515/eigen/bench/bench_move_semantics.cpp +0 -52
  295. pyvpmr-240515/eigen/bench/bench_multi_compilers.sh +0 -28
  296. pyvpmr-240515/eigen/bench/bench_norm.cpp +0 -342
  297. pyvpmr-240515/eigen/bench/bench_reverse.cpp +0 -76
  298. pyvpmr-240515/eigen/bench/bench_sum.cpp +0 -16
  299. pyvpmr-240515/eigen/bench/bench_unrolling +0 -12
  300. pyvpmr-240515/eigen/bench/benchmark-blocking-sizes.cpp +0 -617
  301. pyvpmr-240515/eigen/bench/benchmark.cpp +0 -36
  302. pyvpmr-240515/eigen/bench/benchmarkSlice.cpp +0 -36
  303. pyvpmr-240515/eigen/bench/benchmarkX.cpp +0 -34
  304. pyvpmr-240515/eigen/bench/benchmarkXcwise.cpp +0 -32
  305. pyvpmr-240515/eigen/bench/benchmark_suite +0 -18
  306. pyvpmr-240515/eigen/bench/btl/CMakeLists.txt +0 -107
  307. pyvpmr-240515/eigen/bench/btl/COPYING +0 -340
  308. pyvpmr-240515/eigen/bench/btl/README +0 -154
  309. pyvpmr-240515/eigen/bench/btl/actions/action_aat_product.hh +0 -118
  310. pyvpmr-240515/eigen/bench/btl/actions/action_ata_product.hh +0 -118
  311. pyvpmr-240515/eigen/bench/btl/actions/action_atv_product.hh +0 -120
  312. pyvpmr-240515/eigen/bench/btl/actions/action_axpby.hh +0 -116
  313. pyvpmr-240515/eigen/bench/btl/actions/action_axpy.hh +0 -124
  314. pyvpmr-240515/eigen/bench/btl/actions/action_cholesky.hh +0 -110
  315. pyvpmr-240515/eigen/bench/btl/actions/action_ger.hh +0 -114
  316. pyvpmr-240515/eigen/bench/btl/actions/action_hessenberg.hh +0 -200
  317. pyvpmr-240515/eigen/bench/btl/actions/action_lu_decomp.hh +0 -108
  318. pyvpmr-240515/eigen/bench/btl/actions/action_lu_solve.hh +0 -120
  319. pyvpmr-240515/eigen/bench/btl/actions/action_matrix_matrix_product.hh +0 -124
  320. pyvpmr-240515/eigen/bench/btl/actions/action_matrix_matrix_product_bis.hh +0 -131
  321. pyvpmr-240515/eigen/bench/btl/actions/action_matrix_vector_product.hh +0 -129
  322. pyvpmr-240515/eigen/bench/btl/actions/action_partial_lu.hh +0 -108
  323. pyvpmr-240515/eigen/bench/btl/actions/action_rot.hh +0 -104
  324. pyvpmr-240515/eigen/bench/btl/actions/action_symv.hh +0 -121
  325. pyvpmr-240515/eigen/bench/btl/actions/action_syr2.hh +0 -118
  326. pyvpmr-240515/eigen/bench/btl/actions/action_trisolve.hh +0 -119
  327. pyvpmr-240515/eigen/bench/btl/actions/action_trisolve_matrix.hh +0 -139
  328. pyvpmr-240515/eigen/bench/btl/actions/action_trmm.hh +0 -139
  329. pyvpmr-240515/eigen/bench/btl/actions/basic_actions.hh +0 -20
  330. pyvpmr-240515/eigen/bench/btl/cmake/FindACML.cmake +0 -51
  331. pyvpmr-240515/eigen/bench/btl/cmake/FindATLAS.cmake +0 -31
  332. pyvpmr-240515/eigen/bench/btl/cmake/FindBLAZE.cmake +0 -31
  333. pyvpmr-240515/eigen/bench/btl/cmake/FindBlitz.cmake +0 -40
  334. pyvpmr-240515/eigen/bench/btl/cmake/FindCBLAS.cmake +0 -35
  335. pyvpmr-240515/eigen/bench/btl/cmake/FindGMM.cmake +0 -17
  336. pyvpmr-240515/eigen/bench/btl/cmake/FindMKL.cmake +0 -65
  337. pyvpmr-240515/eigen/bench/btl/cmake/FindMTL4.cmake +0 -31
  338. pyvpmr-240515/eigen/bench/btl/cmake/FindOPENBLAS.cmake +0 -17
  339. pyvpmr-240515/eigen/bench/btl/cmake/FindPackageHandleStandardArgs.cmake +0 -60
  340. pyvpmr-240515/eigen/bench/btl/cmake/FindTvmet.cmake +0 -32
  341. pyvpmr-240515/eigen/bench/btl/cmake/MacroOptionalAddSubdirectory.cmake +0 -31
  342. pyvpmr-240515/eigen/bench/btl/data/CMakeLists.txt +0 -32
  343. pyvpmr-240515/eigen/bench/btl/data/action_settings.txt +0 -19
  344. pyvpmr-240515/eigen/bench/btl/data/gnuplot_common_settings.hh +0 -87
  345. pyvpmr-240515/eigen/bench/btl/data/go_mean +0 -58
  346. pyvpmr-240515/eigen/bench/btl/data/mean.cxx +0 -165
  347. pyvpmr-240515/eigen/bench/btl/data/mk_gnuplot_script.sh +0 -68
  348. pyvpmr-240515/eigen/bench/btl/data/mk_mean_script.sh +0 -52
  349. pyvpmr-240515/eigen/bench/btl/data/mk_new_gnuplot.sh +0 -54
  350. pyvpmr-240515/eigen/bench/btl/data/perlib_plot_settings.txt +0 -16
  351. pyvpmr-240515/eigen/bench/btl/data/regularize.cxx +0 -113
  352. pyvpmr-240515/eigen/bench/btl/data/smooth.cxx +0 -165
  353. pyvpmr-240515/eigen/bench/btl/data/smooth_all.sh +0 -68
  354. pyvpmr-240515/eigen/bench/btl/generic_bench/bench.hh +0 -149
  355. pyvpmr-240515/eigen/bench/btl/generic_bench/bench_parameter.hh +0 -53
  356. pyvpmr-240515/eigen/bench/btl/generic_bench/btl.hh +0 -205
  357. pyvpmr-240515/eigen/bench/btl/generic_bench/init/init_function.hh +0 -35
  358. pyvpmr-240515/eigen/bench/btl/generic_bench/init/init_matrix.hh +0 -61
  359. pyvpmr-240515/eigen/bench/btl/generic_bench/init/init_vector.hh +0 -36
  360. pyvpmr-240515/eigen/bench/btl/generic_bench/static/bench_static.hh +0 -61
  361. pyvpmr-240515/eigen/bench/btl/generic_bench/static/intel_bench_fixed_size.hh +0 -60
  362. pyvpmr-240515/eigen/bench/btl/generic_bench/static/static_size_generator.hh +0 -52
  363. pyvpmr-240515/eigen/bench/btl/generic_bench/timers/STL_perf_analyzer.hh +0 -70
  364. pyvpmr-240515/eigen/bench/btl/generic_bench/timers/STL_timer.hh +0 -75
  365. pyvpmr-240515/eigen/bench/btl/generic_bench/timers/mixed_perf_analyzer.hh +0 -58
  366. pyvpmr-240515/eigen/bench/btl/generic_bench/timers/portable_perf_analyzer.hh +0 -89
  367. pyvpmr-240515/eigen/bench/btl/generic_bench/timers/portable_perf_analyzer_old.hh +0 -110
  368. pyvpmr-240515/eigen/bench/btl/generic_bench/timers/portable_timer.hh +0 -143
  369. pyvpmr-240515/eigen/bench/btl/generic_bench/timers/x86_perf_analyzer.hh +0 -91
  370. pyvpmr-240515/eigen/bench/btl/generic_bench/timers/x86_timer.hh +0 -176
  371. pyvpmr-240515/eigen/bench/btl/generic_bench/utils/size_lin_log.hh +0 -56
  372. pyvpmr-240515/eigen/bench/btl/generic_bench/utils/size_log.hh +0 -50
  373. pyvpmr-240515/eigen/bench/btl/generic_bench/utils/utilities.h +0 -128
  374. pyvpmr-240515/eigen/bench/btl/generic_bench/utils/xy_file.hh +0 -71
  375. pyvpmr-240515/eigen/bench/btl/libs/BLAS/CMakeLists.txt +0 -47
  376. pyvpmr-240515/eigen/bench/btl/libs/BLAS/blas.h +0 -545
  377. pyvpmr-240515/eigen/bench/btl/libs/BLAS/blas_interface.hh +0 -79
  378. pyvpmr-240515/eigen/bench/btl/libs/BLAS/blas_interface_impl.hh +0 -139
  379. pyvpmr-240515/eigen/bench/btl/libs/BLAS/c_interface_base.h +0 -61
  380. pyvpmr-240515/eigen/bench/btl/libs/BLAS/main.cpp +0 -69
  381. pyvpmr-240515/eigen/bench/btl/libs/STL/CMakeLists.txt +0 -2
  382. pyvpmr-240515/eigen/bench/btl/libs/STL/STL_interface.hh +0 -202
  383. pyvpmr-240515/eigen/bench/btl/libs/STL/main.cpp +0 -39
  384. pyvpmr-240515/eigen/bench/btl/libs/blaze/CMakeLists.txt +0 -13
  385. pyvpmr-240515/eigen/bench/btl/libs/blaze/blaze_interface.hh +0 -126
  386. pyvpmr-240515/eigen/bench/btl/libs/blaze/main.cpp +0 -36
  387. pyvpmr-240515/eigen/bench/btl/libs/blitz/CMakeLists.txt +0 -17
  388. pyvpmr-240515/eigen/bench/btl/libs/blitz/blitz_LU_solve_interface.hh +0 -160
  389. pyvpmr-240515/eigen/bench/btl/libs/blitz/blitz_interface.hh +0 -137
  390. pyvpmr-240515/eigen/bench/btl/libs/blitz/btl_blitz.cpp +0 -47
  391. pyvpmr-240515/eigen/bench/btl/libs/blitz/btl_tiny_blitz.cpp +0 -35
  392. pyvpmr-240515/eigen/bench/btl/libs/blitz/tiny_blitz_interface.hh +0 -91
  393. pyvpmr-240515/eigen/bench/btl/libs/eigen2/CMakeLists.txt +0 -19
  394. pyvpmr-240515/eigen/bench/btl/libs/eigen2/btl_tiny_eigen2.cpp +0 -42
  395. pyvpmr-240515/eigen/bench/btl/libs/eigen2/eigen2_interface.hh +0 -159
  396. pyvpmr-240515/eigen/bench/btl/libs/eigen2/main_adv.cpp +0 -41
  397. pyvpmr-240515/eigen/bench/btl/libs/eigen2/main_linear.cpp +0 -30
  398. pyvpmr-240515/eigen/bench/btl/libs/eigen2/main_matmat.cpp +0 -32
  399. pyvpmr-240515/eigen/bench/btl/libs/eigen2/main_vecmat.cpp +0 -33
  400. pyvpmr-240515/eigen/bench/btl/libs/eigen3/CMakeLists.txt +0 -65
  401. pyvpmr-240515/eigen/bench/btl/libs/eigen3/btl_tiny_eigen3.cpp +0 -42
  402. pyvpmr-240515/eigen/bench/btl/libs/eigen3/eigen3_interface.hh +0 -224
  403. pyvpmr-240515/eigen/bench/btl/libs/eigen3/main_adv.cpp +0 -41
  404. pyvpmr-240515/eigen/bench/btl/libs/eigen3/main_linear.cpp +0 -31
  405. pyvpmr-240515/eigen/bench/btl/libs/eigen3/main_matmat.cpp +0 -32
  406. pyvpmr-240515/eigen/bench/btl/libs/eigen3/main_vecmat.cpp +0 -33
  407. pyvpmr-240515/eigen/bench/btl/libs/gmm/CMakeLists.txt +0 -6
  408. pyvpmr-240515/eigen/bench/btl/libs/gmm/gmm_LU_solve_interface.hh +0 -160
  409. pyvpmr-240515/eigen/bench/btl/libs/gmm/gmm_interface.hh +0 -123
  410. pyvpmr-240515/eigen/bench/btl/libs/gmm/main.cpp +0 -47
  411. pyvpmr-240515/eigen/bench/btl/libs/mtl4/.kdbgrc.main +0 -12
  412. pyvpmr-240515/eigen/bench/btl/libs/mtl4/CMakeLists.txt +0 -6
  413. pyvpmr-240515/eigen/bench/btl/libs/mtl4/main.cpp +0 -42
  414. pyvpmr-240515/eigen/bench/btl/libs/mtl4/mtl4_LU_solve_interface.hh +0 -160
  415. pyvpmr-240515/eigen/bench/btl/libs/mtl4/mtl4_interface.hh +0 -124
  416. pyvpmr-240515/eigen/bench/btl/libs/tensors/CMakeLists.txt +0 -44
  417. pyvpmr-240515/eigen/bench/btl/libs/tensors/main_linear.cpp +0 -22
  418. pyvpmr-240515/eigen/bench/btl/libs/tensors/main_matmat.cpp +0 -20
  419. pyvpmr-240515/eigen/bench/btl/libs/tensors/main_vecmat.cpp +0 -20
  420. pyvpmr-240515/eigen/bench/btl/libs/tensors/tensor_interface.hh +0 -98
  421. pyvpmr-240515/eigen/bench/btl/libs/tvmet/CMakeLists.txt +0 -6
  422. pyvpmr-240515/eigen/bench/btl/libs/tvmet/main.cpp +0 -37
  423. pyvpmr-240515/eigen/bench/btl/libs/tvmet/tvmet_interface.hh +0 -86
  424. pyvpmr-240515/eigen/bench/btl/libs/ublas/CMakeLists.txt +0 -7
  425. pyvpmr-240515/eigen/bench/btl/libs/ublas/main.cpp +0 -41
  426. pyvpmr-240515/eigen/bench/btl/libs/ublas/ublas_interface.hh +0 -125
  427. pyvpmr-240515/eigen/bench/check_cache_queries.cpp +0 -97
  428. pyvpmr-240515/eigen/bench/dense_solvers.cpp +0 -172
  429. pyvpmr-240515/eigen/bench/eig33.cpp +0 -189
  430. pyvpmr-240515/eigen/bench/geometry.cpp +0 -120
  431. pyvpmr-240515/eigen/bench/perf_monitoring/changesets.txt +0 -95
  432. pyvpmr-240515/eigen/bench/perf_monitoring/gemm.cpp +0 -5
  433. pyvpmr-240515/eigen/bench/perf_monitoring/gemm_common.h +0 -61
  434. pyvpmr-240515/eigen/bench/perf_monitoring/gemm_settings.txt +0 -15
  435. pyvpmr-240515/eigen/bench/perf_monitoring/gemm_square_settings.txt +0 -11
  436. pyvpmr-240515/eigen/bench/perf_monitoring/gemv.cpp +0 -5
  437. pyvpmr-240515/eigen/bench/perf_monitoring/gemv_common.h +0 -63
  438. pyvpmr-240515/eigen/bench/perf_monitoring/gemv_settings.txt +0 -11
  439. pyvpmr-240515/eigen/bench/perf_monitoring/gemv_square_settings.txt +0 -13
  440. pyvpmr-240515/eigen/bench/perf_monitoring/gemvt.cpp +0 -5
  441. pyvpmr-240515/eigen/bench/perf_monitoring/lazy_gemm.cpp +0 -115
  442. pyvpmr-240515/eigen/bench/perf_monitoring/lazy_gemm_settings.txt +0 -15
  443. pyvpmr-240515/eigen/bench/perf_monitoring/llt.cpp +0 -10
  444. pyvpmr-240515/eigen/bench/perf_monitoring/make_plot.sh +0 -112
  445. pyvpmr-240515/eigen/bench/perf_monitoring/resources/chart_footer.html +0 -41
  446. pyvpmr-240515/eigen/bench/perf_monitoring/resources/chart_header.html +0 -45
  447. pyvpmr-240515/eigen/bench/perf_monitoring/resources/footer.html +0 -3
  448. pyvpmr-240515/eigen/bench/perf_monitoring/resources/header.html +0 -42
  449. pyvpmr-240515/eigen/bench/perf_monitoring/resources/s1.js +0 -1
  450. pyvpmr-240515/eigen/bench/perf_monitoring/resources/s2.js +0 -1
  451. pyvpmr-240515/eigen/bench/perf_monitoring/run.sh +0 -183
  452. pyvpmr-240515/eigen/bench/perf_monitoring/runall.sh +0 -72
  453. pyvpmr-240515/eigen/bench/perf_monitoring/trmv_lo.cpp +0 -5
  454. pyvpmr-240515/eigen/bench/perf_monitoring/trmv_lot.cpp +0 -7
  455. pyvpmr-240515/eigen/bench/perf_monitoring/trmv_up.cpp +0 -5
  456. pyvpmr-240515/eigen/bench/perf_monitoring/trmv_upt.cpp +0 -7
  457. pyvpmr-240515/eigen/bench/product_threshold.cpp +0 -164
  458. pyvpmr-240515/eigen/bench/quat_slerp.cpp +0 -220
  459. pyvpmr-240515/eigen/bench/quatmul.cpp +0 -44
  460. pyvpmr-240515/eigen/bench/sparse_cholesky.cpp +0 -215
  461. pyvpmr-240515/eigen/bench/sparse_dense_product.cpp +0 -185
  462. pyvpmr-240515/eigen/bench/sparse_lu.cpp +0 -131
  463. pyvpmr-240515/eigen/bench/sparse_product.cpp +0 -310
  464. pyvpmr-240515/eigen/bench/sparse_randomsetter.cpp +0 -125
  465. pyvpmr-240515/eigen/bench/sparse_setter.cpp +0 -440
  466. pyvpmr-240515/eigen/bench/sparse_transpose.cpp +0 -108
  467. pyvpmr-240515/eigen/bench/sparse_trisolver.cpp +0 -215
  468. pyvpmr-240515/eigen/bench/spbench/CMakeLists.txt +0 -92
  469. pyvpmr-240515/eigen/bench/spbench/sp_solver.cpp +0 -129
  470. pyvpmr-240515/eigen/bench/spbench/spbench.dtd +0 -31
  471. pyvpmr-240515/eigen/bench/spbench/spbenchsolver.cpp +0 -82
  472. pyvpmr-240515/eigen/bench/spbench/spbenchsolver.h +0 -565
  473. pyvpmr-240515/eigen/bench/spbench/spbenchstyle.h +0 -93
  474. pyvpmr-240515/eigen/bench/spbench/test_sparseLU.cpp +0 -94
  475. pyvpmr-240515/eigen/bench/spmv.cpp +0 -216
  476. pyvpmr-240515/eigen/bench/tensors/README +0 -26
  477. pyvpmr-240515/eigen/bench/tensors/benchmark.h +0 -45
  478. pyvpmr-240515/eigen/bench/tensors/benchmark_main.cc +0 -231
  479. pyvpmr-240515/eigen/bench/tensors/contraction_benchmarks_cpu.cc +0 -37
  480. pyvpmr-240515/eigen/bench/tensors/eigen_sycl_bench.sh +0 -29
  481. pyvpmr-240515/eigen/bench/tensors/eigen_sycl_bench_contract.sh +0 -7
  482. pyvpmr-240515/eigen/bench/tensors/tensor_benchmarks.h +0 -531
  483. pyvpmr-240515/eigen/bench/tensors/tensor_benchmarks_cpu.cc +0 -165
  484. pyvpmr-240515/eigen/bench/tensors/tensor_benchmarks_fp16_gpu.cu +0 -74
  485. pyvpmr-240515/eigen/bench/tensors/tensor_benchmarks_gpu.cu +0 -72
  486. pyvpmr-240515/eigen/bench/tensors/tensor_benchmarks_sycl.cc +0 -139
  487. pyvpmr-240515/eigen/bench/tensors/tensor_contract_sycl_bench.cc +0 -322
  488. pyvpmr-240515/eigen/bench/vdw_new.cpp +0 -50
  489. pyvpmr-240515/eigen/blas/CMakeLists.txt +0 -63
  490. pyvpmr-240515/eigen/blas/README.txt +0 -6
  491. pyvpmr-240515/eigen/blas/testing/CMakeLists.txt +0 -40
  492. pyvpmr-240515/eigen/blas/testing/cblat2.dat +0 -35
  493. pyvpmr-240515/eigen/blas/testing/cblat3.dat +0 -23
  494. pyvpmr-240515/eigen/blas/testing/dblat2.dat +0 -34
  495. pyvpmr-240515/eigen/blas/testing/dblat3.dat +0 -20
  496. pyvpmr-240515/eigen/blas/testing/runblastest.sh +0 -45
  497. pyvpmr-240515/eigen/blas/testing/sblat2.dat +0 -34
  498. pyvpmr-240515/eigen/blas/testing/sblat3.dat +0 -20
  499. pyvpmr-240515/eigen/blas/testing/zblat2.dat +0 -35
  500. pyvpmr-240515/eigen/blas/testing/zblat3.dat +0 -23
  501. pyvpmr-240515/eigen/ci/CTest2JUnit.xsl +0 -120
  502. pyvpmr-240515/eigen/ci/README.md +0 -12
  503. pyvpmr-240515/eigen/ci/build.linux.gitlab-ci.yml +0 -312
  504. pyvpmr-240515/eigen/ci/build.windows.gitlab-ci.yml +0 -108
  505. pyvpmr-240515/eigen/ci/checkformat.gitlab-ci.yml +0 -12
  506. pyvpmr-240515/eigen/ci/common.gitlab-ci.yml +0 -38
  507. pyvpmr-240515/eigen/ci/scripts/build.linux.script.sh +0 -31
  508. pyvpmr-240515/eigen/ci/scripts/build.windows.script.ps1 +0 -44
  509. pyvpmr-240515/eigen/ci/scripts/common.linux.before_script.sh +0 -48
  510. pyvpmr-240515/eigen/ci/scripts/common.windows.before_script.ps1 +0 -8
  511. pyvpmr-240515/eigen/ci/scripts/test.linux.after_script.sh +0 -19
  512. pyvpmr-240515/eigen/ci/scripts/test.linux.script.sh +0 -28
  513. pyvpmr-240515/eigen/ci/scripts/test.windows.after_script.ps1 +0 -17
  514. pyvpmr-240515/eigen/ci/scripts/test.windows.script.ps1 +0 -30
  515. pyvpmr-240515/eigen/ci/scripts/vars.linux.sh +0 -12
  516. pyvpmr-240515/eigen/ci/scripts/vars.windows.ps1 +0 -10
  517. pyvpmr-240515/eigen/ci/test.linux.gitlab-ci.yml +0 -434
  518. pyvpmr-240515/eigen/ci/test.windows.gitlab-ci.yml +0 -107
  519. pyvpmr-240515/eigen/cmake/ComputeCppCompilerChecks.cmake +0 -50
  520. pyvpmr-240515/eigen/cmake/ComputeCppIRMap.cmake +0 -18
  521. pyvpmr-240515/eigen/cmake/Eigen3Config.cmake.in +0 -8
  522. pyvpmr-240515/eigen/cmake/EigenConfigureTesting.cmake +0 -67
  523. pyvpmr-240515/eigen/cmake/EigenSmokeTestList.cmake +0 -136
  524. pyvpmr-240515/eigen/cmake/EigenTesting.cmake +0 -752
  525. pyvpmr-240515/eigen/cmake/EigenUninstall.cmake +0 -40
  526. pyvpmr-240515/eigen/cmake/FindAccelerate.cmake +0 -28
  527. pyvpmr-240515/eigen/cmake/FindAdolc.cmake +0 -20
  528. pyvpmr-240515/eigen/cmake/FindBLASEXT.cmake +0 -384
  529. pyvpmr-240515/eigen/cmake/FindCHOLMOD.cmake +0 -89
  530. pyvpmr-240515/eigen/cmake/FindCLANG_FORMAT.cmake +0 -61
  531. pyvpmr-240515/eigen/cmake/FindComputeCpp.cmake +0 -455
  532. pyvpmr-240515/eigen/cmake/FindDPCPP.cmake +0 -62
  533. pyvpmr-240515/eigen/cmake/FindFFTW.cmake +0 -120
  534. pyvpmr-240515/eigen/cmake/FindGMP.cmake +0 -21
  535. pyvpmr-240515/eigen/cmake/FindGoogleHash.cmake +0 -23
  536. pyvpmr-240515/eigen/cmake/FindHWLOC.cmake +0 -332
  537. pyvpmr-240515/eigen/cmake/FindKLU.cmake +0 -48
  538. pyvpmr-240515/eigen/cmake/FindMPFR.cmake +0 -83
  539. pyvpmr-240515/eigen/cmake/FindMPREAL.cmake +0 -103
  540. pyvpmr-240515/eigen/cmake/FindMetis.cmake +0 -265
  541. pyvpmr-240515/eigen/cmake/FindPASTIX.cmake +0 -704
  542. pyvpmr-240515/eigen/cmake/FindPTSCOTCH.cmake +0 -422
  543. pyvpmr-240515/eigen/cmake/FindSCOTCH.cmake +0 -370
  544. pyvpmr-240515/eigen/cmake/FindSPQR.cmake +0 -41
  545. pyvpmr-240515/eigen/cmake/FindStandardMathLibrary.cmake +0 -70
  546. pyvpmr-240515/eigen/cmake/FindSuperLU.cmake +0 -97
  547. pyvpmr-240515/eigen/cmake/FindTriSYCL.cmake +0 -173
  548. pyvpmr-240515/eigen/cmake/FindUMFPACK.cmake +0 -53
  549. pyvpmr-240515/eigen/cmake/RegexUtils.cmake +0 -19
  550. pyvpmr-240515/eigen/cmake/SyclConfigureTesting.cmake +0 -64
  551. pyvpmr-240515/eigen/debug/gdb/__init__.py +0 -1
  552. pyvpmr-240515/eigen/debug/gdb/printers.py +0 -338
  553. pyvpmr-240515/eigen/debug/lldb/eigenlldb.py +0 -234
  554. pyvpmr-240515/eigen/debug/msvc/eigen.natvis +0 -235
  555. pyvpmr-240515/eigen/debug/msvc/eigen_autoexp_part.dat +0 -295
  556. pyvpmr-240515/eigen/demos/CMakeLists.txt +0 -13
  557. pyvpmr-240515/eigen/demos/mandelbrot/CMakeLists.txt +0 -21
  558. pyvpmr-240515/eigen/demos/mandelbrot/README +0 -10
  559. pyvpmr-240515/eigen/demos/mandelbrot/mandelbrot.cpp +0 -196
  560. pyvpmr-240515/eigen/demos/mandelbrot/mandelbrot.h +0 -67
  561. pyvpmr-240515/eigen/demos/mix_eigen_and_c/README +0 -9
  562. pyvpmr-240515/eigen/demos/mix_eigen_and_c/binary_library.cpp +0 -103
  563. pyvpmr-240515/eigen/demos/mix_eigen_and_c/binary_library.h +0 -55
  564. pyvpmr-240515/eigen/demos/mix_eigen_and_c/example.c +0 -61
  565. pyvpmr-240515/eigen/demos/opengl/CMakeLists.txt +0 -28
  566. pyvpmr-240515/eigen/demos/opengl/README +0 -13
  567. pyvpmr-240515/eigen/demos/opengl/camera.cpp +0 -219
  568. pyvpmr-240515/eigen/demos/opengl/camera.h +0 -111
  569. pyvpmr-240515/eigen/demos/opengl/gpuhelper.cpp +0 -127
  570. pyvpmr-240515/eigen/demos/opengl/gpuhelper.h +0 -187
  571. pyvpmr-240515/eigen/demos/opengl/icosphere.cpp +0 -105
  572. pyvpmr-240515/eigen/demos/opengl/icosphere.h +0 -30
  573. pyvpmr-240515/eigen/demos/opengl/quaternion_demo.cpp +0 -586
  574. pyvpmr-240515/eigen/demos/opengl/quaternion_demo.h +0 -100
  575. pyvpmr-240515/eigen/demos/opengl/trackball.cpp +0 -51
  576. pyvpmr-240515/eigen/demos/opengl/trackball.h +0 -41
  577. pyvpmr-240515/eigen/doc/AsciiQuickReference.txt +0 -228
  578. pyvpmr-240515/eigen/doc/B01_Experimental.dox +0 -52
  579. pyvpmr-240515/eigen/doc/CMakeLists.txt +0 -119
  580. pyvpmr-240515/eigen/doc/ClassHierarchy.dox +0 -129
  581. pyvpmr-240515/eigen/doc/CoeffwiseMathFunctionsTable.dox +0 -613
  582. pyvpmr-240515/eigen/doc/CustomizingEigen_CustomScalar.dox +0 -121
  583. pyvpmr-240515/eigen/doc/CustomizingEigen_InheritingMatrix.dox +0 -34
  584. pyvpmr-240515/eigen/doc/CustomizingEigen_NullaryExpr.dox +0 -86
  585. pyvpmr-240515/eigen/doc/CustomizingEigen_Plugins.dox +0 -69
  586. pyvpmr-240515/eigen/doc/DenseDecompositionBenchmark.dox +0 -42
  587. pyvpmr-240515/eigen/doc/Doxyfile.in +0 -1913
  588. pyvpmr-240515/eigen/doc/Eigen_Silly_Professor_64x64.png +0 -0
  589. pyvpmr-240515/eigen/doc/FixedSizeVectorizable.dox +0 -38
  590. pyvpmr-240515/eigen/doc/FunctionsTakingEigenTypes.dox +0 -217
  591. pyvpmr-240515/eigen/doc/HiPerformance.dox +0 -128
  592. pyvpmr-240515/eigen/doc/InplaceDecomposition.dox +0 -115
  593. pyvpmr-240515/eigen/doc/InsideEigenExample.dox +0 -500
  594. pyvpmr-240515/eigen/doc/LeastSquares.dox +0 -75
  595. pyvpmr-240515/eigen/doc/Manual.dox +0 -192
  596. pyvpmr-240515/eigen/doc/MatrixfreeSolverExample.dox +0 -20
  597. pyvpmr-240515/eigen/doc/NewExpressionType.dox +0 -143
  598. pyvpmr-240515/eigen/doc/Overview.dox +0 -28
  599. pyvpmr-240515/eigen/doc/PassingByValue.dox +0 -40
  600. pyvpmr-240515/eigen/doc/Pitfalls.dox +0 -149
  601. pyvpmr-240515/eigen/doc/PreprocessorDirectives.dox +0 -165
  602. pyvpmr-240515/eigen/doc/QuickReference.dox +0 -808
  603. pyvpmr-240515/eigen/doc/QuickStartGuide.dox +0 -100
  604. pyvpmr-240515/eigen/doc/SparseLinearSystems.dox +0 -228
  605. pyvpmr-240515/eigen/doc/SparseQuickReference.dox +0 -273
  606. pyvpmr-240515/eigen/doc/StlContainers.dox +0 -73
  607. pyvpmr-240515/eigen/doc/StorageOrders.dox +0 -86
  608. pyvpmr-240515/eigen/doc/StructHavingEigenMembers.dox +0 -203
  609. pyvpmr-240515/eigen/doc/TemplateKeyword.dox +0 -133
  610. pyvpmr-240515/eigen/doc/TopicAliasing.dox +0 -237
  611. pyvpmr-240515/eigen/doc/TopicAssertions.dox +0 -108
  612. pyvpmr-240515/eigen/doc/TopicCMakeGuide.dox +0 -56
  613. pyvpmr-240515/eigen/doc/TopicEigenExpressionTemplates.dox +0 -12
  614. pyvpmr-240515/eigen/doc/TopicLazyEvaluation.dox +0 -97
  615. pyvpmr-240515/eigen/doc/TopicLinearAlgebraDecompositions.dox +0 -287
  616. pyvpmr-240515/eigen/doc/TopicMultithreading.dox +0 -67
  617. pyvpmr-240515/eigen/doc/TopicResizing.dox +0 -11
  618. pyvpmr-240515/eigen/doc/TopicScalarTypes.dox +0 -12
  619. pyvpmr-240515/eigen/doc/TopicVectorization.dox +0 -9
  620. pyvpmr-240515/eigen/doc/TutorialAdvancedInitialization.dox +0 -162
  621. pyvpmr-240515/eigen/doc/TutorialArrayClass.dox +0 -192
  622. pyvpmr-240515/eigen/doc/TutorialBlockOperations.dox +0 -242
  623. pyvpmr-240515/eigen/doc/TutorialGeometry.dox +0 -242
  624. pyvpmr-240515/eigen/doc/TutorialLinearAlgebra.dox +0 -299
  625. pyvpmr-240515/eigen/doc/TutorialMapClass.dox +0 -86
  626. pyvpmr-240515/eigen/doc/TutorialMatrixArithmetic.dox +0 -214
  627. pyvpmr-240515/eigen/doc/TutorialMatrixClass.dox +0 -295
  628. pyvpmr-240515/eigen/doc/TutorialReductionsVisitorsBroadcasting.dox +0 -266
  629. pyvpmr-240515/eigen/doc/TutorialReshape.dox +0 -82
  630. pyvpmr-240515/eigen/doc/TutorialSTL.dox +0 -66
  631. pyvpmr-240515/eigen/doc/TutorialSlicingIndexing.dox +0 -245
  632. pyvpmr-240515/eigen/doc/TutorialSparse.dox +0 -365
  633. pyvpmr-240515/eigen/doc/TutorialSparse_example_details.dox +0 -4
  634. pyvpmr-240515/eigen/doc/UnalignedArrayAssert.dox +0 -133
  635. pyvpmr-240515/eigen/doc/UsingBlasLapackBackends.dox +0 -139
  636. pyvpmr-240515/eigen/doc/UsingIntelMKL.dox +0 -113
  637. pyvpmr-240515/eigen/doc/UsingNVCC.dox +0 -30
  638. pyvpmr-240515/eigen/doc/WrongStackAlignment.dox +0 -56
  639. pyvpmr-240515/eigen/doc/eigen_navtree_hacks.js +0 -382
  640. pyvpmr-240515/eigen/doc/eigendoxy.css +0 -233
  641. pyvpmr-240515/eigen/doc/eigendoxy_footer.html.in +0 -23
  642. pyvpmr-240515/eigen/doc/eigendoxy_header.html.in +0 -60
  643. pyvpmr-240515/eigen/doc/eigendoxy_layout.xml.in +0 -178
  644. pyvpmr-240515/eigen/doc/eigendoxy_tabs.css +0 -59
  645. pyvpmr-240515/eigen/doc/examples/.krazy +0 -2
  646. pyvpmr-240515/eigen/doc/examples/CMakeLists.txt +0 -16
  647. pyvpmr-240515/eigen/doc/examples/CustomizingEigen_Inheritance.cpp +0 -25
  648. pyvpmr-240515/eigen/doc/examples/Cwise_erf.cpp +0 -7
  649. pyvpmr-240515/eigen/doc/examples/Cwise_erfc.cpp +0 -7
  650. pyvpmr-240515/eigen/doc/examples/Cwise_lgamma.cpp +0 -7
  651. pyvpmr-240515/eigen/doc/examples/DenseBase_middleCols_int.cpp +0 -11
  652. pyvpmr-240515/eigen/doc/examples/DenseBase_middleRows_int.cpp +0 -11
  653. pyvpmr-240515/eigen/doc/examples/DenseBase_template_int_middleCols.cpp +0 -11
  654. pyvpmr-240515/eigen/doc/examples/DenseBase_template_int_middleRows.cpp +0 -11
  655. pyvpmr-240515/eigen/doc/examples/QuickStart_example.cpp +0 -13
  656. pyvpmr-240515/eigen/doc/examples/QuickStart_example2_dynamic.cpp +0 -14
  657. pyvpmr-240515/eigen/doc/examples/QuickStart_example2_fixed.cpp +0 -14
  658. pyvpmr-240515/eigen/doc/examples/TemplateKeyword_flexible.cpp +0 -18
  659. pyvpmr-240515/eigen/doc/examples/TemplateKeyword_simple.cpp +0 -18
  660. pyvpmr-240515/eigen/doc/examples/TutorialInplaceLU.cpp +0 -57
  661. pyvpmr-240515/eigen/doc/examples/TutorialLinAlgComputeTwice.cpp +0 -19
  662. pyvpmr-240515/eigen/doc/examples/TutorialLinAlgExComputeSolveError.cpp +0 -12
  663. pyvpmr-240515/eigen/doc/examples/TutorialLinAlgExSolveColPivHouseholderQR.cpp +0 -13
  664. pyvpmr-240515/eigen/doc/examples/TutorialLinAlgExSolveLDLT.cpp +0 -12
  665. pyvpmr-240515/eigen/doc/examples/TutorialLinAlgInverseDeterminant.cpp +0 -10
  666. pyvpmr-240515/eigen/doc/examples/TutorialLinAlgRankRevealing.cpp +0 -14
  667. pyvpmr-240515/eigen/doc/examples/TutorialLinAlgSVDSolve.cpp +0 -11
  668. pyvpmr-240515/eigen/doc/examples/TutorialLinAlgSelfAdjointEigenSolver.cpp +0 -14
  669. pyvpmr-240515/eigen/doc/examples/TutorialLinAlgSetThreshold.cpp +0 -11
  670. pyvpmr-240515/eigen/doc/examples/Tutorial_ArrayClass_accessors.cpp +0 -21
  671. pyvpmr-240515/eigen/doc/examples/Tutorial_ArrayClass_addition.cpp +0 -15
  672. pyvpmr-240515/eigen/doc/examples/Tutorial_ArrayClass_cwise_other.cpp +0 -11
  673. pyvpmr-240515/eigen/doc/examples/Tutorial_ArrayClass_interop.cpp +0 -18
  674. pyvpmr-240515/eigen/doc/examples/Tutorial_ArrayClass_interop_matrix.cpp +0 -22
  675. pyvpmr-240515/eigen/doc/examples/Tutorial_ArrayClass_mult.cpp +0 -10
  676. pyvpmr-240515/eigen/doc/examples/Tutorial_BlockOperations_block_assignment.cpp +0 -13
  677. pyvpmr-240515/eigen/doc/examples/Tutorial_BlockOperations_colrow.cpp +0 -14
  678. pyvpmr-240515/eigen/doc/examples/Tutorial_BlockOperations_corner.cpp +0 -13
  679. pyvpmr-240515/eigen/doc/examples/Tutorial_BlockOperations_print_block.cpp +0 -15
  680. pyvpmr-240515/eigen/doc/examples/Tutorial_BlockOperations_vector.cpp +0 -13
  681. pyvpmr-240515/eigen/doc/examples/Tutorial_PartialLU_solve.cpp +0 -14
  682. pyvpmr-240515/eigen/doc/examples/Tutorial_ReductionsVisitorsBroadcasting_broadcast_1nn.cpp +0 -18
  683. pyvpmr-240515/eigen/doc/examples/Tutorial_ReductionsVisitorsBroadcasting_broadcast_simple.cpp +0 -18
  684. pyvpmr-240515/eigen/doc/examples/Tutorial_ReductionsVisitorsBroadcasting_broadcast_simple_rowwise.cpp +0 -18
  685. pyvpmr-240515/eigen/doc/examples/Tutorial_ReductionsVisitorsBroadcasting_colwise.cpp +0 -10
  686. pyvpmr-240515/eigen/doc/examples/Tutorial_ReductionsVisitorsBroadcasting_maxnorm.cpp +0 -16
  687. pyvpmr-240515/eigen/doc/examples/Tutorial_ReductionsVisitorsBroadcasting_reductions_bool.cpp +0 -16
  688. pyvpmr-240515/eigen/doc/examples/Tutorial_ReductionsVisitorsBroadcasting_reductions_norm.cpp +0 -22
  689. pyvpmr-240515/eigen/doc/examples/Tutorial_ReductionsVisitorsBroadcasting_reductions_operatornorm.cpp +0 -13
  690. pyvpmr-240515/eigen/doc/examples/Tutorial_ReductionsVisitorsBroadcasting_rowwise.cpp +0 -10
  691. pyvpmr-240515/eigen/doc/examples/Tutorial_ReductionsVisitorsBroadcasting_visitors.cpp +0 -19
  692. pyvpmr-240515/eigen/doc/examples/Tutorial_simple_example_dynamic_size.cpp +0 -21
  693. pyvpmr-240515/eigen/doc/examples/Tutorial_simple_example_fixed_size.cpp +0 -11
  694. pyvpmr-240515/eigen/doc/examples/class_Block.cpp +0 -20
  695. pyvpmr-240515/eigen/doc/examples/class_CwiseBinaryOp.cpp +0 -17
  696. pyvpmr-240515/eigen/doc/examples/class_CwiseUnaryOp.cpp +0 -18
  697. pyvpmr-240515/eigen/doc/examples/class_CwiseUnaryOp_ptrfun.cpp +0 -16
  698. pyvpmr-240515/eigen/doc/examples/class_FixedBlock.cpp +0 -20
  699. pyvpmr-240515/eigen/doc/examples/class_FixedReshaped.cpp +0 -16
  700. pyvpmr-240515/eigen/doc/examples/class_FixedVectorBlock.cpp +0 -21
  701. pyvpmr-240515/eigen/doc/examples/class_Reshaped.cpp +0 -16
  702. pyvpmr-240515/eigen/doc/examples/class_VectorBlock.cpp +0 -21
  703. pyvpmr-240515/eigen/doc/examples/function_taking_eigenbase.cpp +0 -14
  704. pyvpmr-240515/eigen/doc/examples/function_taking_ref.cpp +0 -15
  705. pyvpmr-240515/eigen/doc/examples/make_circulant.cpp +0 -11
  706. pyvpmr-240515/eigen/doc/examples/make_circulant.cpp.entry +0 -4
  707. pyvpmr-240515/eigen/doc/examples/make_circulant.cpp.evaluator +0 -24
  708. pyvpmr-240515/eigen/doc/examples/make_circulant.cpp.expression +0 -16
  709. pyvpmr-240515/eigen/doc/examples/make_circulant.cpp.main +0 -7
  710. pyvpmr-240515/eigen/doc/examples/make_circulant.cpp.preamble +0 -5
  711. pyvpmr-240515/eigen/doc/examples/make_circulant.cpp.traits +0 -18
  712. pyvpmr-240515/eigen/doc/examples/make_circulant2.cpp +0 -46
  713. pyvpmr-240515/eigen/doc/examples/matrixfree_cg.cpp +0 -119
  714. pyvpmr-240515/eigen/doc/examples/nullary_indexing.cpp +0 -60
  715. pyvpmr-240515/eigen/doc/examples/tut_arithmetic_add_sub.cpp +0 -17
  716. pyvpmr-240515/eigen/doc/examples/tut_arithmetic_dot_cross.cpp +0 -17
  717. pyvpmr-240515/eigen/doc/examples/tut_arithmetic_matrix_mul.cpp +0 -16
  718. pyvpmr-240515/eigen/doc/examples/tut_arithmetic_redux_basic.cpp +0 -14
  719. pyvpmr-240515/eigen/doc/examples/tut_arithmetic_scalar_mul_div.cpp +0 -13
  720. pyvpmr-240515/eigen/doc/examples/tut_matrix_coefficient_accessors.cpp +0 -15
  721. pyvpmr-240515/eigen/doc/examples/tut_matrix_resize.cpp +0 -13
  722. pyvpmr-240515/eigen/doc/examples/tut_matrix_resize_fixed_size.cpp +0 -8
  723. pyvpmr-240515/eigen/doc/ftv2node.png +0 -0
  724. pyvpmr-240515/eigen/doc/ftv2pnode.png +0 -0
  725. pyvpmr-240515/eigen/doc/snippets/.krazy +0 -2
  726. pyvpmr-240515/eigen/doc/snippets/AngleAxis_mimic_euler.cpp +0 -4
  727. pyvpmr-240515/eigen/doc/snippets/Array_initializer_list_23_cxx11.cpp +0 -2
  728. pyvpmr-240515/eigen/doc/snippets/Array_initializer_list_vector_cxx11.cpp +0 -2
  729. pyvpmr-240515/eigen/doc/snippets/Array_variadic_ctor_cxx11.cpp +0 -3
  730. pyvpmr-240515/eigen/doc/snippets/BiCGSTAB_simple.cpp +0 -11
  731. pyvpmr-240515/eigen/doc/snippets/BiCGSTAB_step_by_step.cpp +0 -14
  732. pyvpmr-240515/eigen/doc/snippets/CMakeLists.txt +0 -31
  733. pyvpmr-240515/eigen/doc/snippets/ColPivHouseholderQR_solve.cpp +0 -8
  734. pyvpmr-240515/eigen/doc/snippets/ComplexEigenSolver_compute.cpp +0 -16
  735. pyvpmr-240515/eigen/doc/snippets/ComplexEigenSolver_eigenvalues.cpp +0 -3
  736. pyvpmr-240515/eigen/doc/snippets/ComplexEigenSolver_eigenvectors.cpp +0 -3
  737. pyvpmr-240515/eigen/doc/snippets/ComplexSchur_compute.cpp +0 -6
  738. pyvpmr-240515/eigen/doc/snippets/ComplexSchur_matrixT.cpp +0 -4
  739. pyvpmr-240515/eigen/doc/snippets/ComplexSchur_matrixU.cpp +0 -4
  740. pyvpmr-240515/eigen/doc/snippets/Cwise_abs.cpp +0 -2
  741. pyvpmr-240515/eigen/doc/snippets/Cwise_abs2.cpp +0 -2
  742. pyvpmr-240515/eigen/doc/snippets/Cwise_acos.cpp +0 -2
  743. pyvpmr-240515/eigen/doc/snippets/Cwise_arg.cpp +0 -3
  744. pyvpmr-240515/eigen/doc/snippets/Cwise_array_atan2_array.cpp +0 -3
  745. pyvpmr-240515/eigen/doc/snippets/Cwise_array_power_array.cpp +0 -3
  746. pyvpmr-240515/eigen/doc/snippets/Cwise_asin.cpp +0 -2
  747. pyvpmr-240515/eigen/doc/snippets/Cwise_atan.cpp +0 -2
  748. pyvpmr-240515/eigen/doc/snippets/Cwise_boolean_and.cpp +0 -2
  749. pyvpmr-240515/eigen/doc/snippets/Cwise_boolean_not.cpp +0 -5
  750. pyvpmr-240515/eigen/doc/snippets/Cwise_boolean_or.cpp +0 -2
  751. pyvpmr-240515/eigen/doc/snippets/Cwise_cbrt.cpp +0 -2
  752. pyvpmr-240515/eigen/doc/snippets/Cwise_ceil.cpp +0 -3
  753. pyvpmr-240515/eigen/doc/snippets/Cwise_cos.cpp +0 -2
  754. pyvpmr-240515/eigen/doc/snippets/Cwise_cosh.cpp +0 -2
  755. pyvpmr-240515/eigen/doc/snippets/Cwise_cube.cpp +0 -2
  756. pyvpmr-240515/eigen/doc/snippets/Cwise_equal_equal.cpp +0 -2
  757. pyvpmr-240515/eigen/doc/snippets/Cwise_exp.cpp +0 -2
  758. pyvpmr-240515/eigen/doc/snippets/Cwise_floor.cpp +0 -3
  759. pyvpmr-240515/eigen/doc/snippets/Cwise_greater.cpp +0 -2
  760. pyvpmr-240515/eigen/doc/snippets/Cwise_greater_equal.cpp +0 -2
  761. pyvpmr-240515/eigen/doc/snippets/Cwise_inverse.cpp +0 -2
  762. pyvpmr-240515/eigen/doc/snippets/Cwise_isFinite.cpp +0 -5
  763. pyvpmr-240515/eigen/doc/snippets/Cwise_isInf.cpp +0 -5
  764. pyvpmr-240515/eigen/doc/snippets/Cwise_isNaN.cpp +0 -5
  765. pyvpmr-240515/eigen/doc/snippets/Cwise_less.cpp +0 -2
  766. pyvpmr-240515/eigen/doc/snippets/Cwise_less_equal.cpp +0 -2
  767. pyvpmr-240515/eigen/doc/snippets/Cwise_log.cpp +0 -2
  768. pyvpmr-240515/eigen/doc/snippets/Cwise_log10.cpp +0 -2
  769. pyvpmr-240515/eigen/doc/snippets/Cwise_max.cpp +0 -2
  770. pyvpmr-240515/eigen/doc/snippets/Cwise_min.cpp +0 -2
  771. pyvpmr-240515/eigen/doc/snippets/Cwise_minus.cpp +0 -2
  772. pyvpmr-240515/eigen/doc/snippets/Cwise_minus_equal.cpp +0 -3
  773. pyvpmr-240515/eigen/doc/snippets/Cwise_not_equal.cpp +0 -2
  774. pyvpmr-240515/eigen/doc/snippets/Cwise_plus.cpp +0 -2
  775. pyvpmr-240515/eigen/doc/snippets/Cwise_plus_equal.cpp +0 -3
  776. pyvpmr-240515/eigen/doc/snippets/Cwise_pow.cpp +0 -2
  777. pyvpmr-240515/eigen/doc/snippets/Cwise_product.cpp +0 -3
  778. pyvpmr-240515/eigen/doc/snippets/Cwise_quotient.cpp +0 -2
  779. pyvpmr-240515/eigen/doc/snippets/Cwise_rint.cpp +0 -3
  780. pyvpmr-240515/eigen/doc/snippets/Cwise_round.cpp +0 -3
  781. pyvpmr-240515/eigen/doc/snippets/Cwise_scalar_power_array.cpp +0 -2
  782. pyvpmr-240515/eigen/doc/snippets/Cwise_sign.cpp +0 -2
  783. pyvpmr-240515/eigen/doc/snippets/Cwise_sin.cpp +0 -2
  784. pyvpmr-240515/eigen/doc/snippets/Cwise_sinh.cpp +0 -2
  785. pyvpmr-240515/eigen/doc/snippets/Cwise_slash_equal.cpp +0 -3
  786. pyvpmr-240515/eigen/doc/snippets/Cwise_sqrt.cpp +0 -2
  787. pyvpmr-240515/eigen/doc/snippets/Cwise_square.cpp +0 -2
  788. pyvpmr-240515/eigen/doc/snippets/Cwise_tan.cpp +0 -2
  789. pyvpmr-240515/eigen/doc/snippets/Cwise_tanh.cpp +0 -2
  790. pyvpmr-240515/eigen/doc/snippets/Cwise_times_equal.cpp +0 -3
  791. pyvpmr-240515/eigen/doc/snippets/DenseBase_LinSpaced.cpp +0 -2
  792. pyvpmr-240515/eigen/doc/snippets/DenseBase_LinSpacedInt.cpp +0 -8
  793. pyvpmr-240515/eigen/doc/snippets/DenseBase_LinSpaced_seq_deprecated.cpp +0 -2
  794. pyvpmr-240515/eigen/doc/snippets/DenseBase_setLinSpaced.cpp +0 -3
  795. pyvpmr-240515/eigen/doc/snippets/DirectionWise_hnormalized.cpp +0 -6
  796. pyvpmr-240515/eigen/doc/snippets/DirectionWise_replicate.cpp +0 -4
  797. pyvpmr-240515/eigen/doc/snippets/DirectionWise_replicate_int.cpp +0 -4
  798. pyvpmr-240515/eigen/doc/snippets/EigenSolver_EigenSolver_MatrixType.cpp +0 -16
  799. pyvpmr-240515/eigen/doc/snippets/EigenSolver_compute.cpp +0 -6
  800. pyvpmr-240515/eigen/doc/snippets/EigenSolver_eigenvalues.cpp +0 -3
  801. pyvpmr-240515/eigen/doc/snippets/EigenSolver_eigenvectors.cpp +0 -3
  802. pyvpmr-240515/eigen/doc/snippets/EigenSolver_pseudoEigenvectors.cpp +0 -9
  803. pyvpmr-240515/eigen/doc/snippets/FullPivHouseholderQR_solve.cpp +0 -8
  804. pyvpmr-240515/eigen/doc/snippets/FullPivLU_image.cpp +0 -7
  805. pyvpmr-240515/eigen/doc/snippets/FullPivLU_kernel.cpp +0 -5
  806. pyvpmr-240515/eigen/doc/snippets/FullPivLU_solve.cpp +0 -9
  807. pyvpmr-240515/eigen/doc/snippets/GeneralizedEigenSolver.cpp +0 -7
  808. pyvpmr-240515/eigen/doc/snippets/HessenbergDecomposition_compute.cpp +0 -6
  809. pyvpmr-240515/eigen/doc/snippets/HessenbergDecomposition_matrixH.cpp +0 -8
  810. pyvpmr-240515/eigen/doc/snippets/HessenbergDecomposition_packedMatrix.cpp +0 -8
  811. pyvpmr-240515/eigen/doc/snippets/HouseholderQR_householderQ.cpp +0 -7
  812. pyvpmr-240515/eigen/doc/snippets/HouseholderQR_solve.cpp +0 -9
  813. pyvpmr-240515/eigen/doc/snippets/HouseholderSequence_HouseholderSequence.cpp +0 -31
  814. pyvpmr-240515/eigen/doc/snippets/IOFormat.cpp +0 -14
  815. pyvpmr-240515/eigen/doc/snippets/JacobiSVD_basic.cpp +0 -9
  816. pyvpmr-240515/eigen/doc/snippets/Jacobi_makeGivens.cpp +0 -6
  817. pyvpmr-240515/eigen/doc/snippets/Jacobi_makeJacobi.cpp +0 -8
  818. pyvpmr-240515/eigen/doc/snippets/LLT_example.cpp +0 -12
  819. pyvpmr-240515/eigen/doc/snippets/LLT_solve.cpp +0 -7
  820. pyvpmr-240515/eigen/doc/snippets/LeastSquaresNormalEquations.cpp +0 -3
  821. pyvpmr-240515/eigen/doc/snippets/LeastSquaresQR.cpp +0 -3
  822. pyvpmr-240515/eigen/doc/snippets/Map_general_stride.cpp +0 -3
  823. pyvpmr-240515/eigen/doc/snippets/Map_inner_stride.cpp +0 -4
  824. pyvpmr-240515/eigen/doc/snippets/Map_outer_stride.cpp +0 -3
  825. pyvpmr-240515/eigen/doc/snippets/Map_placement_new.cpp +0 -5
  826. pyvpmr-240515/eigen/doc/snippets/Map_simple.cpp +0 -3
  827. pyvpmr-240515/eigen/doc/snippets/MatrixBase_adjoint.cpp +0 -3
  828. pyvpmr-240515/eigen/doc/snippets/MatrixBase_all.cpp +0 -7
  829. pyvpmr-240515/eigen/doc/snippets/MatrixBase_applyOnTheLeft.cpp +0 -5
  830. pyvpmr-240515/eigen/doc/snippets/MatrixBase_applyOnTheRight.cpp +0 -7
  831. pyvpmr-240515/eigen/doc/snippets/MatrixBase_array.cpp +0 -4
  832. pyvpmr-240515/eigen/doc/snippets/MatrixBase_array_const.cpp +0 -4
  833. pyvpmr-240515/eigen/doc/snippets/MatrixBase_asDiagonal.cpp +0 -1
  834. pyvpmr-240515/eigen/doc/snippets/MatrixBase_block_int_int.cpp +0 -5
  835. pyvpmr-240515/eigen/doc/snippets/MatrixBase_block_int_int_int_int.cpp +0 -5
  836. pyvpmr-240515/eigen/doc/snippets/MatrixBase_bottomLeftCorner_int_int.cpp +0 -6
  837. pyvpmr-240515/eigen/doc/snippets/MatrixBase_bottomRightCorner_int_int.cpp +0 -6
  838. pyvpmr-240515/eigen/doc/snippets/MatrixBase_bottomRows_int.cpp +0 -6
  839. pyvpmr-240515/eigen/doc/snippets/MatrixBase_cast.cpp +0 -3
  840. pyvpmr-240515/eigen/doc/snippets/MatrixBase_col.cpp +0 -3
  841. pyvpmr-240515/eigen/doc/snippets/MatrixBase_colwise.cpp +0 -4
  842. pyvpmr-240515/eigen/doc/snippets/MatrixBase_colwise_iterator_cxx11.cpp +0 -11
  843. pyvpmr-240515/eigen/doc/snippets/MatrixBase_computeInverseAndDetWithCheck.cpp +0 -12
  844. pyvpmr-240515/eigen/doc/snippets/MatrixBase_computeInverseWithCheck.cpp +0 -10
  845. pyvpmr-240515/eigen/doc/snippets/MatrixBase_cwiseAbs.cpp +0 -3
  846. pyvpmr-240515/eigen/doc/snippets/MatrixBase_cwiseAbs2.cpp +0 -3
  847. pyvpmr-240515/eigen/doc/snippets/MatrixBase_cwiseArg.cpp +0 -3
  848. pyvpmr-240515/eigen/doc/snippets/MatrixBase_cwiseEqual.cpp +0 -6
  849. pyvpmr-240515/eigen/doc/snippets/MatrixBase_cwiseInverse.cpp +0 -3
  850. pyvpmr-240515/eigen/doc/snippets/MatrixBase_cwiseMax.cpp +0 -2
  851. pyvpmr-240515/eigen/doc/snippets/MatrixBase_cwiseMin.cpp +0 -2
  852. pyvpmr-240515/eigen/doc/snippets/MatrixBase_cwiseNotEqual.cpp +0 -6
  853. pyvpmr-240515/eigen/doc/snippets/MatrixBase_cwiseProduct.cpp +0 -3
  854. pyvpmr-240515/eigen/doc/snippets/MatrixBase_cwiseQuotient.cpp +0 -2
  855. pyvpmr-240515/eigen/doc/snippets/MatrixBase_cwiseSign.cpp +0 -3
  856. pyvpmr-240515/eigen/doc/snippets/MatrixBase_cwiseSqrt.cpp +0 -2
  857. pyvpmr-240515/eigen/doc/snippets/MatrixBase_diagonal.cpp +0 -3
  858. pyvpmr-240515/eigen/doc/snippets/MatrixBase_diagonal_int.cpp +0 -5
  859. pyvpmr-240515/eigen/doc/snippets/MatrixBase_diagonal_template_int.cpp +0 -5
  860. pyvpmr-240515/eigen/doc/snippets/MatrixBase_eigenvalues.cpp +0 -3
  861. pyvpmr-240515/eigen/doc/snippets/MatrixBase_end_int.cpp +0 -5
  862. pyvpmr-240515/eigen/doc/snippets/MatrixBase_eval.cpp +0 -12
  863. pyvpmr-240515/eigen/doc/snippets/MatrixBase_fixedBlock_int_int.cpp +0 -5
  864. pyvpmr-240515/eigen/doc/snippets/MatrixBase_hnormalized.cpp +0 -6
  865. pyvpmr-240515/eigen/doc/snippets/MatrixBase_homogeneous.cpp +0 -7
  866. pyvpmr-240515/eigen/doc/snippets/MatrixBase_identity.cpp +0 -1
  867. pyvpmr-240515/eigen/doc/snippets/MatrixBase_identity_int_int.cpp +0 -1
  868. pyvpmr-240515/eigen/doc/snippets/MatrixBase_inverse.cpp +0 -3
  869. pyvpmr-240515/eigen/doc/snippets/MatrixBase_isDiagonal.cpp +0 -5
  870. pyvpmr-240515/eigen/doc/snippets/MatrixBase_isIdentity.cpp +0 -5
  871. pyvpmr-240515/eigen/doc/snippets/MatrixBase_isOnes.cpp +0 -5
  872. pyvpmr-240515/eigen/doc/snippets/MatrixBase_isOrthogonal.cpp +0 -6
  873. pyvpmr-240515/eigen/doc/snippets/MatrixBase_isUnitary.cpp +0 -5
  874. pyvpmr-240515/eigen/doc/snippets/MatrixBase_isZero.cpp +0 -5
  875. pyvpmr-240515/eigen/doc/snippets/MatrixBase_leftCols_int.cpp +0 -6
  876. pyvpmr-240515/eigen/doc/snippets/MatrixBase_noalias.cpp +0 -5
  877. pyvpmr-240515/eigen/doc/snippets/MatrixBase_ones.cpp +0 -2
  878. pyvpmr-240515/eigen/doc/snippets/MatrixBase_ones_int.cpp +0 -2
  879. pyvpmr-240515/eigen/doc/snippets/MatrixBase_ones_int_int.cpp +0 -1
  880. pyvpmr-240515/eigen/doc/snippets/MatrixBase_operatorNorm.cpp +0 -2
  881. pyvpmr-240515/eigen/doc/snippets/MatrixBase_prod.cpp +0 -3
  882. pyvpmr-240515/eigen/doc/snippets/MatrixBase_random.cpp +0 -1
  883. pyvpmr-240515/eigen/doc/snippets/MatrixBase_random_int.cpp +0 -1
  884. pyvpmr-240515/eigen/doc/snippets/MatrixBase_random_int_int.cpp +0 -1
  885. pyvpmr-240515/eigen/doc/snippets/MatrixBase_replicate.cpp +0 -4
  886. pyvpmr-240515/eigen/doc/snippets/MatrixBase_replicate_int_int.cpp +0 -4
  887. pyvpmr-240515/eigen/doc/snippets/MatrixBase_reshaped_auto.cpp +0 -4
  888. pyvpmr-240515/eigen/doc/snippets/MatrixBase_reshaped_fixed.cpp +0 -3
  889. pyvpmr-240515/eigen/doc/snippets/MatrixBase_reshaped_int_int.cpp +0 -3
  890. pyvpmr-240515/eigen/doc/snippets/MatrixBase_reshaped_to_vector.cpp +0 -4
  891. pyvpmr-240515/eigen/doc/snippets/MatrixBase_reverse.cpp +0 -7
  892. pyvpmr-240515/eigen/doc/snippets/MatrixBase_rightCols_int.cpp +0 -6
  893. pyvpmr-240515/eigen/doc/snippets/MatrixBase_row.cpp +0 -3
  894. pyvpmr-240515/eigen/doc/snippets/MatrixBase_rowwise.cpp +0 -4
  895. pyvpmr-240515/eigen/doc/snippets/MatrixBase_segment_int_int.cpp +0 -5
  896. pyvpmr-240515/eigen/doc/snippets/MatrixBase_select.cpp +0 -4
  897. pyvpmr-240515/eigen/doc/snippets/MatrixBase_selfadjointView.cpp +0 -6
  898. pyvpmr-240515/eigen/doc/snippets/MatrixBase_set.cpp +0 -10
  899. pyvpmr-240515/eigen/doc/snippets/MatrixBase_setIdentity.cpp +0 -3
  900. pyvpmr-240515/eigen/doc/snippets/MatrixBase_setOnes.cpp +0 -3
  901. pyvpmr-240515/eigen/doc/snippets/MatrixBase_setRandom.cpp +0 -3
  902. pyvpmr-240515/eigen/doc/snippets/MatrixBase_setZero.cpp +0 -3
  903. pyvpmr-240515/eigen/doc/snippets/MatrixBase_start_int.cpp +0 -5
  904. pyvpmr-240515/eigen/doc/snippets/MatrixBase_template_int_bottomRows.cpp +0 -6
  905. pyvpmr-240515/eigen/doc/snippets/MatrixBase_template_int_end.cpp +0 -5
  906. pyvpmr-240515/eigen/doc/snippets/MatrixBase_template_int_int_block_int_int_int_int.cpp +0 -5
  907. pyvpmr-240515/eigen/doc/snippets/MatrixBase_template_int_int_bottomLeftCorner.cpp +0 -6
  908. pyvpmr-240515/eigen/doc/snippets/MatrixBase_template_int_int_bottomLeftCorner_int_int.cpp +0 -6
  909. pyvpmr-240515/eigen/doc/snippets/MatrixBase_template_int_int_bottomRightCorner.cpp +0 -6
  910. pyvpmr-240515/eigen/doc/snippets/MatrixBase_template_int_int_bottomRightCorner_int_int.cpp +0 -6
  911. pyvpmr-240515/eigen/doc/snippets/MatrixBase_template_int_int_topLeftCorner.cpp +0 -6
  912. pyvpmr-240515/eigen/doc/snippets/MatrixBase_template_int_int_topLeftCorner_int_int.cpp +0 -6
  913. pyvpmr-240515/eigen/doc/snippets/MatrixBase_template_int_int_topRightCorner.cpp +0 -6
  914. pyvpmr-240515/eigen/doc/snippets/MatrixBase_template_int_int_topRightCorner_int_int.cpp +0 -6
  915. pyvpmr-240515/eigen/doc/snippets/MatrixBase_template_int_leftCols.cpp +0 -6
  916. pyvpmr-240515/eigen/doc/snippets/MatrixBase_template_int_rightCols.cpp +0 -6
  917. pyvpmr-240515/eigen/doc/snippets/MatrixBase_template_int_segment.cpp +0 -5
  918. pyvpmr-240515/eigen/doc/snippets/MatrixBase_template_int_start.cpp +0 -5
  919. pyvpmr-240515/eigen/doc/snippets/MatrixBase_template_int_topRows.cpp +0 -6
  920. pyvpmr-240515/eigen/doc/snippets/MatrixBase_topLeftCorner_int_int.cpp +0 -6
  921. pyvpmr-240515/eigen/doc/snippets/MatrixBase_topRightCorner_int_int.cpp +0 -6
  922. pyvpmr-240515/eigen/doc/snippets/MatrixBase_topRows_int.cpp +0 -6
  923. pyvpmr-240515/eigen/doc/snippets/MatrixBase_transpose.cpp +0 -7
  924. pyvpmr-240515/eigen/doc/snippets/MatrixBase_triangularView.cpp +0 -9
  925. pyvpmr-240515/eigen/doc/snippets/MatrixBase_zero.cpp +0 -2
  926. pyvpmr-240515/eigen/doc/snippets/MatrixBase_zero_int.cpp +0 -2
  927. pyvpmr-240515/eigen/doc/snippets/MatrixBase_zero_int_int.cpp +0 -1
  928. pyvpmr-240515/eigen/doc/snippets/Matrix_Map_stride.cpp +0 -4
  929. pyvpmr-240515/eigen/doc/snippets/Matrix_initializer_list_23_cxx11.cpp +0 -2
  930. pyvpmr-240515/eigen/doc/snippets/Matrix_initializer_list_vector_cxx11.cpp +0 -2
  931. pyvpmr-240515/eigen/doc/snippets/Matrix_resize_NoChange_int.cpp +0 -3
  932. pyvpmr-240515/eigen/doc/snippets/Matrix_resize_int.cpp +0 -6
  933. pyvpmr-240515/eigen/doc/snippets/Matrix_resize_int_NoChange.cpp +0 -3
  934. pyvpmr-240515/eigen/doc/snippets/Matrix_resize_int_int.cpp +0 -9
  935. pyvpmr-240515/eigen/doc/snippets/Matrix_setConstant_int.cpp +0 -3
  936. pyvpmr-240515/eigen/doc/snippets/Matrix_setConstant_int_int.cpp +0 -3
  937. pyvpmr-240515/eigen/doc/snippets/Matrix_setIdentity_int_int.cpp +0 -3
  938. pyvpmr-240515/eigen/doc/snippets/Matrix_setOnes_int.cpp +0 -3
  939. pyvpmr-240515/eigen/doc/snippets/Matrix_setOnes_int_int.cpp +0 -3
  940. pyvpmr-240515/eigen/doc/snippets/Matrix_setRandom_int.cpp +0 -3
  941. pyvpmr-240515/eigen/doc/snippets/Matrix_setRandom_int_int.cpp +0 -3
  942. pyvpmr-240515/eigen/doc/snippets/Matrix_setZero_int.cpp +0 -3
  943. pyvpmr-240515/eigen/doc/snippets/Matrix_setZero_int_int.cpp +0 -3
  944. pyvpmr-240515/eigen/doc/snippets/Matrix_variadic_ctor_cxx11.cpp +0 -3
  945. pyvpmr-240515/eigen/doc/snippets/PartialPivLU_solve.cpp +0 -7
  946. pyvpmr-240515/eigen/doc/snippets/PartialRedux_count.cpp +0 -5
  947. pyvpmr-240515/eigen/doc/snippets/PartialRedux_maxCoeff.cpp +0 -3
  948. pyvpmr-240515/eigen/doc/snippets/PartialRedux_minCoeff.cpp +0 -3
  949. pyvpmr-240515/eigen/doc/snippets/PartialRedux_norm.cpp +0 -3
  950. pyvpmr-240515/eigen/doc/snippets/PartialRedux_prod.cpp +0 -3
  951. pyvpmr-240515/eigen/doc/snippets/PartialRedux_squaredNorm.cpp +0 -3
  952. pyvpmr-240515/eigen/doc/snippets/PartialRedux_sum.cpp +0 -3
  953. pyvpmr-240515/eigen/doc/snippets/RealQZ_compute.cpp +0 -25
  954. pyvpmr-240515/eigen/doc/snippets/RealSchur_RealSchur_MatrixType.cpp +0 -10
  955. pyvpmr-240515/eigen/doc/snippets/RealSchur_compute.cpp +0 -6
  956. pyvpmr-240515/eigen/doc/snippets/SelfAdjointEigenSolver_SelfAdjointEigenSolver.cpp +0 -7
  957. pyvpmr-240515/eigen/doc/snippets/SelfAdjointEigenSolver_SelfAdjointEigenSolver_MatrixType.cpp +0 -17
  958. pyvpmr-240515/eigen/doc/snippets/SelfAdjointEigenSolver_SelfAdjointEigenSolver_MatrixType2.cpp +0 -16
  959. pyvpmr-240515/eigen/doc/snippets/SelfAdjointEigenSolver_compute_MatrixType.cpp +0 -7
  960. pyvpmr-240515/eigen/doc/snippets/SelfAdjointEigenSolver_compute_MatrixType2.cpp +0 -9
  961. pyvpmr-240515/eigen/doc/snippets/SelfAdjointEigenSolver_eigenvalues.cpp +0 -3
  962. pyvpmr-240515/eigen/doc/snippets/SelfAdjointEigenSolver_eigenvectors.cpp +0 -3
  963. pyvpmr-240515/eigen/doc/snippets/SelfAdjointEigenSolver_operatorInverseSqrt.cpp +0 -9
  964. pyvpmr-240515/eigen/doc/snippets/SelfAdjointEigenSolver_operatorSqrt.cpp +0 -8
  965. pyvpmr-240515/eigen/doc/snippets/SelfAdjointView_eigenvalues.cpp +0 -3
  966. pyvpmr-240515/eigen/doc/snippets/SelfAdjointView_operatorNorm.cpp +0 -2
  967. pyvpmr-240515/eigen/doc/snippets/Slicing_arrayexpr.cpp +0 -5
  968. pyvpmr-240515/eigen/doc/snippets/Slicing_custom_padding_cxx11.cpp +0 -12
  969. pyvpmr-240515/eigen/doc/snippets/Slicing_rawarray_cxx11.cpp +0 -3
  970. pyvpmr-240515/eigen/doc/snippets/Slicing_stdvector_cxx11.cpp +0 -4
  971. pyvpmr-240515/eigen/doc/snippets/SparseMatrix_coeffs.cpp +0 -9
  972. pyvpmr-240515/eigen/doc/snippets/TopicAliasing_block.cpp +0 -7
  973. pyvpmr-240515/eigen/doc/snippets/TopicAliasing_block_correct.cpp +0 -7
  974. pyvpmr-240515/eigen/doc/snippets/TopicAliasing_cwise.cpp +0 -18
  975. pyvpmr-240515/eigen/doc/snippets/TopicAliasing_mult1.cpp +0 -4
  976. pyvpmr-240515/eigen/doc/snippets/TopicAliasing_mult2.cpp +0 -10
  977. pyvpmr-240515/eigen/doc/snippets/TopicAliasing_mult3.cpp +0 -4
  978. pyvpmr-240515/eigen/doc/snippets/TopicAliasing_mult4.cpp +0 -5
  979. pyvpmr-240515/eigen/doc/snippets/TopicAliasing_mult5.cpp +0 -5
  980. pyvpmr-240515/eigen/doc/snippets/TopicStorageOrders_example.cpp +0 -13
  981. pyvpmr-240515/eigen/doc/snippets/Triangular_solve.cpp +0 -10
  982. pyvpmr-240515/eigen/doc/snippets/Tridiagonalization_Tridiagonalization_MatrixType.cpp +0 -9
  983. pyvpmr-240515/eigen/doc/snippets/Tridiagonalization_compute.cpp +0 -9
  984. pyvpmr-240515/eigen/doc/snippets/Tridiagonalization_decomposeInPlace.cpp +0 -12
  985. pyvpmr-240515/eigen/doc/snippets/Tridiagonalization_diagonal.cpp +0 -13
  986. pyvpmr-240515/eigen/doc/snippets/Tridiagonalization_householderCoefficients.cpp +0 -6
  987. pyvpmr-240515/eigen/doc/snippets/Tridiagonalization_packedMatrix.cpp +0 -7
  988. pyvpmr-240515/eigen/doc/snippets/Tutorial_AdvancedInitialization_Block.cpp +0 -5
  989. pyvpmr-240515/eigen/doc/snippets/Tutorial_AdvancedInitialization_CommaTemporary.cpp +0 -4
  990. pyvpmr-240515/eigen/doc/snippets/Tutorial_AdvancedInitialization_Join.cpp +0 -11
  991. pyvpmr-240515/eigen/doc/snippets/Tutorial_AdvancedInitialization_LinSpaced.cpp +0 -7
  992. pyvpmr-240515/eigen/doc/snippets/Tutorial_AdvancedInitialization_ThreeWays.cpp +0 -19
  993. pyvpmr-240515/eigen/doc/snippets/Tutorial_AdvancedInitialization_Zero.cpp +0 -11
  994. pyvpmr-240515/eigen/doc/snippets/Tutorial_Map_rowmajor.cpp +0 -5
  995. pyvpmr-240515/eigen/doc/snippets/Tutorial_Map_using.cpp +0 -20
  996. pyvpmr-240515/eigen/doc/snippets/Tutorial_ReshapeMat2Mat.cpp +0 -5
  997. pyvpmr-240515/eigen/doc/snippets/Tutorial_ReshapeMat2Vec.cpp +0 -9
  998. pyvpmr-240515/eigen/doc/snippets/Tutorial_SlicingCol.cpp +0 -11
  999. pyvpmr-240515/eigen/doc/snippets/Tutorial_SlicingVec.cpp +0 -4
  1000. pyvpmr-240515/eigen/doc/snippets/Tutorial_commainit_01.cpp +0 -3
  1001. pyvpmr-240515/eigen/doc/snippets/Tutorial_commainit_01b.cpp +0 -5
  1002. pyvpmr-240515/eigen/doc/snippets/Tutorial_commainit_02.cpp +0 -5
  1003. pyvpmr-240515/eigen/doc/snippets/Tutorial_range_for_loop_1d_cxx11.cpp +0 -4
  1004. pyvpmr-240515/eigen/doc/snippets/Tutorial_range_for_loop_2d_cxx11.cpp +0 -4
  1005. pyvpmr-240515/eigen/doc/snippets/Tutorial_reshaped_vs_resize_1.cpp +0 -5
  1006. pyvpmr-240515/eigen/doc/snippets/Tutorial_reshaped_vs_resize_2.cpp +0 -6
  1007. pyvpmr-240515/eigen/doc/snippets/Tutorial_solve_matrix_inverse.cpp +0 -6
  1008. pyvpmr-240515/eigen/doc/snippets/Tutorial_solve_multiple_rhs.cpp +0 -10
  1009. pyvpmr-240515/eigen/doc/snippets/Tutorial_solve_reuse_decomposition.cpp +0 -13
  1010. pyvpmr-240515/eigen/doc/snippets/Tutorial_solve_singular.cpp +0 -9
  1011. pyvpmr-240515/eigen/doc/snippets/Tutorial_solve_triangular.cpp +0 -8
  1012. pyvpmr-240515/eigen/doc/snippets/Tutorial_solve_triangular_inplace.cpp +0 -6
  1013. pyvpmr-240515/eigen/doc/snippets/Tutorial_std_sort.cpp +0 -4
  1014. pyvpmr-240515/eigen/doc/snippets/Tutorial_std_sort_rows_cxx11.cpp +0 -4
  1015. pyvpmr-240515/eigen/doc/snippets/VectorwiseOp_homogeneous.cpp +0 -8
  1016. pyvpmr-240515/eigen/doc/snippets/Vectorwise_reverse.cpp +0 -9
  1017. pyvpmr-240515/eigen/doc/snippets/class_FullPivLU.cpp +0 -15
  1018. pyvpmr-240515/eigen/doc/snippets/compile_snippet.cpp.in +0 -27
  1019. pyvpmr-240515/eigen/doc/snippets/tut_arithmetic_redux_minmax.cpp +0 -10
  1020. pyvpmr-240515/eigen/doc/snippets/tut_arithmetic_transpose_aliasing.cpp +0 -6
  1021. pyvpmr-240515/eigen/doc/snippets/tut_arithmetic_transpose_conjugate.cpp +0 -8
  1022. pyvpmr-240515/eigen/doc/snippets/tut_arithmetic_transpose_inplace.cpp +0 -6
  1023. pyvpmr-240515/eigen/doc/snippets/tut_matrix_assignment_resizing.cpp +0 -5
  1024. pyvpmr-240515/eigen/doc/special_examples/CMakeLists.txt +0 -31
  1025. pyvpmr-240515/eigen/doc/special_examples/Tutorial_sparse_example.cpp +0 -36
  1026. pyvpmr-240515/eigen/doc/special_examples/Tutorial_sparse_example_details.cpp +0 -42
  1027. pyvpmr-240515/eigen/doc/special_examples/random_cpp11.cpp +0 -12
  1028. pyvpmr-240515/eigen/doc/tutorial.cpp +0 -61
  1029. pyvpmr-240515/eigen/eigen3.pc.in +0 -9
  1030. pyvpmr-240515/eigen/failtest/CMakeLists.txt +0 -68
  1031. pyvpmr-240515/eigen/failtest/bdcsvd_int.cpp +0 -11
  1032. pyvpmr-240515/eigen/failtest/block_nonconst_ctor_on_const_xpr_0.cpp +0 -13
  1033. pyvpmr-240515/eigen/failtest/block_nonconst_ctor_on_const_xpr_1.cpp +0 -13
  1034. pyvpmr-240515/eigen/failtest/block_nonconst_ctor_on_const_xpr_2.cpp +0 -16
  1035. pyvpmr-240515/eigen/failtest/block_on_const_type_actually_const_0.cpp +0 -16
  1036. pyvpmr-240515/eigen/failtest/block_on_const_type_actually_const_1.cpp +0 -16
  1037. pyvpmr-240515/eigen/failtest/colpivqr_int.cpp +0 -13
  1038. pyvpmr-240515/eigen/failtest/const_qualified_block_method_retval_0.cpp +0 -16
  1039. pyvpmr-240515/eigen/failtest/const_qualified_block_method_retval_1.cpp +0 -16
  1040. pyvpmr-240515/eigen/failtest/const_qualified_diagonal_method_retval.cpp +0 -16
  1041. pyvpmr-240515/eigen/failtest/const_qualified_transpose_method_retval.cpp +0 -16
  1042. pyvpmr-240515/eigen/failtest/cwiseunaryview_nonconst_ctor_on_const_xpr.cpp +0 -13
  1043. pyvpmr-240515/eigen/failtest/cwiseunaryview_on_const_type_actually_const.cpp +0 -16
  1044. pyvpmr-240515/eigen/failtest/diagonal_nonconst_ctor_on_const_xpr.cpp +0 -13
  1045. pyvpmr-240515/eigen/failtest/diagonal_on_const_type_actually_const.cpp +0 -16
  1046. pyvpmr-240515/eigen/failtest/eigensolver_cplx.cpp +0 -11
  1047. pyvpmr-240515/eigen/failtest/eigensolver_int.cpp +0 -11
  1048. pyvpmr-240515/eigen/failtest/failtest_sanity_check.cpp +0 -5
  1049. pyvpmr-240515/eigen/failtest/fullpivlu_int.cpp +0 -11
  1050. pyvpmr-240515/eigen/failtest/fullpivqr_int.cpp +0 -13
  1051. pyvpmr-240515/eigen/failtest/initializer_list_1.cpp +0 -11
  1052. pyvpmr-240515/eigen/failtest/initializer_list_2.cpp +0 -13
  1053. pyvpmr-240515/eigen/failtest/jacobisvd_int.cpp +0 -11
  1054. pyvpmr-240515/eigen/failtest/ldlt_int.cpp +0 -11
  1055. pyvpmr-240515/eigen/failtest/llt_int.cpp +0 -11
  1056. pyvpmr-240515/eigen/failtest/map_nonconst_ctor_on_const_ptr_0.cpp +0 -13
  1057. pyvpmr-240515/eigen/failtest/map_nonconst_ctor_on_const_ptr_1.cpp +0 -13
  1058. pyvpmr-240515/eigen/failtest/map_nonconst_ctor_on_const_ptr_2.cpp +0 -13
  1059. pyvpmr-240515/eigen/failtest/map_nonconst_ctor_on_const_ptr_3.cpp +0 -15
  1060. pyvpmr-240515/eigen/failtest/map_nonconst_ctor_on_const_ptr_4.cpp +0 -15
  1061. pyvpmr-240515/eigen/failtest/map_on_const_type_actually_const_0.cpp +0 -13
  1062. pyvpmr-240515/eigen/failtest/map_on_const_type_actually_const_1.cpp +0 -13
  1063. pyvpmr-240515/eigen/failtest/partialpivlu_int.cpp +0 -11
  1064. pyvpmr-240515/eigen/failtest/qr_int.cpp +0 -11
  1065. pyvpmr-240515/eigen/failtest/ref_1.cpp +0 -17
  1066. pyvpmr-240515/eigen/failtest/ref_2.cpp +0 -14
  1067. pyvpmr-240515/eigen/failtest/ref_3.cpp +0 -14
  1068. pyvpmr-240515/eigen/failtest/ref_4.cpp +0 -14
  1069. pyvpmr-240515/eigen/failtest/ref_5.cpp +0 -15
  1070. pyvpmr-240515/eigen/failtest/ref_6.cpp +0 -15
  1071. pyvpmr-240515/eigen/failtest/ref_7.cpp +0 -16
  1072. pyvpmr-240515/eigen/failtest/selfadjointview_nonconst_ctor_on_const_xpr.cpp +0 -13
  1073. pyvpmr-240515/eigen/failtest/selfadjointview_on_const_type_actually_const.cpp +0 -16
  1074. pyvpmr-240515/eigen/failtest/sparse_ref_1.cpp +0 -17
  1075. pyvpmr-240515/eigen/failtest/sparse_ref_2.cpp +0 -14
  1076. pyvpmr-240515/eigen/failtest/sparse_ref_3.cpp +0 -14
  1077. pyvpmr-240515/eigen/failtest/sparse_ref_4.cpp +0 -14
  1078. pyvpmr-240515/eigen/failtest/sparse_ref_5.cpp +0 -15
  1079. pyvpmr-240515/eigen/failtest/sparse_storage_mismatch.cpp +0 -15
  1080. pyvpmr-240515/eigen/failtest/swap_1.cpp +0 -13
  1081. pyvpmr-240515/eigen/failtest/swap_2.cpp +0 -13
  1082. pyvpmr-240515/eigen/failtest/ternary_1.cpp +0 -12
  1083. pyvpmr-240515/eigen/failtest/ternary_2.cpp +0 -12
  1084. pyvpmr-240515/eigen/failtest/transpose_nonconst_ctor_on_const_xpr.cpp +0 -13
  1085. pyvpmr-240515/eigen/failtest/transpose_on_const_type_actually_const.cpp +0 -16
  1086. pyvpmr-240515/eigen/failtest/triangularview_nonconst_ctor_on_const_xpr.cpp +0 -13
  1087. pyvpmr-240515/eigen/failtest/triangularview_on_const_type_actually_const.cpp +0 -16
  1088. pyvpmr-240515/eigen/lapack/CMakeLists.txt +0 -463
  1089. pyvpmr-240515/eigen/scripts/CMakeLists.txt +0 -6
  1090. pyvpmr-240515/eigen/scripts/buildtests.in +0 -22
  1091. pyvpmr-240515/eigen/scripts/cdashtesting.cmake.in +0 -49
  1092. pyvpmr-240515/eigen/scripts/check.in +0 -21
  1093. pyvpmr-240515/eigen/scripts/ci_cmake_msvc.ps1 +0 -65
  1094. pyvpmr-240515/eigen/scripts/ci_cmake_msvc_cuda.ps1 +0 -31
  1095. pyvpmr-240515/eigen/scripts/debug.in +0 -3
  1096. pyvpmr-240515/eigen/scripts/eigen_gen_credits.cpp +0 -210
  1097. pyvpmr-240515/eigen/scripts/eigen_gen_docs +0 -24
  1098. pyvpmr-240515/eigen/scripts/eigen_gen_split_test_help.cmake +0 -11
  1099. pyvpmr-240515/eigen/scripts/eigen_monitor_perf.sh +0 -25
  1100. pyvpmr-240515/eigen/scripts/release.in +0 -3
  1101. pyvpmr-240515/eigen/test/AnnoyingScalar.h +0 -204
  1102. pyvpmr-240515/eigen/test/CMakeLists.txt +0 -501
  1103. pyvpmr-240515/eigen/test/MovableScalar.h +0 -36
  1104. pyvpmr-240515/eigen/test/OffByOneScalar.h +0 -20
  1105. pyvpmr-240515/eigen/test/SafeScalar.h +0 -33
  1106. pyvpmr-240515/eigen/test/accelerate_support.cpp +0 -166
  1107. pyvpmr-240515/eigen/test/adjoint.cpp +0 -236
  1108. pyvpmr-240515/eigen/test/array_cwise.cpp +0 -1428
  1109. pyvpmr-240515/eigen/test/array_for_matrix.cpp +0 -349
  1110. pyvpmr-240515/eigen/test/array_of_string.cpp +0 -31
  1111. pyvpmr-240515/eigen/test/array_replicate.cpp +0 -73
  1112. pyvpmr-240515/eigen/test/array_reverse.cpp +0 -199
  1113. pyvpmr-240515/eigen/test/bandmatrix.cpp +0 -66
  1114. pyvpmr-240515/eigen/test/basicstuff.cpp +0 -352
  1115. pyvpmr-240515/eigen/test/bdcsvd.cpp +0 -177
  1116. pyvpmr-240515/eigen/test/bfloat16_float.cpp +0 -367
  1117. pyvpmr-240515/eigen/test/bicgstab.cpp +0 -33
  1118. pyvpmr-240515/eigen/test/blasutil.cpp +0 -178
  1119. pyvpmr-240515/eigen/test/block.cpp +0 -366
  1120. pyvpmr-240515/eigen/test/boostmultiprec.cpp +0 -212
  1121. pyvpmr-240515/eigen/test/bug1213.cpp +0 -7
  1122. pyvpmr-240515/eigen/test/bug1213.h +0 -7
  1123. pyvpmr-240515/eigen/test/bug1213_main.cpp +0 -13
  1124. pyvpmr-240515/eigen/test/cholesky.cpp +0 -500
  1125. pyvpmr-240515/eigen/test/cholmod_support.cpp +0 -81
  1126. pyvpmr-240515/eigen/test/clz.cpp +0 -74
  1127. pyvpmr-240515/eigen/test/commainitializer.cpp +0 -107
  1128. pyvpmr-240515/eigen/test/conjugate_gradient.cpp +0 -33
  1129. pyvpmr-240515/eigen/test/conservative_resize.cpp +0 -162
  1130. pyvpmr-240515/eigen/test/constexpr.cpp +0 -52
  1131. pyvpmr-240515/eigen/test/constructor.cpp +0 -97
  1132. pyvpmr-240515/eigen/test/corners.cpp +0 -125
  1133. pyvpmr-240515/eigen/test/ctorleak.cpp +0 -79
  1134. pyvpmr-240515/eigen/test/denseLM.cpp +0 -172
  1135. pyvpmr-240515/eigen/test/dense_storage.cpp +0 -182
  1136. pyvpmr-240515/eigen/test/determinant.cpp +0 -65
  1137. pyvpmr-240515/eigen/test/diagonal.cpp +0 -102
  1138. pyvpmr-240515/eigen/test/diagonal_matrix_variadic_ctor.cpp +0 -150
  1139. pyvpmr-240515/eigen/test/diagonalmatrices.cpp +0 -197
  1140. pyvpmr-240515/eigen/test/dontalign.cpp +0 -60
  1141. pyvpmr-240515/eigen/test/dynalloc.cpp +0 -168
  1142. pyvpmr-240515/eigen/test/eigen2support.cpp +0 -62
  1143. pyvpmr-240515/eigen/test/eigensolver_complex.cpp +0 -169
  1144. pyvpmr-240515/eigen/test/eigensolver_generalized_real.cpp +0 -139
  1145. pyvpmr-240515/eigen/test/eigensolver_generic.cpp +0 -233
  1146. pyvpmr-240515/eigen/test/eigensolver_selfadjoint.cpp +0 -269
  1147. pyvpmr-240515/eigen/test/evaluator_common.h +0 -0
  1148. pyvpmr-240515/eigen/test/evaluators.cpp +0 -541
  1149. pyvpmr-240515/eigen/test/exceptions.cpp +0 -52
  1150. pyvpmr-240515/eigen/test/fastmath.cpp +0 -209
  1151. pyvpmr-240515/eigen/test/first_aligned.cpp +0 -50
  1152. pyvpmr-240515/eigen/test/float_conversion.cpp +0 -50
  1153. pyvpmr-240515/eigen/test/geo_alignedbox.cpp +0 -521
  1154. pyvpmr-240515/eigen/test/geo_eulerangles.cpp +0 -203
  1155. pyvpmr-240515/eigen/test/geo_homogeneous.cpp +0 -123
  1156. pyvpmr-240515/eigen/test/geo_hyperplane.cpp +0 -184
  1157. pyvpmr-240515/eigen/test/geo_orthomethods.cpp +0 -159
  1158. pyvpmr-240515/eigen/test/geo_parametrizedline.cpp +0 -121
  1159. pyvpmr-240515/eigen/test/geo_quaternion.cpp +0 -320
  1160. pyvpmr-240515/eigen/test/geo_transformations.cpp +0 -728
  1161. pyvpmr-240515/eigen/test/gpu_basic.cu +0 -447
  1162. pyvpmr-240515/eigen/test/gpu_common.h +0 -161
  1163. pyvpmr-240515/eigen/test/gpu_example.cu +0 -120
  1164. pyvpmr-240515/eigen/test/gpu_test_helper.h +0 -448
  1165. pyvpmr-240515/eigen/test/half_float.cpp +0 -344
  1166. pyvpmr-240515/eigen/test/hessenberg.cpp +0 -61
  1167. pyvpmr-240515/eigen/test/householder.cpp +0 -235
  1168. pyvpmr-240515/eigen/test/incomplete_cholesky.cpp +0 -81
  1169. pyvpmr-240515/eigen/test/indexed_view.cpp +0 -859
  1170. pyvpmr-240515/eigen/test/initializer_list_construction.cpp +0 -365
  1171. pyvpmr-240515/eigen/test/inplace_decomposition.cpp +0 -100
  1172. pyvpmr-240515/eigen/test/integer_types.cpp +0 -162
  1173. pyvpmr-240515/eigen/test/inverse.cpp +0 -141
  1174. pyvpmr-240515/eigen/test/io.cpp +0 -63
  1175. pyvpmr-240515/eigen/test/is_same_dense.cpp +0 -39
  1176. pyvpmr-240515/eigen/test/jacobi.cpp +0 -81
  1177. pyvpmr-240515/eigen/test/jacobisvd.cpp +0 -215
  1178. pyvpmr-240515/eigen/test/klu_support.cpp +0 -30
  1179. pyvpmr-240515/eigen/test/linearstructure.cpp +0 -151
  1180. pyvpmr-240515/eigen/test/lscg.cpp +0 -36
  1181. pyvpmr-240515/eigen/test/lu.cpp +0 -235
  1182. pyvpmr-240515/eigen/test/main.h +0 -891
  1183. pyvpmr-240515/eigen/test/mapped_matrix.cpp +0 -185
  1184. pyvpmr-240515/eigen/test/mapstaticmethods.cpp +0 -159
  1185. pyvpmr-240515/eigen/test/mapstride.cpp +0 -267
  1186. pyvpmr-240515/eigen/test/matrix_cwise.cpp +0 -302
  1187. pyvpmr-240515/eigen/test/maxsizevector.cpp +0 -72
  1188. pyvpmr-240515/eigen/test/meta.cpp +0 -533
  1189. pyvpmr-240515/eigen/test/metis_support.cpp +0 -22
  1190. pyvpmr-240515/eigen/test/miscmatrices.cpp +0 -47
  1191. pyvpmr-240515/eigen/test/mixingtypes.cpp +0 -306
  1192. pyvpmr-240515/eigen/test/nestbyvalue.cpp +0 -37
  1193. pyvpmr-240515/eigen/test/nesting_ops.cpp +0 -101
  1194. pyvpmr-240515/eigen/test/nomalloc.cpp +0 -231
  1195. pyvpmr-240515/eigen/test/nullary.cpp +0 -325
  1196. pyvpmr-240515/eigen/test/num_dimensions.cpp +0 -82
  1197. pyvpmr-240515/eigen/test/numext.cpp +0 -358
  1198. pyvpmr-240515/eigen/test/packet_ostream.h +0 -23
  1199. pyvpmr-240515/eigen/test/packetmath.cpp +0 -1732
  1200. pyvpmr-240515/eigen/test/packetmath_test_shared.h +0 -287
  1201. pyvpmr-240515/eigen/test/pardiso_support.cpp +0 -28
  1202. pyvpmr-240515/eigen/test/pastix_support.cpp +0 -52
  1203. pyvpmr-240515/eigen/test/permutationmatrices.cpp +0 -185
  1204. pyvpmr-240515/eigen/test/prec_inverse_4x4.cpp +0 -76
  1205. pyvpmr-240515/eigen/test/product.h +0 -303
  1206. pyvpmr-240515/eigen/test/product_extra.cpp +0 -372
  1207. pyvpmr-240515/eigen/test/product_large.cpp +0 -150
  1208. pyvpmr-240515/eigen/test/product_mmtr.cpp +0 -111
  1209. pyvpmr-240515/eigen/test/product_notemporary.cpp +0 -219
  1210. pyvpmr-240515/eigen/test/product_selfadjoint.cpp +0 -85
  1211. pyvpmr-240515/eigen/test/product_small.cpp +0 -341
  1212. pyvpmr-240515/eigen/test/product_symm.cpp +0 -129
  1213. pyvpmr-240515/eigen/test/product_syrk.cpp +0 -164
  1214. pyvpmr-240515/eigen/test/product_threaded.cpp +0 -28
  1215. pyvpmr-240515/eigen/test/product_trmm.cpp +0 -144
  1216. pyvpmr-240515/eigen/test/product_trmv.cpp +0 -92
  1217. pyvpmr-240515/eigen/test/product_trsolve.cpp +0 -137
  1218. pyvpmr-240515/eigen/test/qr.cpp +0 -137
  1219. pyvpmr-240515/eigen/test/qr_colpivoting.cpp +0 -376
  1220. pyvpmr-240515/eigen/test/qr_fullpivoting.cpp +0 -162
  1221. pyvpmr-240515/eigen/test/qtvector.cpp +0 -142
  1222. pyvpmr-240515/eigen/test/rand.cpp +0 -300
  1223. pyvpmr-240515/eigen/test/random_matrix.cpp +0 -126
  1224. pyvpmr-240515/eigen/test/random_matrix_helper.h +0 -242
  1225. pyvpmr-240515/eigen/test/random_without_cast_overflow.h +0 -191
  1226. pyvpmr-240515/eigen/test/real_qz.cpp +0 -94
  1227. pyvpmr-240515/eigen/test/redux.cpp +0 -186
  1228. pyvpmr-240515/eigen/test/ref.cpp +0 -409
  1229. pyvpmr-240515/eigen/test/reshape.cpp +0 -225
  1230. pyvpmr-240515/eigen/test/resize.cpp +0 -39
  1231. pyvpmr-240515/eigen/test/rvalue_types.cpp +0 -139
  1232. pyvpmr-240515/eigen/test/schur_complex.cpp +0 -90
  1233. pyvpmr-240515/eigen/test/schur_real.cpp +0 -117
  1234. pyvpmr-240515/eigen/test/selfadjoint.cpp +0 -66
  1235. pyvpmr-240515/eigen/test/serializer.cpp +0 -227
  1236. pyvpmr-240515/eigen/test/simplicial_cholesky.cpp +0 -65
  1237. pyvpmr-240515/eigen/test/sizeof.cpp +0 -47
  1238. pyvpmr-240515/eigen/test/sizeoverflow.cpp +0 -63
  1239. pyvpmr-240515/eigen/test/skew_symmetric_matrix3.cpp +0 -213
  1240. pyvpmr-240515/eigen/test/smallvectors.cpp +0 -46
  1241. pyvpmr-240515/eigen/test/solverbase.h +0 -39
  1242. pyvpmr-240515/eigen/test/sparse.h +0 -124
  1243. pyvpmr-240515/eigen/test/sparseLM.cpp +0 -152
  1244. pyvpmr-240515/eigen/test/sparse_basic.cpp +0 -1049
  1245. pyvpmr-240515/eigen/test/sparse_block.cpp +0 -314
  1246. pyvpmr-240515/eigen/test/sparse_permutations.cpp +0 -245
  1247. pyvpmr-240515/eigen/test/sparse_product.cpp +0 -552
  1248. pyvpmr-240515/eigen/test/sparse_ref.cpp +0 -147
  1249. pyvpmr-240515/eigen/test/sparse_solver.h +0 -769
  1250. pyvpmr-240515/eigen/test/sparse_solvers.cpp +0 -120
  1251. pyvpmr-240515/eigen/test/sparse_vector.cpp +0 -235
  1252. pyvpmr-240515/eigen/test/sparselu.cpp +0 -43
  1253. pyvpmr-240515/eigen/test/sparseqr.cpp +0 -140
  1254. pyvpmr-240515/eigen/test/special_numbers.cpp +0 -54
  1255. pyvpmr-240515/eigen/test/split_test_helper.h +0 -5993
  1256. pyvpmr-240515/eigen/test/spqr_support.cpp +0 -59
  1257. pyvpmr-240515/eigen/test/stable_norm.cpp +0 -259
  1258. pyvpmr-240515/eigen/test/stddeque.cpp +0 -123
  1259. pyvpmr-240515/eigen/test/stddeque_overload.cpp +0 -145
  1260. pyvpmr-240515/eigen/test/stdlist.cpp +0 -123
  1261. pyvpmr-240515/eigen/test/stdlist_overload.cpp +0 -177
  1262. pyvpmr-240515/eigen/test/stdvector.cpp +0 -144
  1263. pyvpmr-240515/eigen/test/stdvector_overload.cpp +0 -148
  1264. pyvpmr-240515/eigen/test/stl_iterators.cpp +0 -594
  1265. pyvpmr-240515/eigen/test/superlu_support.cpp +0 -22
  1266. pyvpmr-240515/eigen/test/svd_common.h +0 -553
  1267. pyvpmr-240515/eigen/test/svd_fill.h +0 -109
  1268. pyvpmr-240515/eigen/test/swap.cpp +0 -98
  1269. pyvpmr-240515/eigen/test/sycl_basic.cpp +0 -382
  1270. pyvpmr-240515/eigen/test/symbolic_index.cpp +0 -73
  1271. pyvpmr-240515/eigen/test/threads_eventcount.cpp +0 -137
  1272. pyvpmr-240515/eigen/test/threads_non_blocking_thread_pool.cpp +0 -173
  1273. pyvpmr-240515/eigen/test/threads_runqueue.cpp +0 -230
  1274. pyvpmr-240515/eigen/test/triangular.cpp +0 -292
  1275. pyvpmr-240515/eigen/test/tuple_test.cpp +0 -119
  1276. pyvpmr-240515/eigen/test/type_alias.cpp +0 -41
  1277. pyvpmr-240515/eigen/test/umeyama.cpp +0 -170
  1278. pyvpmr-240515/eigen/test/umfpack_support.cpp +0 -32
  1279. pyvpmr-240515/eigen/test/unalignedcount.cpp +0 -69
  1280. pyvpmr-240515/eigen/test/unaryview.cpp +0 -109
  1281. pyvpmr-240515/eigen/test/upperbidiagonalization.cpp +0 -44
  1282. pyvpmr-240515/eigen/test/vectorization_logic.cpp +0 -484
  1283. pyvpmr-240515/eigen/test/vectorwiseop.cpp +0 -229
  1284. pyvpmr-240515/eigen/test/visitor.cpp +0 -310
  1285. pyvpmr-240515/eigen/test/zerosized.cpp +0 -105
  1286. pyvpmr-240515/eigen/unsupported/CMakeLists.txt +0 -11
  1287. pyvpmr-240515/eigen/unsupported/Eigen/CMakeLists.txt +0 -31
  1288. pyvpmr-240515/eigen/unsupported/Eigen/CXX11/CMakeLists.txt +0 -8
  1289. pyvpmr-240515/eigen/unsupported/Eigen/CXX11/src/Tensor/README.md +0 -1863
  1290. pyvpmr-240515/eigen/unsupported/Eigen/CXX11/src/Tensor/Tensor.h +0 -384
  1291. pyvpmr-240515/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorBase.h +0 -1229
  1292. pyvpmr-240515/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorChipping.h +0 -444
  1293. pyvpmr-240515/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorContractionSycl.h +0 -1654
  1294. pyvpmr-240515/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorContractionThreadPool.h +0 -1544
  1295. pyvpmr-240515/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceThreadPool.h +0 -376
  1296. pyvpmr-240515/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorDimensions.h +0 -330
  1297. pyvpmr-240515/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorForwardDeclarations.h +0 -213
  1298. pyvpmr-240515/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorIO.h +0 -412
  1299. pyvpmr-240515/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorIntDiv.h +0 -259
  1300. pyvpmr-240515/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorMap.h +0 -191
  1301. pyvpmr-240515/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorRandom.h +0 -309
  1302. pyvpmr-240515/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorReductionSycl.h +0 -588
  1303. pyvpmr-240515/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorVolumePatch.h +0 -610
  1304. pyvpmr-240515/eigen/unsupported/Eigen/FFT +0 -392
  1305. pyvpmr-240515/eigen/unsupported/Eigen/NNLS +0 -388
  1306. pyvpmr-240515/eigen/unsupported/Eigen/src/AutoDiff/AutoDiffScalar.h +0 -646
  1307. pyvpmr-240515/eigen/unsupported/Eigen/src/EulerAngles/CMakeLists.txt +0 -6
  1308. pyvpmr-240515/eigen/unsupported/Eigen/src/FFT/ei_kissfft_impl.h +0 -410
  1309. pyvpmr-240515/eigen/unsupported/Eigen/src/IterativeSolvers/BiCGSTABL.h +0 -339
  1310. pyvpmr-240515/eigen/unsupported/Eigen/src/IterativeSolvers/IDRSTABL.h +0 -476
  1311. pyvpmr-240515/eigen/unsupported/Eigen/src/LevenbergMarquardt/CopyrightMINPACK.txt +0 -52
  1312. pyvpmr-240515/eigen/unsupported/Eigen/src/SparseExtra/SparseInverse.h +0 -232
  1313. pyvpmr-240515/eigen/unsupported/README.txt +0 -50
  1314. pyvpmr-240515/eigen/unsupported/bench/bench_svd.cpp +0 -111
  1315. pyvpmr-240515/eigen/unsupported/doc/CMakeLists.txt +0 -4
  1316. pyvpmr-240515/eigen/unsupported/doc/Overview.dox +0 -31
  1317. pyvpmr-240515/eigen/unsupported/doc/SYCL.dox +0 -9
  1318. pyvpmr-240515/eigen/unsupported/doc/eigendoxy_layout.xml.in +0 -177
  1319. pyvpmr-240515/eigen/unsupported/doc/examples/BVH_Example.cpp +0 -62
  1320. pyvpmr-240515/eigen/unsupported/doc/examples/CMakeLists.txt +0 -24
  1321. pyvpmr-240515/eigen/unsupported/doc/examples/EulerAngles.cpp +0 -44
  1322. pyvpmr-240515/eigen/unsupported/doc/examples/FFT.cpp +0 -103
  1323. pyvpmr-240515/eigen/unsupported/doc/examples/MatrixExponential.cpp +0 -13
  1324. pyvpmr-240515/eigen/unsupported/doc/examples/MatrixFunction.cpp +0 -16
  1325. pyvpmr-240515/eigen/unsupported/doc/examples/MatrixLogarithm.cpp +0 -12
  1326. pyvpmr-240515/eigen/unsupported/doc/examples/MatrixPower.cpp +0 -16
  1327. pyvpmr-240515/eigen/unsupported/doc/examples/MatrixPower_optimal.cpp +0 -25
  1328. pyvpmr-240515/eigen/unsupported/doc/examples/MatrixSine.cpp +0 -19
  1329. pyvpmr-240515/eigen/unsupported/doc/examples/MatrixSinh.cpp +0 -19
  1330. pyvpmr-240515/eigen/unsupported/doc/examples/MatrixSquareRoot.cpp +0 -14
  1331. pyvpmr-240515/eigen/unsupported/doc/examples/PolynomialSolver1.cpp +0 -52
  1332. pyvpmr-240515/eigen/unsupported/doc/examples/PolynomialUtils1.cpp +0 -22
  1333. pyvpmr-240515/eigen/unsupported/doc/examples/SYCL/CMakeLists.txt +0 -31
  1334. pyvpmr-240515/eigen/unsupported/doc/examples/SYCL/CwiseMul.cpp +0 -63
  1335. pyvpmr-240515/eigen/unsupported/doc/snippets/CMakeLists.txt +0 -26
  1336. pyvpmr-240515/eigen/unsupported/test/BVH.cpp +0 -247
  1337. pyvpmr-240515/eigen/unsupported/test/CMakeLists.txt +0 -338
  1338. pyvpmr-240515/eigen/unsupported/test/EulerAngles.cpp +0 -282
  1339. pyvpmr-240515/eigen/unsupported/test/FFT.cpp +0 -2
  1340. pyvpmr-240515/eigen/unsupported/test/FFTW.cpp +0 -2
  1341. pyvpmr-240515/eigen/unsupported/test/NNLS.cpp +0 -471
  1342. pyvpmr-240515/eigen/unsupported/test/NonLinearOptimization.cpp +0 -1879
  1343. pyvpmr-240515/eigen/unsupported/test/NumericalDiff.cpp +0 -102
  1344. pyvpmr-240515/eigen/unsupported/test/alignedvector3.cpp +0 -86
  1345. pyvpmr-240515/eigen/unsupported/test/autodiff.cpp +0 -348
  1346. pyvpmr-240515/eigen/unsupported/test/autodiff_scalar.cpp +0 -97
  1347. pyvpmr-240515/eigen/unsupported/test/bessel_functions.cpp +0 -275
  1348. pyvpmr-240515/eigen/unsupported/test/bicgstabl.cpp +0 -30
  1349. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_argmax.cpp +0 -289
  1350. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_argmax_gpu.cu +0 -272
  1351. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_argmax_sycl.cpp +0 -258
  1352. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_assign.cpp +0 -359
  1353. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_block_access.cpp +0 -523
  1354. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_block_eval.cpp +0 -797
  1355. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_block_io.cpp +0 -432
  1356. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_broadcast_sycl.cpp +0 -140
  1357. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_broadcasting.cpp +0 -312
  1358. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_builtins_sycl.cpp +0 -509
  1359. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_cast_float16_gpu.cu +0 -73
  1360. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_casts.cpp +0 -87
  1361. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_chipping.cpp +0 -419
  1362. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_chipping_sycl.cpp +0 -612
  1363. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_comparisons.cpp +0 -139
  1364. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_complex_cwise_ops_gpu.cu +0 -90
  1365. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_complex_gpu.cu +0 -176
  1366. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_concatenation.cpp +0 -128
  1367. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_concatenation_sycl.cpp +0 -191
  1368. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_const.cpp +0 -56
  1369. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_contract_gpu.cu +0 -212
  1370. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_contract_sycl.cpp +0 -846
  1371. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_contraction.cpp +0 -567
  1372. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_convolution.cpp +0 -145
  1373. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_convolution_sycl.cpp +0 -458
  1374. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_custom_index.cpp +0 -83
  1375. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_custom_op.cpp +0 -102
  1376. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_custom_op_sycl.cpp +0 -170
  1377. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_device.cu +0 -438
  1378. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_device_sycl.cpp +0 -90
  1379. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_dimension.cpp +0 -82
  1380. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_empty.cpp +0 -35
  1381. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_executor.cpp +0 -704
  1382. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_expr.cpp +0 -474
  1383. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_fft.cpp +0 -296
  1384. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_fixed_size.cpp +0 -263
  1385. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_forced_eval.cpp +0 -75
  1386. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_forced_eval_sycl.cpp +0 -78
  1387. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_generator.cpp +0 -82
  1388. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_generator_sycl.cpp +0 -140
  1389. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_gpu.cu +0 -1563
  1390. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_ifft.cpp +0 -157
  1391. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_image_op_sycl.cpp +0 -100
  1392. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_image_patch.cpp +0 -811
  1393. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_image_patch_sycl.cpp +0 -1155
  1394. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_index_list.cpp +0 -424
  1395. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_inflation.cpp +0 -75
  1396. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_inflation_sycl.cpp +0 -130
  1397. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_intdiv.cpp +0 -135
  1398. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_io.cpp +0 -152
  1399. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_layout_swap.cpp +0 -56
  1400. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_layout_swap_sycl.cpp +0 -120
  1401. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_lvalue.cpp +0 -36
  1402. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_map.cpp +0 -322
  1403. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_math.cpp +0 -42
  1404. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_math_sycl.cpp +0 -102
  1405. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_mixed_indices.cpp +0 -53
  1406. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_morphing.cpp +0 -551
  1407. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_morphing_sycl.cpp +0 -371
  1408. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_move.cpp +0 -68
  1409. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_notification.cpp +0 -67
  1410. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_of_bfloat16_gpu.cu +0 -461
  1411. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_of_complex.cpp +0 -108
  1412. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_of_const_values.cpp +0 -98
  1413. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_of_float16_gpu.cu +0 -462
  1414. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_of_float16_sycl.cpp +0 -392
  1415. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_of_strings.cpp +0 -141
  1416. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_padding.cpp +0 -90
  1417. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_padding_sycl.cpp +0 -148
  1418. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_patch.cpp +0 -170
  1419. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_patch_sycl.cpp +0 -249
  1420. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_random.cpp +0 -80
  1421. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_random_gpu.cu +0 -80
  1422. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_random_sycl.cpp +0 -84
  1423. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_reduction.cpp +0 -520
  1424. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_reduction_gpu.cu +0 -151
  1425. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_reduction_sycl.cpp +0 -857
  1426. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_ref.cpp +0 -231
  1427. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_reverse.cpp +0 -179
  1428. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_reverse_sycl.cpp +0 -232
  1429. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_roundings.cpp +0 -57
  1430. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_scan.cpp +0 -108
  1431. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_scan_gpu.cu +0 -74
  1432. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_scan_sycl.cpp +0 -112
  1433. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_shuffling.cpp +0 -270
  1434. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_shuffling_sycl.cpp +0 -114
  1435. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_simple.cpp +0 -332
  1436. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_striding.cpp +0 -114
  1437. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_striding_sycl.cpp +0 -193
  1438. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_sugar.cpp +0 -78
  1439. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_sycl.cpp +0 -348
  1440. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_symmetry.cpp +0 -799
  1441. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_thread_local.cpp +0 -144
  1442. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_thread_pool.cpp +0 -690
  1443. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_trace.cpp +0 -168
  1444. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_uint128.cpp +0 -157
  1445. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_volume_patch.cpp +0 -107
  1446. pyvpmr-240515/eigen/unsupported/test/cxx11_tensor_volume_patch_sycl.cpp +0 -229
  1447. pyvpmr-240515/eigen/unsupported/test/dgmres.cpp +0 -30
  1448. pyvpmr-240515/eigen/unsupported/test/fft_test_shared.h +0 -277
  1449. pyvpmr-240515/eigen/unsupported/test/forward_adolc.cpp +0 -127
  1450. pyvpmr-240515/eigen/unsupported/test/gmres.cpp +0 -30
  1451. pyvpmr-240515/eigen/unsupported/test/idrs.cpp +0 -26
  1452. pyvpmr-240515/eigen/unsupported/test/idrstabl.cpp +0 -28
  1453. pyvpmr-240515/eigen/unsupported/test/kronecker_product.cpp +0 -242
  1454. pyvpmr-240515/eigen/unsupported/test/levenberg_marquardt.cpp +0 -1555
  1455. pyvpmr-240515/eigen/unsupported/test/matrix_exponential.cpp +0 -128
  1456. pyvpmr-240515/eigen/unsupported/test/matrix_function.cpp +0 -210
  1457. pyvpmr-240515/eigen/unsupported/test/matrix_functions.h +0 -56
  1458. pyvpmr-240515/eigen/unsupported/test/matrix_power.cpp +0 -197
  1459. pyvpmr-240515/eigen/unsupported/test/matrix_square_root.cpp +0 -29
  1460. pyvpmr-240515/eigen/unsupported/test/minres.cpp +0 -41
  1461. pyvpmr-240515/eigen/unsupported/test/mklfft.cpp +0 -2
  1462. pyvpmr-240515/eigen/unsupported/test/mpreal_support.cpp +0 -69
  1463. pyvpmr-240515/eigen/unsupported/test/openglsupport.cpp +0 -594
  1464. pyvpmr-240515/eigen/unsupported/test/pocketfft.cpp +0 -2
  1465. pyvpmr-240515/eigen/unsupported/test/polynomialsolver.cpp +0 -203
  1466. pyvpmr-240515/eigen/unsupported/test/polynomialutils.cpp +0 -102
  1467. pyvpmr-240515/eigen/unsupported/test/sparse_extra.cpp +0 -254
  1468. pyvpmr-240515/eigen/unsupported/test/special_functions.cpp +0 -426
  1469. pyvpmr-240515/eigen/unsupported/test/special_packetmath.cpp +0 -144
  1470. pyvpmr-240515/eigen/unsupported/test/splines.cpp +0 -205
  1471. pyvpmr-240515/exprtk/.circleci/config.yml +0 -37
  1472. pyvpmr-240515/exprtk/.git +0 -1
  1473. pyvpmr-240515/exprtk/Makefile +0 -54
  1474. pyvpmr-240515/exprtk/exprtk_functional_ext_test.txt +0 -37872
  1475. pyvpmr-240515/exprtk/exprtk_functional_test.txt +0 -8310
  1476. pyvpmr-240515/exprtk/readme.txt +0 -5033
  1477. pyvpmr-240515/exprtk-custom-types/.git +0 -1
  1478. pyvpmr-240515/exprtk-custom-types/mpfr/Makefile +0 -48
  1479. pyvpmr-240515/exprtk-custom-types/real/Makefile +0 -48
  1480. pyvpmr-240515/mpreal/.git +0 -1
  1481. pyvpmr-240515/mpreal/changelog +0 -814
  1482. pyvpmr-240515/mpreal/copying.txt +0 -674
  1483. pyvpmr-240515/mpreal/example/example.cpp +0 -107
  1484. pyvpmr-240515/mpreal/example/makefile +0 -9
  1485. pyvpmr-240515/pybind11/.appveyor.yml +0 -35
  1486. pyvpmr-240515/pybind11/.clang-format +0 -38
  1487. pyvpmr-240515/pybind11/.clang-tidy +0 -77
  1488. pyvpmr-240515/pybind11/.cmake-format.yaml +0 -73
  1489. pyvpmr-240515/pybind11/.codespell-ignore-lines +0 -24
  1490. pyvpmr-240515/pybind11/.git +0 -1
  1491. pyvpmr-240515/pybind11/.gitattributes +0 -1
  1492. pyvpmr-240515/pybind11/.github/CODEOWNERS +0 -9
  1493. pyvpmr-240515/pybind11/.github/CONTRIBUTING.md +0 -388
  1494. pyvpmr-240515/pybind11/.github/ISSUE_TEMPLATE/bug-report.yml +0 -61
  1495. pyvpmr-240515/pybind11/.github/ISSUE_TEMPLATE/config.yml +0 -8
  1496. pyvpmr-240515/pybind11/.github/dependabot.yml +0 -15
  1497. pyvpmr-240515/pybind11/.github/labeler.yml +0 -8
  1498. pyvpmr-240515/pybind11/.github/labeler_merged.yml +0 -3
  1499. pyvpmr-240515/pybind11/.github/matchers/pylint.json +0 -32
  1500. pyvpmr-240515/pybind11/.github/pull_request_template.md +0 -19
  1501. pyvpmr-240515/pybind11/.github/workflows/ci.yml +0 -1202
  1502. pyvpmr-240515/pybind11/.github/workflows/configure.yml +0 -92
  1503. pyvpmr-240515/pybind11/.github/workflows/format.yml +0 -60
  1504. pyvpmr-240515/pybind11/.github/workflows/labeler.yml +0 -25
  1505. pyvpmr-240515/pybind11/.github/workflows/pip.yml +0 -114
  1506. pyvpmr-240515/pybind11/.github/workflows/upstream.yml +0 -116
  1507. pyvpmr-240515/pybind11/.gitignore +0 -46
  1508. pyvpmr-240515/pybind11/.pre-commit-config.yaml +0 -155
  1509. pyvpmr-240515/pybind11/.readthedocs.yml +0 -20
  1510. pyvpmr-240515/pybind11/CMakeLists.txt +0 -373
  1511. pyvpmr-240515/pybind11/LICENSE +0 -29
  1512. pyvpmr-240515/pybind11/MANIFEST.in +0 -6
  1513. pyvpmr-240515/pybind11/README.rst +0 -181
  1514. pyvpmr-240515/pybind11/docs/Doxyfile +0 -21
  1515. pyvpmr-240515/pybind11/docs/Makefile +0 -192
  1516. pyvpmr-240515/pybind11/docs/_static/css/custom.css +0 -3
  1517. pyvpmr-240515/pybind11/docs/advanced/cast/chrono.rst +0 -81
  1518. pyvpmr-240515/pybind11/docs/advanced/cast/custom.rst +0 -93
  1519. pyvpmr-240515/pybind11/docs/advanced/cast/eigen.rst +0 -310
  1520. pyvpmr-240515/pybind11/docs/advanced/cast/functional.rst +0 -109
  1521. pyvpmr-240515/pybind11/docs/advanced/cast/index.rst +0 -43
  1522. pyvpmr-240515/pybind11/docs/advanced/cast/overview.rst +0 -170
  1523. pyvpmr-240515/pybind11/docs/advanced/cast/stl.rst +0 -249
  1524. pyvpmr-240515/pybind11/docs/advanced/cast/strings.rst +0 -296
  1525. pyvpmr-240515/pybind11/docs/advanced/classes.rst +0 -1335
  1526. pyvpmr-240515/pybind11/docs/advanced/embedding.rst +0 -262
  1527. pyvpmr-240515/pybind11/docs/advanced/exceptions.rst +0 -401
  1528. pyvpmr-240515/pybind11/docs/advanced/functions.rst +0 -614
  1529. pyvpmr-240515/pybind11/docs/advanced/misc.rst +0 -429
  1530. pyvpmr-240515/pybind11/docs/advanced/pycpp/index.rst +0 -13
  1531. pyvpmr-240515/pybind11/docs/advanced/pycpp/numpy.rst +0 -455
  1532. pyvpmr-240515/pybind11/docs/advanced/pycpp/object.rst +0 -286
  1533. pyvpmr-240515/pybind11/docs/advanced/pycpp/utilities.rst +0 -155
  1534. pyvpmr-240515/pybind11/docs/advanced/smart_ptrs.rst +0 -174
  1535. pyvpmr-240515/pybind11/docs/basics.rst +0 -307
  1536. pyvpmr-240515/pybind11/docs/benchmark.py +0 -87
  1537. pyvpmr-240515/pybind11/docs/benchmark.rst +0 -95
  1538. pyvpmr-240515/pybind11/docs/changelog.rst +0 -3006
  1539. pyvpmr-240515/pybind11/docs/classes.rst +0 -555
  1540. pyvpmr-240515/pybind11/docs/cmake/index.rst +0 -8
  1541. pyvpmr-240515/pybind11/docs/compiling.rst +0 -649
  1542. pyvpmr-240515/pybind11/docs/conf.py +0 -368
  1543. pyvpmr-240515/pybind11/docs/faq.rst +0 -308
  1544. pyvpmr-240515/pybind11/docs/index.rst +0 -48
  1545. pyvpmr-240515/pybind11/docs/installing.rst +0 -105
  1546. pyvpmr-240515/pybind11/docs/limitations.rst +0 -72
  1547. pyvpmr-240515/pybind11/docs/pybind11-logo.png +0 -0
  1548. pyvpmr-240515/pybind11/docs/pybind11_vs_boost_python1.png +0 -0
  1549. pyvpmr-240515/pybind11/docs/pybind11_vs_boost_python1.svg +0 -427
  1550. pyvpmr-240515/pybind11/docs/pybind11_vs_boost_python2.png +0 -0
  1551. pyvpmr-240515/pybind11/docs/pybind11_vs_boost_python2.svg +0 -427
  1552. pyvpmr-240515/pybind11/docs/reference.rst +0 -130
  1553. pyvpmr-240515/pybind11/docs/release.rst +0 -143
  1554. pyvpmr-240515/pybind11/docs/requirements.txt +0 -6
  1555. pyvpmr-240515/pybind11/docs/upgrade.rst +0 -594
  1556. pyvpmr-240515/pybind11/include/pybind11/cast.h +0 -1837
  1557. pyvpmr-240515/pybind11/include/pybind11/detail/class.h +0 -748
  1558. pyvpmr-240515/pybind11/include/pybind11/detail/common.h +0 -1266
  1559. pyvpmr-240515/pybind11/include/pybind11/detail/init.h +0 -434
  1560. pyvpmr-240515/pybind11/include/pybind11/detail/internals.h +0 -667
  1561. pyvpmr-240515/pybind11/include/pybind11/detail/type_caster_base.h +0 -1218
  1562. pyvpmr-240515/pybind11/include/pybind11/eigen/matrix.h +0 -714
  1563. pyvpmr-240515/pybind11/include/pybind11/eigen/tensor.h +0 -517
  1564. pyvpmr-240515/pybind11/include/pybind11/embed.h +0 -316
  1565. pyvpmr-240515/pybind11/include/pybind11/eval.h +0 -156
  1566. pyvpmr-240515/pybind11/include/pybind11/functional.h +0 -138
  1567. pyvpmr-240515/pybind11/include/pybind11/gil.h +0 -247
  1568. pyvpmr-240515/pybind11/include/pybind11/gil_safe_call_once.h +0 -91
  1569. pyvpmr-240515/pybind11/include/pybind11/numpy.h +0 -2133
  1570. pyvpmr-240515/pybind11/include/pybind11/pybind11.h +0 -2963
  1571. pyvpmr-240515/pybind11/include/pybind11/pytypes.h +0 -2574
  1572. pyvpmr-240515/pybind11/include/pybind11/stl/filesystem.h +0 -116
  1573. pyvpmr-240515/pybind11/include/pybind11/stl.h +0 -448
  1574. pyvpmr-240515/pybind11/include/pybind11/stl_bind.h +0 -822
  1575. pyvpmr-240515/pybind11/include/pybind11/typing.h +0 -125
  1576. pyvpmr-240515/pybind11/noxfile.py +0 -107
  1577. pyvpmr-240515/pybind11/pybind11/__init__.py +0 -17
  1578. pyvpmr-240515/pybind11/pybind11/__main__.py +0 -62
  1579. pyvpmr-240515/pybind11/pybind11/_version.py +0 -12
  1580. pyvpmr-240515/pybind11/pybind11/commands.py +0 -37
  1581. pyvpmr-240515/pybind11/pybind11/setup_helpers.py +0 -500
  1582. pyvpmr-240515/pybind11/pyproject.toml +0 -95
  1583. pyvpmr-240515/pybind11/setup.cfg +0 -43
  1584. pyvpmr-240515/pybind11/setup.py +0 -150
  1585. pyvpmr-240515/pybind11/tests/CMakeLists.txt +0 -589
  1586. pyvpmr-240515/pybind11/tests/conftest.py +0 -222
  1587. pyvpmr-240515/pybind11/tests/constructor_stats.h +0 -322
  1588. pyvpmr-240515/pybind11/tests/cross_module_gil_utils.cpp +0 -108
  1589. pyvpmr-240515/pybind11/tests/cross_module_interleaved_error_already_set.cpp +0 -51
  1590. pyvpmr-240515/pybind11/tests/eigen_tensor_avoid_stl_array.cpp +0 -14
  1591. pyvpmr-240515/pybind11/tests/env.py +0 -27
  1592. pyvpmr-240515/pybind11/tests/extra_python_package/pytest.ini +0 -0
  1593. pyvpmr-240515/pybind11/tests/extra_python_package/test_files.py +0 -293
  1594. pyvpmr-240515/pybind11/tests/extra_setuptools/pytest.ini +0 -0
  1595. pyvpmr-240515/pybind11/tests/extra_setuptools/test_setuphelper.py +0 -151
  1596. pyvpmr-240515/pybind11/tests/local_bindings.h +0 -92
  1597. pyvpmr-240515/pybind11/tests/object.h +0 -205
  1598. pyvpmr-240515/pybind11/tests/pybind11_cross_module_tests.cpp +0 -149
  1599. pyvpmr-240515/pybind11/tests/pybind11_tests.cpp +0 -129
  1600. pyvpmr-240515/pybind11/tests/pybind11_tests.h +0 -85
  1601. pyvpmr-240515/pybind11/tests/pytest.ini +0 -22
  1602. pyvpmr-240515/pybind11/tests/requirements.txt +0 -15
  1603. pyvpmr-240515/pybind11/tests/test_async.cpp +0 -25
  1604. pyvpmr-240515/pybind11/tests/test_async.py +0 -24
  1605. pyvpmr-240515/pybind11/tests/test_buffers.cpp +0 -259
  1606. pyvpmr-240515/pybind11/tests/test_buffers.py +0 -228
  1607. pyvpmr-240515/pybind11/tests/test_builtin_casters.cpp +0 -387
  1608. pyvpmr-240515/pybind11/tests/test_builtin_casters.py +0 -528
  1609. pyvpmr-240515/pybind11/tests/test_call_policies.cpp +0 -113
  1610. pyvpmr-240515/pybind11/tests/test_call_policies.py +0 -247
  1611. pyvpmr-240515/pybind11/tests/test_callbacks.cpp +0 -280
  1612. pyvpmr-240515/pybind11/tests/test_callbacks.py +0 -225
  1613. pyvpmr-240515/pybind11/tests/test_chrono.cpp +0 -81
  1614. pyvpmr-240515/pybind11/tests/test_chrono.py +0 -205
  1615. pyvpmr-240515/pybind11/tests/test_class.cpp +0 -656
  1616. pyvpmr-240515/pybind11/tests/test_class.py +0 -499
  1617. pyvpmr-240515/pybind11/tests/test_cmake_build/CMakeLists.txt +0 -80
  1618. pyvpmr-240515/pybind11/tests/test_cmake_build/embed.cpp +0 -23
  1619. pyvpmr-240515/pybind11/tests/test_cmake_build/installed_embed/CMakeLists.txt +0 -28
  1620. pyvpmr-240515/pybind11/tests/test_cmake_build/installed_function/CMakeLists.txt +0 -39
  1621. pyvpmr-240515/pybind11/tests/test_cmake_build/installed_target/CMakeLists.txt +0 -46
  1622. pyvpmr-240515/pybind11/tests/test_cmake_build/main.cpp +0 -6
  1623. pyvpmr-240515/pybind11/tests/test_cmake_build/subdirectory_embed/CMakeLists.txt +0 -47
  1624. pyvpmr-240515/pybind11/tests/test_cmake_build/subdirectory_function/CMakeLists.txt +0 -41
  1625. pyvpmr-240515/pybind11/tests/test_cmake_build/subdirectory_target/CMakeLists.txt +0 -47
  1626. pyvpmr-240515/pybind11/tests/test_cmake_build/test.py +0 -8
  1627. pyvpmr-240515/pybind11/tests/test_const_name.cpp +0 -55
  1628. pyvpmr-240515/pybind11/tests/test_const_name.py +0 -29
  1629. pyvpmr-240515/pybind11/tests/test_constants_and_functions.cpp +0 -158
  1630. pyvpmr-240515/pybind11/tests/test_constants_and_functions.py +0 -56
  1631. pyvpmr-240515/pybind11/tests/test_copy_move.cpp +0 -532
  1632. pyvpmr-240515/pybind11/tests/test_copy_move.py +0 -132
  1633. pyvpmr-240515/pybind11/tests/test_custom_type_casters.cpp +0 -217
  1634. pyvpmr-240515/pybind11/tests/test_custom_type_casters.py +0 -122
  1635. pyvpmr-240515/pybind11/tests/test_custom_type_setup.cpp +0 -41
  1636. pyvpmr-240515/pybind11/tests/test_custom_type_setup.py +0 -48
  1637. pyvpmr-240515/pybind11/tests/test_docstring_options.cpp +0 -129
  1638. pyvpmr-240515/pybind11/tests/test_docstring_options.py +0 -64
  1639. pyvpmr-240515/pybind11/tests/test_eigen_matrix.cpp +0 -443
  1640. pyvpmr-240515/pybind11/tests/test_eigen_matrix.py +0 -814
  1641. pyvpmr-240515/pybind11/tests/test_eigen_tensor.cpp +0 -18
  1642. pyvpmr-240515/pybind11/tests/test_eigen_tensor.inl +0 -332
  1643. pyvpmr-240515/pybind11/tests/test_eigen_tensor.py +0 -288
  1644. pyvpmr-240515/pybind11/tests/test_embed/CMakeLists.txt +0 -47
  1645. pyvpmr-240515/pybind11/tests/test_embed/catch.cpp +0 -43
  1646. pyvpmr-240515/pybind11/tests/test_embed/external_module.cpp +0 -20
  1647. pyvpmr-240515/pybind11/tests/test_embed/test_interpreter.cpp +0 -488
  1648. pyvpmr-240515/pybind11/tests/test_embed/test_interpreter.py +0 -14
  1649. pyvpmr-240515/pybind11/tests/test_embed/test_trampoline.py +0 -16
  1650. pyvpmr-240515/pybind11/tests/test_enum.cpp +0 -133
  1651. pyvpmr-240515/pybind11/tests/test_enum.py +0 -269
  1652. pyvpmr-240515/pybind11/tests/test_eval.cpp +0 -118
  1653. pyvpmr-240515/pybind11/tests/test_eval.py +0 -50
  1654. pyvpmr-240515/pybind11/tests/test_eval_call.py +0 -4
  1655. pyvpmr-240515/pybind11/tests/test_exceptions.cpp +0 -388
  1656. pyvpmr-240515/pybind11/tests/test_exceptions.h +0 -13
  1657. pyvpmr-240515/pybind11/tests/test_exceptions.py +0 -432
  1658. pyvpmr-240515/pybind11/tests/test_factory_constructors.cpp +0 -430
  1659. pyvpmr-240515/pybind11/tests/test_factory_constructors.py +0 -516
  1660. pyvpmr-240515/pybind11/tests/test_gil_scoped.cpp +0 -144
  1661. pyvpmr-240515/pybind11/tests/test_gil_scoped.py +0 -242
  1662. pyvpmr-240515/pybind11/tests/test_iostream.cpp +0 -126
  1663. pyvpmr-240515/pybind11/tests/test_iostream.py +0 -291
  1664. pyvpmr-240515/pybind11/tests/test_kwargs_and_defaults.cpp +0 -322
  1665. pyvpmr-240515/pybind11/tests/test_kwargs_and_defaults.py +0 -425
  1666. pyvpmr-240515/pybind11/tests/test_local_bindings.cpp +0 -106
  1667. pyvpmr-240515/pybind11/tests/test_local_bindings.py +0 -257
  1668. pyvpmr-240515/pybind11/tests/test_methods_and_attributes.cpp +0 -492
  1669. pyvpmr-240515/pybind11/tests/test_methods_and_attributes.py +0 -537
  1670. pyvpmr-240515/pybind11/tests/test_modules.cpp +0 -125
  1671. pyvpmr-240515/pybind11/tests/test_modules.py +0 -116
  1672. pyvpmr-240515/pybind11/tests/test_multiple_inheritance.cpp +0 -341
  1673. pyvpmr-240515/pybind11/tests/test_multiple_inheritance.py +0 -493
  1674. pyvpmr-240515/pybind11/tests/test_numpy_array.cpp +0 -547
  1675. pyvpmr-240515/pybind11/tests/test_numpy_array.py +0 -674
  1676. pyvpmr-240515/pybind11/tests/test_numpy_dtypes.cpp +0 -639
  1677. pyvpmr-240515/pybind11/tests/test_numpy_dtypes.py +0 -446
  1678. pyvpmr-240515/pybind11/tests/test_numpy_vectorize.cpp +0 -107
  1679. pyvpmr-240515/pybind11/tests/test_numpy_vectorize.py +0 -266
  1680. pyvpmr-240515/pybind11/tests/test_opaque_types.cpp +0 -77
  1681. pyvpmr-240515/pybind11/tests/test_opaque_types.py +0 -58
  1682. pyvpmr-240515/pybind11/tests/test_operator_overloading.cpp +0 -281
  1683. pyvpmr-240515/pybind11/tests/test_operator_overloading.py +0 -151
  1684. pyvpmr-240515/pybind11/tests/test_pickling.cpp +0 -194
  1685. pyvpmr-240515/pybind11/tests/test_pickling.py +0 -93
  1686. pyvpmr-240515/pybind11/tests/test_python_multiple_inheritance.cpp +0 -45
  1687. pyvpmr-240515/pybind11/tests/test_python_multiple_inheritance.py +0 -35
  1688. pyvpmr-240515/pybind11/tests/test_pytypes.cpp +0 -846
  1689. pyvpmr-240515/pybind11/tests/test_pytypes.py +0 -954
  1690. pyvpmr-240515/pybind11/tests/test_sequences_and_iterators.cpp +0 -600
  1691. pyvpmr-240515/pybind11/tests/test_sequences_and_iterators.py +0 -265
  1692. pyvpmr-240515/pybind11/tests/test_smart_ptr.cpp +0 -473
  1693. pyvpmr-240515/pybind11/tests/test_smart_ptr.py +0 -315
  1694. pyvpmr-240515/pybind11/tests/test_stl.cpp +0 -549
  1695. pyvpmr-240515/pybind11/tests/test_stl.py +0 -381
  1696. pyvpmr-240515/pybind11/tests/test_stl_binders.cpp +0 -275
  1697. pyvpmr-240515/pybind11/tests/test_stl_binders.py +0 -393
  1698. pyvpmr-240515/pybind11/tests/test_tagbased_polymorphic.cpp +0 -147
  1699. pyvpmr-240515/pybind11/tests/test_tagbased_polymorphic.py +0 -28
  1700. pyvpmr-240515/pybind11/tests/test_thread.cpp +0 -66
  1701. pyvpmr-240515/pybind11/tests/test_thread.py +0 -42
  1702. pyvpmr-240515/pybind11/tests/test_type_caster_pyobject_ptr.cpp +0 -130
  1703. pyvpmr-240515/pybind11/tests/test_type_caster_pyobject_ptr.py +0 -104
  1704. pyvpmr-240515/pybind11/tests/test_union.cpp +0 -22
  1705. pyvpmr-240515/pybind11/tests/test_union.py +0 -8
  1706. pyvpmr-240515/pybind11/tests/test_unnamed_namespace_a.cpp +0 -38
  1707. pyvpmr-240515/pybind11/tests/test_unnamed_namespace_a.py +0 -34
  1708. pyvpmr-240515/pybind11/tests/test_unnamed_namespace_b.cpp +0 -13
  1709. pyvpmr-240515/pybind11/tests/test_unnamed_namespace_b.py +0 -5
  1710. pyvpmr-240515/pybind11/tests/test_vector_unique_ptr_member.cpp +0 -54
  1711. pyvpmr-240515/pybind11/tests/test_vector_unique_ptr_member.py +0 -14
  1712. pyvpmr-240515/pybind11/tests/test_virtual_functions.cpp +0 -592
  1713. pyvpmr-240515/pybind11/tests/test_virtual_functions.py +0 -458
  1714. pyvpmr-240515/pybind11/tests/valgrind-numpy-scipy.supp +0 -140
  1715. pyvpmr-240515/pybind11/tests/valgrind-python.supp +0 -117
  1716. pyvpmr-240515/pybind11/tools/FindCatch.cmake +0 -76
  1717. pyvpmr-240515/pybind11/tools/FindEigen3.cmake +0 -86
  1718. pyvpmr-240515/pybind11/tools/FindPythonLibsNew.cmake +0 -310
  1719. pyvpmr-240515/pybind11/tools/JoinPaths.cmake +0 -23
  1720. pyvpmr-240515/pybind11/tools/check-style.sh +0 -44
  1721. pyvpmr-240515/pybind11/tools/cmake_uninstall.cmake.in +0 -23
  1722. pyvpmr-240515/pybind11/tools/codespell_ignore_lines_from_errors.py +0 -39
  1723. pyvpmr-240515/pybind11/tools/libsize.py +0 -36
  1724. pyvpmr-240515/pybind11/tools/make_changelog.py +0 -90
  1725. pyvpmr-240515/pybind11/tools/pybind11.pc.in +0 -7
  1726. pyvpmr-240515/pybind11/tools/pybind11Common.cmake +0 -419
  1727. pyvpmr-240515/pybind11/tools/pybind11Config.cmake.in +0 -233
  1728. pyvpmr-240515/pybind11/tools/pybind11NewTools.cmake +0 -311
  1729. pyvpmr-240515/pybind11/tools/pybind11Tools.cmake +0 -239
  1730. pyvpmr-240515/pybind11/tools/pyproject.toml +0 -3
  1731. pyvpmr-240515/pybind11/tools/setup_global.py.in +0 -63
  1732. pyvpmr-240515/pybind11/tools/setup_main.py.in +0 -44
  1733. pyvpmr-240515/pyproject.toml +0 -53
  1734. pyvpmr-240515/pyvpmr.egg-info/PKG-INFO +0 -969
  1735. pyvpmr-240515/pyvpmr.egg-info/SOURCES.txt +0 -2218
  1736. pyvpmr-240515/pyvpmr.egg-info/dependency_links.txt +0 -1
  1737. pyvpmr-240515/pyvpmr.egg-info/requires.txt +0 -2
  1738. pyvpmr-240515/pyvpmr.egg-info/top_level.txt +0 -2
  1739. pyvpmr-240515/resource/Dockerfile +0 -55
  1740. pyvpmr-240515/resource/arbitrary.png +0 -0
  1741. pyvpmr-240515/resource/example.png +0 -0
  1742. pyvpmr-240515/resource/vpmr.ico +0 -0
  1743. pyvpmr-240515/resource/vpmr.rc +0 -1
  1744. pyvpmr-240515/resource/vpmr.svg +0 -904
  1745. pyvpmr-240515/setup.py +0 -27
  1746. pyvpmr-240515/src/Gauss.hpp +0 -133
  1747. pyvpmr-240515/src/VPMR.cpp +0 -476
  1748. pyvpmr-240515/test/__init__.py +0 -14
  1749. pyvpmr-240515/test/example.py +0 -28
  1750. pyvpmr-240515/test/test.py +0 -18
  1751. {pyvpmr-240515 → pyvpmr-240921}/LICENSE +0 -0
  1752. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/AccelerateSupport +0 -0
  1753. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/Cholesky +0 -0
  1754. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/CholmodSupport +0 -0
  1755. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/Dense +0 -0
  1756. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/Eigen +0 -0
  1757. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/Eigenvalues +0 -0
  1758. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/Householder +0 -0
  1759. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/IterativeLinearSolvers +0 -0
  1760. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/Jacobi +0 -0
  1761. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/KLUSupport +0 -0
  1762. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/LU +0 -0
  1763. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/MetisSupport +0 -0
  1764. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/PaStiXSupport +0 -0
  1765. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/PardisoSupport +0 -0
  1766. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/QR +0 -0
  1767. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/QtAlignedMalloc +0 -0
  1768. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/SPQRSupport +0 -0
  1769. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/SVD +0 -0
  1770. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/Sparse +0 -0
  1771. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/SparseCholesky +0 -0
  1772. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/SparseCore +0 -0
  1773. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/SparseLU +0 -0
  1774. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/SparseQR +0 -0
  1775. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/StdDeque +0 -0
  1776. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/StdList +0 -0
  1777. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/StdVector +0 -0
  1778. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/SuperLUSupport +0 -0
  1779. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/UmfPackSupport +0 -0
  1780. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/AccelerateSupport/AccelerateSupport.h +0 -0
  1781. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/AccelerateSupport/InternalHeaderCheck.h +0 -0
  1782. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Cholesky/InternalHeaderCheck.h +0 -0
  1783. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Cholesky/LDLT.h +0 -0
  1784. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Cholesky/LLT.h +0 -0
  1785. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Cholesky/LLT_LAPACKE.h +0 -0
  1786. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/CholmodSupport/InternalHeaderCheck.h +0 -0
  1787. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/ArithmeticSequence.h +0 -0
  1788. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/ArrayBase.h +0 -0
  1789. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/ArrayWrapper.h +0 -0
  1790. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/Assign.h +0 -0
  1791. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/AssignEvaluator.h +0 -0
  1792. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/Assign_MKL.h +0 -0
  1793. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/BandMatrix.h +0 -0
  1794. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/Block.h +0 -0
  1795. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/CommaInitializer.h +0 -0
  1796. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/ConditionEstimator.h +0 -0
  1797. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/CoreIterators.h +0 -0
  1798. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/CwiseBinaryOp.h +0 -0
  1799. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/CwiseNullaryOp.h +0 -0
  1800. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/CwiseTernaryOp.h +0 -0
  1801. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/CwiseUnaryOp.h +0 -0
  1802. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/CwiseUnaryView.h +0 -0
  1803. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/DenseCoeffsBase.h +0 -0
  1804. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/DenseStorage.h +0 -0
  1805. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/Diagonal.h +0 -0
  1806. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/DiagonalMatrix.h +0 -0
  1807. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/DiagonalProduct.h +0 -0
  1808. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/ForceAlignedAccess.h +0 -0
  1809. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/Fuzzy.h +0 -0
  1810. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/IO.h +0 -0
  1811. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/IndexedView.h +0 -0
  1812. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/InternalHeaderCheck.h +0 -0
  1813. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/Inverse.h +0 -0
  1814. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/Map.h +0 -0
  1815. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/MapBase.h +0 -0
  1816. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/MatrixBase.h +0 -0
  1817. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/NestByValue.h +0 -0
  1818. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/NoAlias.h +0 -0
  1819. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/PartialReduxEvaluator.h +0 -0
  1820. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/Random.h +0 -0
  1821. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/Redux.h +0 -0
  1822. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/Ref.h +0 -0
  1823. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/Reshaped.h +0 -0
  1824. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/ReturnByValue.h +0 -0
  1825. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/Reverse.h +0 -0
  1826. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/Select.h +0 -0
  1827. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/SelfAdjointView.h +0 -0
  1828. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/SelfCwiseBinaryOp.h +0 -0
  1829. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/SkewSymmetricMatrix3.h +0 -0
  1830. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/Solve.h +0 -0
  1831. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/SolveTriangular.h +0 -0
  1832. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/SolverBase.h +0 -0
  1833. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/Stride.h +0 -0
  1834. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/Swap.h +0 -0
  1835. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/Transpose.h +0 -0
  1836. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/TriangularMatrix.h +0 -0
  1837. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/VectorBlock.h +0 -0
  1838. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/VectorwiseOp.h +0 -0
  1839. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/arch/AVX/TypeCasting.h +0 -0
  1840. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/arch/AVX512/Complex.h +0 -0
  1841. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/arch/AVX512/GemmKernel.h +0 -0
  1842. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/arch/AVX512/MathFunctions.h +0 -0
  1843. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/arch/AltiVec/Complex.h +0 -0
  1844. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/arch/AltiVec/MathFunctions.h +0 -0
  1845. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/arch/AltiVec/MatrixProductCommon.h +0 -0
  1846. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/arch/AltiVec/MatrixProductMMA.h +0 -0
  1847. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/arch/AltiVec/MatrixProductMMAbfloat16.h +0 -0
  1848. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/arch/AltiVec/MatrixVectorProduct.h +0 -0
  1849. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/arch/AltiVec/TypeCasting.h +0 -0
  1850. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/arch/Default/ConjHelper.h +0 -0
  1851. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/arch/Default/Settings.h +0 -0
  1852. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/arch/GPU/Complex.h +0 -0
  1853. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/arch/GPU/MathFunctions.h +0 -0
  1854. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/arch/GPU/Tuple.h +0 -0
  1855. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/arch/GPU/TypeCasting.h +0 -0
  1856. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/arch/HIP/hcc/math_constants.h +0 -0
  1857. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/arch/MSA/Complex.h +0 -0
  1858. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/arch/MSA/MathFunctions.h +0 -0
  1859. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/arch/NEON/GeneralBlockPanelKernel.h +0 -0
  1860. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/arch/NEON/TypeCasting.h +0 -0
  1861. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/arch/NEON/UnaryFunctors.h +0 -0
  1862. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/arch/SSE/MathFunctions.h +0 -0
  1863. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/arch/SSE/TypeCasting.h +0 -0
  1864. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/arch/SVE/MathFunctions.h +0 -0
  1865. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/arch/SYCL/InteropHeaders.h +0 -0
  1866. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/arch/SYCL/MathFunctions.h +0 -0
  1867. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/arch/SYCL/PacketMath.h +0 -0
  1868. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/arch/SYCL/TypeCasting.h +0 -0
  1869. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/arch/ZVector/Complex.h +0 -0
  1870. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/arch/ZVector/MathFunctions.h +0 -0
  1871. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/functors/AssignmentFunctors.h +0 -0
  1872. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/functors/BinaryFunctors.h +0 -0
  1873. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/functors/NullaryFunctors.h +0 -0
  1874. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/functors/StlFunctors.h +0 -0
  1875. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/functors/TernaryFunctors.h +0 -0
  1876. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h +0 -0
  1877. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/products/GeneralMatrixMatrix_BLAS.h +0 -0
  1878. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/products/GeneralMatrixVector_BLAS.h +0 -0
  1879. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/products/SelfadjointMatrixMatrix.h +0 -0
  1880. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/products/SelfadjointMatrixMatrix_BLAS.h +0 -0
  1881. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/products/SelfadjointMatrixVector.h +0 -0
  1882. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/products/SelfadjointMatrixVector_BLAS.h +0 -0
  1883. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/products/SelfadjointProduct.h +0 -0
  1884. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/products/SelfadjointRank2Update.h +0 -0
  1885. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/products/TriangularMatrixMatrix.h +0 -0
  1886. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/products/TriangularMatrixMatrix_BLAS.h +0 -0
  1887. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/products/TriangularMatrixVector.h +0 -0
  1888. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/products/TriangularMatrixVector_BLAS.h +0 -0
  1889. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/products/TriangularSolverMatrix_BLAS.h +0 -0
  1890. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/products/TriangularSolverVector.h +0 -0
  1891. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/util/Assert.h +0 -0
  1892. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/util/BlasUtil.h +0 -0
  1893. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/util/DisableStupidWarnings.h +0 -0
  1894. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/util/EmulateArray.h +0 -0
  1895. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/util/IndexedViewHelper.h +0 -0
  1896. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/util/MKL_support.h +0 -0
  1897. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/util/MaxSizeVector.h +0 -0
  1898. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/util/MoreMeta.h +0 -0
  1899. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/util/ReenableStupidWarnings.h +0 -0
  1900. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/util/ReshapedHelper.h +0 -0
  1901. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/util/Serializer.h +0 -0
  1902. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Core/util/StaticAssert.h +0 -0
  1903. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Eigenvalues/ComplexEigenSolver.h +0 -0
  1904. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Eigenvalues/ComplexSchur.h +0 -0
  1905. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Eigenvalues/ComplexSchur_LAPACKE.h +0 -0
  1906. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Eigenvalues/EigenSolver.h +0 -0
  1907. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Eigenvalues/GeneralizedSelfAdjointEigenSolver.h +0 -0
  1908. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Eigenvalues/HessenbergDecomposition.h +0 -0
  1909. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Eigenvalues/InternalHeaderCheck.h +0 -0
  1910. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Eigenvalues/MatrixBaseEigenvalues.h +0 -0
  1911. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Eigenvalues/RealQZ.h +0 -0
  1912. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Eigenvalues/RealSchur.h +0 -0
  1913. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Eigenvalues/RealSchur_LAPACKE.h +0 -0
  1914. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h +0 -0
  1915. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Eigenvalues/SelfAdjointEigenSolver_LAPACKE.h +0 -0
  1916. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Eigenvalues/Tridiagonalization.h +0 -0
  1917. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Geometry/AlignedBox.h +0 -0
  1918. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Geometry/AngleAxis.h +0 -0
  1919. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Geometry/EulerAngles.h +0 -0
  1920. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Geometry/Homogeneous.h +0 -0
  1921. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Geometry/Hyperplane.h +0 -0
  1922. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Geometry/InternalHeaderCheck.h +0 -0
  1923. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Geometry/OrthoMethods.h +0 -0
  1924. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Geometry/ParametrizedLine.h +0 -0
  1925. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Geometry/Quaternion.h +0 -0
  1926. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Geometry/RotationBase.h +0 -0
  1927. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Geometry/Scaling.h +0 -0
  1928. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Geometry/Transform.h +0 -0
  1929. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Geometry/Translation.h +0 -0
  1930. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Geometry/Umeyama.h +0 -0
  1931. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Geometry/arch/Geometry_SIMD.h +0 -0
  1932. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Householder/Householder.h +0 -0
  1933. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Householder/HouseholderSequence.h +0 -0
  1934. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Householder/InternalHeaderCheck.h +0 -0
  1935. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/IterativeLinearSolvers/BasicPreconditioners.h +0 -0
  1936. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/IterativeLinearSolvers/BiCGSTAB.h +0 -0
  1937. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/IterativeLinearSolvers/ConjugateGradient.h +0 -0
  1938. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/IterativeLinearSolvers/IncompleteCholesky.h +0 -0
  1939. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/IterativeLinearSolvers/IncompleteLUT.h +0 -0
  1940. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/IterativeLinearSolvers/InternalHeaderCheck.h +0 -0
  1941. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/IterativeLinearSolvers/IterativeSolverBase.h +0 -0
  1942. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/IterativeLinearSolvers/LeastSquareConjugateGradient.h +0 -0
  1943. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Jacobi/InternalHeaderCheck.h +0 -0
  1944. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/Jacobi/Jacobi.h +0 -0
  1945. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/KLUSupport/InternalHeaderCheck.h +0 -0
  1946. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/KLUSupport/KLUSupport.h +0 -0
  1947. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/LU/Determinant.h +0 -0
  1948. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/LU/FullPivLU.h +0 -0
  1949. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/LU/InternalHeaderCheck.h +0 -0
  1950. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/LU/InverseImpl.h +0 -0
  1951. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/LU/PartialPivLU.h +0 -0
  1952. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/LU/PartialPivLU_LAPACKE.h +0 -0
  1953. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/MetisSupport/InternalHeaderCheck.h +0 -0
  1954. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/MetisSupport/MetisSupport.h +0 -0
  1955. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/OrderingMethods/Amd.h +0 -0
  1956. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/OrderingMethods/InternalHeaderCheck.h +0 -0
  1957. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/OrderingMethods/Ordering.h +0 -0
  1958. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/PaStiXSupport/InternalHeaderCheck.h +0 -0
  1959. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/PaStiXSupport/PaStiXSupport.h +0 -0
  1960. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/PardisoSupport/InternalHeaderCheck.h +0 -0
  1961. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/PardisoSupport/PardisoSupport.h +0 -0
  1962. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/QR/ColPivHouseholderQR.h +0 -0
  1963. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/QR/ColPivHouseholderQR_LAPACKE.h +0 -0
  1964. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/QR/CompleteOrthogonalDecomposition.h +0 -0
  1965. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/QR/FullPivHouseholderQR.h +0 -0
  1966. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/QR/HouseholderQR.h +0 -0
  1967. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/QR/HouseholderQR_LAPACKE.h +0 -0
  1968. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/QR/InternalHeaderCheck.h +0 -0
  1969. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/SPQRSupport/InternalHeaderCheck.h +0 -0
  1970. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/SPQRSupport/SuiteSparseQRSupport.h +0 -0
  1971. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/SVD/BDCSVD_LAPACKE.h +0 -0
  1972. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/SVD/InternalHeaderCheck.h +0 -0
  1973. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/SVD/JacobiSVD_LAPACKE.h +0 -0
  1974. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/SVD/SVDBase.h +0 -0
  1975. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/SVD/UpperBidiagonalization.h +0 -0
  1976. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/SparseCholesky/InternalHeaderCheck.h +0 -0
  1977. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/SparseCholesky/SimplicialCholesky.h +0 -0
  1978. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/SparseCholesky/SimplicialCholesky_impl.h +0 -0
  1979. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/SparseCore/AmbiVector.h +0 -0
  1980. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/SparseCore/CompressedStorage.h +0 -0
  1981. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/SparseCore/ConservativeSparseSparseProduct.h +0 -0
  1982. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/SparseCore/InternalHeaderCheck.h +0 -0
  1983. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/SparseCore/SparseAssign.h +0 -0
  1984. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/SparseCore/SparseBlock.h +0 -0
  1985. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/SparseCore/SparseColEtree.h +0 -0
  1986. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/SparseCore/SparseCompressedBase.h +0 -0
  1987. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/SparseCore/SparseCwiseUnaryOp.h +0 -0
  1988. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/SparseCore/SparseDiagonalProduct.h +0 -0
  1989. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/SparseCore/SparseDot.h +0 -0
  1990. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/SparseCore/SparseFuzzy.h +0 -0
  1991. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/SparseCore/SparseMap.h +0 -0
  1992. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/SparseCore/SparseMatrixBase.h +0 -0
  1993. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/SparseCore/SparsePermutation.h +0 -0
  1994. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/SparseCore/SparseProduct.h +0 -0
  1995. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/SparseCore/SparseRedux.h +0 -0
  1996. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/SparseCore/SparseRef.h +0 -0
  1997. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/SparseCore/SparseSolverBase.h +0 -0
  1998. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/SparseCore/SparseSparseProductWithPruning.h +0 -0
  1999. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/SparseCore/SparseTranspose.h +0 -0
  2000. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/SparseCore/SparseTriangularView.h +0 -0
  2001. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/SparseCore/SparseUtil.h +0 -0
  2002. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/SparseCore/SparseView.h +0 -0
  2003. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/SparseCore/TriangularSolver.h +0 -0
  2004. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/SparseLU/InternalHeaderCheck.h +0 -0
  2005. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/SparseLU/SparseLUImpl.h +0 -0
  2006. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/SparseLU/SparseLU_Memory.h +0 -0
  2007. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/SparseLU/SparseLU_SupernodalMatrix.h +0 -0
  2008. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/SparseLU/SparseLU_Utils.h +0 -0
  2009. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/SparseLU/SparseLU_column_bmod.h +0 -0
  2010. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/SparseLU/SparseLU_column_dfs.h +0 -0
  2011. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/SparseLU/SparseLU_copy_to_ucol.h +0 -0
  2012. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/SparseLU/SparseLU_heap_relax_snode.h +0 -0
  2013. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/SparseLU/SparseLU_kernel_bmod.h +0 -0
  2014. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/SparseLU/SparseLU_panel_bmod.h +0 -0
  2015. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/SparseLU/SparseLU_panel_dfs.h +0 -0
  2016. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/SparseLU/SparseLU_relax_snode.h +0 -0
  2017. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/SparseQR/InternalHeaderCheck.h +0 -0
  2018. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/SparseQR/SparseQR.h +0 -0
  2019. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/StlSupport/StdDeque.h +0 -0
  2020. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/StlSupport/StdList.h +0 -0
  2021. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/StlSupport/StdVector.h +0 -0
  2022. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/StlSupport/details.h +0 -0
  2023. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/SuperLUSupport/InternalHeaderCheck.h +0 -0
  2024. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/SuperLUSupport/SuperLUSupport.h +0 -0
  2025. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/ThreadPool/Barrier.h +0 -0
  2026. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/ThreadPool/InternalHeaderCheck.h +0 -0
  2027. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/ThreadPool/ThreadCancel.h +0 -0
  2028. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/ThreadPool/ThreadEnvironment.h +0 -0
  2029. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/ThreadPool/ThreadLocal.h +0 -0
  2030. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/ThreadPool/ThreadPoolInterface.h +0 -0
  2031. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/ThreadPool/ThreadYield.h +0 -0
  2032. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/UmfPackSupport/InternalHeaderCheck.h +0 -0
  2033. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/UmfPackSupport/UmfPackSupport.h +0 -0
  2034. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/misc/Image.h +0 -0
  2035. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/misc/InternalHeaderCheck.h +0 -0
  2036. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/misc/Kernel.h +0 -0
  2037. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/misc/RealSvd2x2.h +0 -0
  2038. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/misc/blas.h +0 -0
  2039. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/misc/lapacke.h +0 -0
  2040. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/misc/lapacke_helpers.h +0 -0
  2041. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/misc/lapacke_mangling.h +0 -0
  2042. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/plugins/ArrayCwiseBinaryOps.inc +0 -0
  2043. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/plugins/BlockMethods.inc +0 -0
  2044. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/plugins/CommonCwiseBinaryOps.inc +0 -0
  2045. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/plugins/CommonCwiseUnaryOps.inc +0 -0
  2046. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/plugins/IndexedViewMethods.inc +0 -0
  2047. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/plugins/InternalHeaderCheck.inc +0 -0
  2048. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/plugins/MatrixCwiseBinaryOps.inc +0 -0
  2049. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/plugins/MatrixCwiseUnaryOps.inc +0 -0
  2050. {pyvpmr-240515 → pyvpmr-240921}/eigen/Eigen/src/plugins/ReshapedMethods.inc +0 -0
  2051. {pyvpmr-240515 → pyvpmr-240921}/eigen/README.md +0 -0
  2052. {pyvpmr-240515 → pyvpmr-240921}/eigen/blas/BandTriangularSolver.h +0 -0
  2053. {pyvpmr-240515 → pyvpmr-240921}/eigen/blas/GeneralRank1Update.h +0 -0
  2054. {pyvpmr-240515 → pyvpmr-240921}/eigen/blas/PackedSelfadjointProduct.h +0 -0
  2055. {pyvpmr-240515 → pyvpmr-240921}/eigen/blas/PackedTriangularMatrixVector.h +0 -0
  2056. {pyvpmr-240515 → pyvpmr-240921}/eigen/blas/PackedTriangularSolverVector.h +0 -0
  2057. {pyvpmr-240515 → pyvpmr-240921}/eigen/blas/Rank2Update.h +0 -0
  2058. {pyvpmr-240515 → pyvpmr-240921}/eigen/blas/blas.h +0 -0
  2059. {pyvpmr-240515 → pyvpmr-240921}/eigen/blas/common.h +0 -0
  2060. {pyvpmr-240515 → pyvpmr-240921}/eigen/blas/complex_double.cpp +0 -0
  2061. {pyvpmr-240515 → pyvpmr-240921}/eigen/blas/complex_single.cpp +0 -0
  2062. {pyvpmr-240515 → pyvpmr-240921}/eigen/blas/double.cpp +0 -0
  2063. {pyvpmr-240515 → pyvpmr-240921}/eigen/blas/f2c/chbmv.c +0 -0
  2064. {pyvpmr-240515 → pyvpmr-240921}/eigen/blas/f2c/chpmv.c +0 -0
  2065. {pyvpmr-240515 → pyvpmr-240921}/eigen/blas/f2c/complexdots.c +0 -0
  2066. {pyvpmr-240515 → pyvpmr-240921}/eigen/blas/f2c/ctbmv.c +0 -0
  2067. {pyvpmr-240515 → pyvpmr-240921}/eigen/blas/f2c/datatypes.h +0 -0
  2068. {pyvpmr-240515 → pyvpmr-240921}/eigen/blas/f2c/drotm.c +0 -0
  2069. {pyvpmr-240515 → pyvpmr-240921}/eigen/blas/f2c/drotmg.c +0 -0
  2070. {pyvpmr-240515 → pyvpmr-240921}/eigen/blas/f2c/dsbmv.c +0 -0
  2071. {pyvpmr-240515 → pyvpmr-240921}/eigen/blas/f2c/dspmv.c +0 -0
  2072. {pyvpmr-240515 → pyvpmr-240921}/eigen/blas/f2c/dtbmv.c +0 -0
  2073. {pyvpmr-240515 → pyvpmr-240921}/eigen/blas/f2c/lsame.c +0 -0
  2074. {pyvpmr-240515 → pyvpmr-240921}/eigen/blas/f2c/srotm.c +0 -0
  2075. {pyvpmr-240515 → pyvpmr-240921}/eigen/blas/f2c/srotmg.c +0 -0
  2076. {pyvpmr-240515 → pyvpmr-240921}/eigen/blas/f2c/ssbmv.c +0 -0
  2077. {pyvpmr-240515 → pyvpmr-240921}/eigen/blas/f2c/sspmv.c +0 -0
  2078. {pyvpmr-240515 → pyvpmr-240921}/eigen/blas/f2c/stbmv.c +0 -0
  2079. {pyvpmr-240515 → pyvpmr-240921}/eigen/blas/f2c/zhbmv.c +0 -0
  2080. {pyvpmr-240515 → pyvpmr-240921}/eigen/blas/f2c/zhpmv.c +0 -0
  2081. {pyvpmr-240515 → pyvpmr-240921}/eigen/blas/f2c/ztbmv.c +0 -0
  2082. {pyvpmr-240515 → pyvpmr-240921}/eigen/blas/fortran/complexdots.f +0 -0
  2083. {pyvpmr-240515 → pyvpmr-240921}/eigen/blas/level1_cplx_impl.h +0 -0
  2084. {pyvpmr-240515 → pyvpmr-240921}/eigen/blas/level1_impl.h +0 -0
  2085. {pyvpmr-240515 → pyvpmr-240921}/eigen/blas/level1_real_impl.h +0 -0
  2086. {pyvpmr-240515 → pyvpmr-240921}/eigen/blas/level2_cplx_impl.h +0 -0
  2087. {pyvpmr-240515 → pyvpmr-240921}/eigen/blas/level2_impl.h +0 -0
  2088. {pyvpmr-240515 → pyvpmr-240921}/eigen/blas/level2_real_impl.h +0 -0
  2089. {pyvpmr-240515 → pyvpmr-240921}/eigen/blas/level3_impl.h +0 -0
  2090. {pyvpmr-240515 → pyvpmr-240921}/eigen/blas/single.cpp +0 -0
  2091. {pyvpmr-240515 → pyvpmr-240921}/eigen/blas/testing/cblat1.f +0 -0
  2092. {pyvpmr-240515 → pyvpmr-240921}/eigen/blas/testing/cblat2.f +0 -0
  2093. {pyvpmr-240515 → pyvpmr-240921}/eigen/blas/testing/cblat3.f +0 -0
  2094. {pyvpmr-240515 → pyvpmr-240921}/eigen/blas/testing/dblat1.f +0 -0
  2095. {pyvpmr-240515 → pyvpmr-240921}/eigen/blas/testing/dblat2.f +0 -0
  2096. {pyvpmr-240515 → pyvpmr-240921}/eigen/blas/testing/dblat3.f +0 -0
  2097. {pyvpmr-240515 → pyvpmr-240921}/eigen/blas/testing/sblat1.f +0 -0
  2098. {pyvpmr-240515 → pyvpmr-240921}/eigen/blas/testing/sblat2.f +0 -0
  2099. {pyvpmr-240515 → pyvpmr-240921}/eigen/blas/testing/sblat3.f +0 -0
  2100. {pyvpmr-240515 → pyvpmr-240921}/eigen/blas/testing/zblat1.f +0 -0
  2101. {pyvpmr-240515 → pyvpmr-240921}/eigen/blas/testing/zblat2.f +0 -0
  2102. {pyvpmr-240515 → pyvpmr-240921}/eigen/blas/testing/zblat3.f +0 -0
  2103. {pyvpmr-240515 → pyvpmr-240921}/eigen/blas/xerbla.cpp +0 -0
  2104. {pyvpmr-240515 → pyvpmr-240921}/eigen/lapack/cholesky.inc +0 -0
  2105. {pyvpmr-240515 → pyvpmr-240921}/eigen/lapack/clacgv.f +0 -0
  2106. {pyvpmr-240515 → pyvpmr-240921}/eigen/lapack/cladiv.f +0 -0
  2107. {pyvpmr-240515 → pyvpmr-240921}/eigen/lapack/clarf.f +0 -0
  2108. {pyvpmr-240515 → pyvpmr-240921}/eigen/lapack/clarfb.f +0 -0
  2109. {pyvpmr-240515 → pyvpmr-240921}/eigen/lapack/clarfg.f +0 -0
  2110. {pyvpmr-240515 → pyvpmr-240921}/eigen/lapack/clarft.f +0 -0
  2111. {pyvpmr-240515 → pyvpmr-240921}/eigen/lapack/complex_double.cpp +0 -0
  2112. {pyvpmr-240515 → pyvpmr-240921}/eigen/lapack/complex_single.cpp +0 -0
  2113. {pyvpmr-240515 → pyvpmr-240921}/eigen/lapack/dladiv.f +0 -0
  2114. {pyvpmr-240515 → pyvpmr-240921}/eigen/lapack/dlamch.f +0 -0
  2115. {pyvpmr-240515 → pyvpmr-240921}/eigen/lapack/dlapy2.f +0 -0
  2116. {pyvpmr-240515 → pyvpmr-240921}/eigen/lapack/dlapy3.f +0 -0
  2117. {pyvpmr-240515 → pyvpmr-240921}/eigen/lapack/dlarf.f +0 -0
  2118. {pyvpmr-240515 → pyvpmr-240921}/eigen/lapack/dlarfb.f +0 -0
  2119. {pyvpmr-240515 → pyvpmr-240921}/eigen/lapack/dlarfg.f +0 -0
  2120. {pyvpmr-240515 → pyvpmr-240921}/eigen/lapack/dlarft.f +0 -0
  2121. {pyvpmr-240515 → pyvpmr-240921}/eigen/lapack/double.cpp +0 -0
  2122. {pyvpmr-240515 → pyvpmr-240921}/eigen/lapack/dsecnd_INT_CPU_TIME.cpp +0 -0
  2123. {pyvpmr-240515 → pyvpmr-240921}/eigen/lapack/dsecnd_NONE.f +0 -0
  2124. {pyvpmr-240515 → pyvpmr-240921}/eigen/lapack/eigenvalues.inc +0 -0
  2125. {pyvpmr-240515 → pyvpmr-240921}/eigen/lapack/ilaclc.f +0 -0
  2126. {pyvpmr-240515 → pyvpmr-240921}/eigen/lapack/ilaclr.f +0 -0
  2127. {pyvpmr-240515 → pyvpmr-240921}/eigen/lapack/iladlc.f +0 -0
  2128. {pyvpmr-240515 → pyvpmr-240921}/eigen/lapack/iladlr.f +0 -0
  2129. {pyvpmr-240515 → pyvpmr-240921}/eigen/lapack/ilaslc.f +0 -0
  2130. {pyvpmr-240515 → pyvpmr-240921}/eigen/lapack/ilaslr.f +0 -0
  2131. {pyvpmr-240515 → pyvpmr-240921}/eigen/lapack/ilazlc.f +0 -0
  2132. {pyvpmr-240515 → pyvpmr-240921}/eigen/lapack/ilazlr.f +0 -0
  2133. {pyvpmr-240515 → pyvpmr-240921}/eigen/lapack/lapack.h +0 -0
  2134. {pyvpmr-240515 → pyvpmr-240921}/eigen/lapack/lapack_common.h +0 -0
  2135. {pyvpmr-240515 → pyvpmr-240921}/eigen/lapack/lu.inc +0 -0
  2136. {pyvpmr-240515 → pyvpmr-240921}/eigen/lapack/second_INT_CPU_TIME.cpp +0 -0
  2137. {pyvpmr-240515 → pyvpmr-240921}/eigen/lapack/second_NONE.f +0 -0
  2138. {pyvpmr-240515 → pyvpmr-240921}/eigen/lapack/single.cpp +0 -0
  2139. {pyvpmr-240515 → pyvpmr-240921}/eigen/lapack/sladiv.f +0 -0
  2140. {pyvpmr-240515 → pyvpmr-240921}/eigen/lapack/slamch.f +0 -0
  2141. {pyvpmr-240515 → pyvpmr-240921}/eigen/lapack/slapy2.f +0 -0
  2142. {pyvpmr-240515 → pyvpmr-240921}/eigen/lapack/slapy3.f +0 -0
  2143. {pyvpmr-240515 → pyvpmr-240921}/eigen/lapack/slarf.f +0 -0
  2144. {pyvpmr-240515 → pyvpmr-240921}/eigen/lapack/slarfb.f +0 -0
  2145. {pyvpmr-240515 → pyvpmr-240921}/eigen/lapack/slarfg.f +0 -0
  2146. {pyvpmr-240515 → pyvpmr-240921}/eigen/lapack/slarft.f +0 -0
  2147. {pyvpmr-240515 → pyvpmr-240921}/eigen/lapack/svd.inc +0 -0
  2148. {pyvpmr-240515 → pyvpmr-240921}/eigen/lapack/zlacgv.f +0 -0
  2149. {pyvpmr-240515 → pyvpmr-240921}/eigen/lapack/zladiv.f +0 -0
  2150. {pyvpmr-240515 → pyvpmr-240921}/eigen/lapack/zlarf.f +0 -0
  2151. {pyvpmr-240515 → pyvpmr-240921}/eigen/lapack/zlarfb.f +0 -0
  2152. {pyvpmr-240515 → pyvpmr-240921}/eigen/lapack/zlarfg.f +0 -0
  2153. {pyvpmr-240515 → pyvpmr-240921}/eigen/lapack/zlarft.f +0 -0
  2154. {pyvpmr-240515 → pyvpmr-240921}/eigen/signature_of_eigen3_matrix_library +0 -0
  2155. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/AdolcForward +0 -0
  2156. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/AlignedVector3 +0 -0
  2157. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/ArpackSupport +0 -0
  2158. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/AutoDiff +0 -0
  2159. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/BVH +0 -0
  2160. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/CXX11/Tensor +0 -0
  2161. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/CXX11/TensorSymmetry +0 -0
  2162. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/CXX11/ThreadPool +0 -0
  2163. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/CXX11/src/Tensor/InternalHeaderCheck.h +0 -0
  2164. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorArgMax.h +0 -0
  2165. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorAssign.h +0 -0
  2166. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorBlock.h +0 -0
  2167. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorBroadcasting.h +0 -0
  2168. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorConcatenation.h +0 -0
  2169. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorContraction.h +0 -0
  2170. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorContractionBlocking.h +0 -0
  2171. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorContractionCuda.h +0 -0
  2172. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorContractionGpu.h +0 -0
  2173. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorContractionMapper.h +0 -0
  2174. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorConversion.h +0 -0
  2175. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorConvolution.h +0 -0
  2176. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorConvolutionSycl.h +0 -0
  2177. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorCostModel.h +0 -0
  2178. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorCustomOp.h +0 -0
  2179. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorDevice.h +0 -0
  2180. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceCuda.h +0 -0
  2181. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceDefault.h +0 -0
  2182. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceGpu.h +0 -0
  2183. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceSycl.h +0 -0
  2184. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorDimensionList.h +0 -0
  2185. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorEvalTo.h +0 -0
  2186. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorEvaluator.h +0 -0
  2187. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorExecutor.h +0 -0
  2188. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorExpr.h +0 -0
  2189. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorFFT.h +0 -0
  2190. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorFixedSize.h +0 -0
  2191. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorForcedEval.h +0 -0
  2192. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorFunctors.h +0 -0
  2193. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorGenerator.h +0 -0
  2194. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorGlobalFunctions.h +0 -0
  2195. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorGpuHipCudaDefines.h +0 -0
  2196. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorGpuHipCudaUndefines.h +0 -0
  2197. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorImagePatch.h +0 -0
  2198. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorIndexList.h +0 -0
  2199. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorInflation.h +0 -0
  2200. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorInitializer.h +0 -0
  2201. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorLayoutSwap.h +0 -0
  2202. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorMacros.h +0 -0
  2203. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorMeta.h +0 -0
  2204. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorMorphing.h +0 -0
  2205. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorPadding.h +0 -0
  2206. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorPatch.h +0 -0
  2207. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorReduction.h +0 -0
  2208. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorReductionGpu.h +0 -0
  2209. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorRef.h +0 -0
  2210. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorReverse.h +0 -0
  2211. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorScan.h +0 -0
  2212. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorScanSycl.h +0 -0
  2213. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorShuffling.h +0 -0
  2214. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorStorage.h +0 -0
  2215. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorStriding.h +0 -0
  2216. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorTrace.h +0 -0
  2217. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorTraits.h +0 -0
  2218. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/CXX11/src/Tensor/TensorUInt128.h +0 -0
  2219. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/CXX11/src/TensorSymmetry/DynamicSymmetry.h +0 -0
  2220. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/CXX11/src/TensorSymmetry/InternalHeaderCheck.h +0 -0
  2221. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/CXX11/src/TensorSymmetry/StaticSymmetry.h +0 -0
  2222. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/CXX11/src/TensorSymmetry/Symmetry.h +0 -0
  2223. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/CXX11/src/TensorSymmetry/util/TemplateGroupTheory.h +0 -0
  2224. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/CXX11/src/util/CXX11Meta.h +0 -0
  2225. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/CXX11/src/util/CXX11Workarounds.h +0 -0
  2226. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/EulerAngles +0 -0
  2227. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/IterativeSolvers +0 -0
  2228. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/KroneckerProduct +0 -0
  2229. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/LevenbergMarquardt +0 -0
  2230. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/MPRealSupport +0 -0
  2231. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/MatrixFunctions +0 -0
  2232. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/NonLinearOptimization +0 -0
  2233. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/NumericalDiff +0 -0
  2234. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/OpenGLSupport +0 -0
  2235. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/Polynomials +0 -0
  2236. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/SparseExtra +0 -0
  2237. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/SpecialFunctions +0 -0
  2238. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/Splines +0 -0
  2239. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/src/AutoDiff/AutoDiffJacobian.h +0 -0
  2240. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/src/AutoDiff/AutoDiffVector.h +0 -0
  2241. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/src/AutoDiff/CoherentPadOp.h +0 -0
  2242. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/src/AutoDiff/InternalHeaderCheck.h +0 -0
  2243. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/src/BVH/BVAlgorithms.h +0 -0
  2244. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/src/BVH/InternalHeaderCheck.h +0 -0
  2245. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/src/BVH/KdBVH.h +0 -0
  2246. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/src/Eigenvalues/ArpackSelfAdjointEigenSolver.h +0 -0
  2247. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/src/Eigenvalues/InternalHeaderCheck.h +0 -0
  2248. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/src/EulerAngles/EulerAngles.h +0 -0
  2249. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/src/EulerAngles/EulerSystem.h +0 -0
  2250. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/src/EulerAngles/InternalHeaderCheck.h +0 -0
  2251. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/src/FFT/InternalHeaderCheck.h +0 -0
  2252. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/src/FFT/ei_fftw_impl.h +0 -0
  2253. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/src/FFT/ei_imklfft_impl.h +0 -0
  2254. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/src/FFT/ei_pocketfft_impl.h +0 -0
  2255. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/src/IterativeSolvers/DGMRES.h +0 -0
  2256. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/src/IterativeSolvers/GMRES.h +0 -0
  2257. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/src/IterativeSolvers/IDRS.h +0 -0
  2258. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/src/IterativeSolvers/IncompleteLU.h +0 -0
  2259. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/src/IterativeSolvers/InternalHeaderCheck.h +0 -0
  2260. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/src/IterativeSolvers/MINRES.h +0 -0
  2261. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/src/IterativeSolvers/Scaling.h +0 -0
  2262. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/src/KroneckerProduct/InternalHeaderCheck.h +0 -0
  2263. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h +0 -0
  2264. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/src/LevenbergMarquardt/InternalHeaderCheck.h +0 -0
  2265. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/src/LevenbergMarquardt/LMcovar.h +0 -0
  2266. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/src/LevenbergMarquardt/LMonestep.h +0 -0
  2267. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/src/LevenbergMarquardt/LMpar.h +0 -0
  2268. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/src/LevenbergMarquardt/LMqrsolv.h +0 -0
  2269. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/src/LevenbergMarquardt/LevenbergMarquardt.h +0 -0
  2270. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/src/MatrixFunctions/InternalHeaderCheck.h +0 -0
  2271. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/src/MatrixFunctions/MatrixExponential.h +0 -0
  2272. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/src/MatrixFunctions/MatrixFunction.h +0 -0
  2273. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/src/MatrixFunctions/MatrixLogarithm.h +0 -0
  2274. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/src/MatrixFunctions/MatrixPower.h +0 -0
  2275. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/src/MatrixFunctions/MatrixSquareRoot.h +0 -0
  2276. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/src/MatrixFunctions/StemFunction.h +0 -0
  2277. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/src/NonLinearOptimization/HybridNonLinearSolver.h +0 -0
  2278. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/src/NonLinearOptimization/InternalHeaderCheck.h +0 -0
  2279. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/src/NonLinearOptimization/LevenbergMarquardt.h +0 -0
  2280. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/src/NonLinearOptimization/chkder.h +0 -0
  2281. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/src/NonLinearOptimization/covar.h +0 -0
  2282. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/src/NonLinearOptimization/dogleg.h +0 -0
  2283. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/src/NonLinearOptimization/fdjac1.h +0 -0
  2284. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/src/NonLinearOptimization/lmpar.h +0 -0
  2285. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/src/NonLinearOptimization/qrsolv.h +0 -0
  2286. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/src/NonLinearOptimization/r1mpyq.h +0 -0
  2287. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/src/NonLinearOptimization/r1updt.h +0 -0
  2288. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/src/NonLinearOptimization/rwupdt.h +0 -0
  2289. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/src/NumericalDiff/InternalHeaderCheck.h +0 -0
  2290. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/src/NumericalDiff/NumericalDiff.h +0 -0
  2291. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/src/Polynomials/Companion.h +0 -0
  2292. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/src/Polynomials/InternalHeaderCheck.h +0 -0
  2293. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/src/Polynomials/PolynomialSolver.h +0 -0
  2294. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/src/Polynomials/PolynomialUtils.h +0 -0
  2295. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/src/SparseExtra/BlockSparseMatrix.h +0 -0
  2296. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/src/SparseExtra/InternalHeaderCheck.h +0 -0
  2297. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/src/SparseExtra/MarketIO.h +0 -0
  2298. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/src/SparseExtra/MatrixMarketIterator.h +0 -0
  2299. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/src/SparseExtra/RandomSetter.h +0 -0
  2300. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsArrayAPI.h +0 -0
  2301. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsBFloat16.h +0 -0
  2302. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsFunctors.h +0 -0
  2303. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsHalf.h +0 -0
  2304. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsImpl.h +0 -0
  2305. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsPacketMath.h +0 -0
  2306. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/src/SpecialFunctions/HipVectorCompatibility.h +0 -0
  2307. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/src/SpecialFunctions/InternalHeaderCheck.h +0 -0
  2308. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsArrayAPI.h +0 -0
  2309. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsBFloat16.h +0 -0
  2310. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsFunctors.h +0 -0
  2311. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsHalf.h +0 -0
  2312. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsImpl.h +0 -0
  2313. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsPacketMath.h +0 -0
  2314. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/src/SpecialFunctions/arch/AVX/BesselFunctions.h +0 -0
  2315. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/src/SpecialFunctions/arch/AVX/SpecialFunctions.h +0 -0
  2316. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/src/SpecialFunctions/arch/AVX512/BesselFunctions.h +0 -0
  2317. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/src/SpecialFunctions/arch/AVX512/SpecialFunctions.h +0 -0
  2318. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/src/SpecialFunctions/arch/GPU/SpecialFunctions.h +0 -0
  2319. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/src/SpecialFunctions/arch/NEON/BesselFunctions.h +0 -0
  2320. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/src/SpecialFunctions/arch/NEON/SpecialFunctions.h +0 -0
  2321. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/src/Splines/InternalHeaderCheck.h +0 -0
  2322. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/src/Splines/Spline.h +0 -0
  2323. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/src/Splines/SplineFitting.h +0 -0
  2324. {pyvpmr-240515 → pyvpmr-240921}/eigen/unsupported/Eigen/src/Splines/SplineFwd.h +0 -0
  2325. {pyvpmr-240515 → pyvpmr-240921}/exprtk/exprtk.hpp +0 -0
  2326. {pyvpmr-240515 → pyvpmr-240921}/exprtk/exprtk_benchmark.cpp +0 -0
  2327. {pyvpmr-240515 → pyvpmr-240921}/exprtk/exprtk_simple_example_01.cpp +0 -0
  2328. {pyvpmr-240515 → pyvpmr-240921}/exprtk/exprtk_simple_example_02.cpp +0 -0
  2329. {pyvpmr-240515 → pyvpmr-240921}/exprtk/exprtk_simple_example_03.cpp +0 -0
  2330. {pyvpmr-240515 → pyvpmr-240921}/exprtk/exprtk_simple_example_04.cpp +0 -0
  2331. {pyvpmr-240515 → pyvpmr-240921}/exprtk/exprtk_simple_example_05.cpp +0 -0
  2332. {pyvpmr-240515 → pyvpmr-240921}/exprtk/exprtk_simple_example_06.cpp +0 -0
  2333. {pyvpmr-240515 → pyvpmr-240921}/exprtk/exprtk_simple_example_07.cpp +0 -0
  2334. {pyvpmr-240515 → pyvpmr-240921}/exprtk/exprtk_simple_example_08.cpp +0 -0
  2335. {pyvpmr-240515 → pyvpmr-240921}/exprtk/exprtk_simple_example_09.cpp +0 -0
  2336. {pyvpmr-240515 → pyvpmr-240921}/exprtk/exprtk_simple_example_10.cpp +0 -0
  2337. {pyvpmr-240515 → pyvpmr-240921}/exprtk/exprtk_simple_example_11.cpp +0 -0
  2338. {pyvpmr-240515 → pyvpmr-240921}/exprtk/exprtk_simple_example_12.cpp +0 -0
  2339. {pyvpmr-240515 → pyvpmr-240921}/exprtk/exprtk_simple_example_13.cpp +0 -0
  2340. {pyvpmr-240515 → pyvpmr-240921}/exprtk/exprtk_simple_example_14.cpp +0 -0
  2341. {pyvpmr-240515 → pyvpmr-240921}/exprtk/exprtk_simple_example_15.cpp +0 -0
  2342. {pyvpmr-240515 → pyvpmr-240921}/exprtk/exprtk_simple_example_16.cpp +0 -0
  2343. {pyvpmr-240515 → pyvpmr-240921}/exprtk/exprtk_simple_example_17.cpp +0 -0
  2344. {pyvpmr-240515 → pyvpmr-240921}/exprtk/exprtk_simple_example_18.cpp +0 -0
  2345. {pyvpmr-240515 → pyvpmr-240921}/exprtk/exprtk_simple_example_19.cpp +0 -0
  2346. {pyvpmr-240515 → pyvpmr-240921}/exprtk/exprtk_test.cpp +0 -0
  2347. {pyvpmr-240515 → pyvpmr-240921}/exprtk-custom-types/mpfr/exprtk_mpfr_adaptor.hpp +0 -0
  2348. {pyvpmr-240515 → pyvpmr-240921}/exprtk-custom-types/mpfr/exprtk_mpfr_benchmark.cpp +0 -0
  2349. {pyvpmr-240515 → pyvpmr-240921}/exprtk-custom-types/mpfr/exprtk_mpfr_repl.cpp +0 -0
  2350. {pyvpmr-240515 → pyvpmr-240921}/exprtk-custom-types/mpfr/exprtk_mpfr_test.cpp +0 -0
  2351. {pyvpmr-240515 → pyvpmr-240921}/exprtk-custom-types/real/exprtk_real_adaptor.hpp +0 -0
  2352. {pyvpmr-240515 → pyvpmr-240921}/exprtk-custom-types/real/exprtk_real_benchmark.cpp +0 -0
  2353. {pyvpmr-240515 → pyvpmr-240921}/exprtk-custom-types/real/exprtk_real_test.cpp +0 -0
  2354. {pyvpmr-240515 → pyvpmr-240921}/exprtk-custom-types/real/real_type.hpp +0 -0
  2355. {pyvpmr-240515 → pyvpmr-240921}/mpreal/README.md +0 -0
  2356. {pyvpmr-240515 → pyvpmr-240921}/mpreal/mpreal.h +0 -0
  2357. {pyvpmr-240515 → pyvpmr-240921}/patch_size.patch +0 -0
  2358. {pyvpmr-240515 → pyvpmr-240921}/pybind11/SECURITY.md +0 -0
  2359. {pyvpmr-240515 → pyvpmr-240921}/pybind11/include/pybind11/attr.h +0 -0
  2360. {pyvpmr-240515 → pyvpmr-240921}/pybind11/include/pybind11/buffer_info.h +0 -0
  2361. {pyvpmr-240515 → pyvpmr-240921}/pybind11/include/pybind11/chrono.h +0 -0
  2362. {pyvpmr-240515 → pyvpmr-240921}/pybind11/include/pybind11/common.h +0 -0
  2363. {pyvpmr-240515 → pyvpmr-240921}/pybind11/include/pybind11/complex.h +0 -0
  2364. {pyvpmr-240515 → pyvpmr-240921}/pybind11/include/pybind11/detail/descr.h +0 -0
  2365. {pyvpmr-240515 → pyvpmr-240921}/pybind11/include/pybind11/detail/typeid.h +0 -0
  2366. {pyvpmr-240515 → pyvpmr-240921}/pybind11/include/pybind11/eigen/common.h +0 -0
  2367. {pyvpmr-240515 → pyvpmr-240921}/pybind11/include/pybind11/eigen.h +0 -0
  2368. {pyvpmr-240515 → pyvpmr-240921}/pybind11/include/pybind11/iostream.h +0 -0
  2369. {pyvpmr-240515 → pyvpmr-240921}/pybind11/include/pybind11/operators.h +0 -0
  2370. {pyvpmr-240515 → pyvpmr-240921}/pybind11/include/pybind11/options.h +0 -0
  2371. {pyvpmr-240515 → pyvpmr-240921}/pybind11/include/pybind11/type_caster_pyobject_ptr.h +0 -0
  2372. {pyvpmr-240515 → pyvpmr-240921}/pybind11/pybind11/py.typed +0 -0
  2373. {pyvpmr-240515 → pyvpmr-240921}/pyvpmr/__init__.py +0 -0
  2374. {pyvpmr-240515 → pyvpmr-240921}/pyvpmr.egg-info/not-zip-safe +0 -0
  2375. {pyvpmr-240515 → pyvpmr-240921}/setup.cfg +0 -0
  2376. {pyvpmr-240515 → pyvpmr-240921}/src/BigInt.hpp +0 -0
  2377. {pyvpmr-240515 → pyvpmr-240921}/src/Cache.hpp +0 -0
pyvpmr-240921/PKG-INFO ADDED
@@ -0,0 +1,976 @@
1
+ Metadata-Version: 2.1
2
+ Name: pyvpmr
3
+ Version: 240921
4
+ Summary: The VPMR Algorithm
5
+ Author-email: Theodore Chang <tlcfem@gmail.com>
6
+ Maintainer-email: Theodore Chang <tlcfem@gmail.com>
7
+ License: GNU GENERAL PUBLIC LICENSE
8
+ Version 3, 29 June 2007
9
+
10
+ Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
11
+ Everyone is permitted to copy and distribute verbatim copies
12
+ of this license document, but changing it is not allowed.
13
+
14
+ Preamble
15
+
16
+ The GNU General Public License is a free, copyleft license for
17
+ software and other kinds of works.
18
+
19
+ The licenses for most software and other practical works are designed
20
+ to take away your freedom to share and change the works. By contrast,
21
+ the GNU General Public License is intended to guarantee your freedom to
22
+ share and change all versions of a program--to make sure it remains free
23
+ software for all its users. We, the Free Software Foundation, use the
24
+ GNU General Public License for most of our software; it applies also to
25
+ any other work released this way by its authors. You can apply it to
26
+ your programs, too.
27
+
28
+ When we speak of free software, we are referring to freedom, not
29
+ price. Our General Public Licenses are designed to make sure that you
30
+ have the freedom to distribute copies of free software (and charge for
31
+ them if you wish), that you receive source code or can get it if you
32
+ want it, that you can change the software or use pieces of it in new
33
+ free programs, and that you know you can do these things.
34
+
35
+ To protect your rights, we need to prevent others from denying you
36
+ these rights or asking you to surrender the rights. Therefore, you have
37
+ certain responsibilities if you distribute copies of the software, or if
38
+ you modify it: responsibilities to respect the freedom of others.
39
+
40
+ For example, if you distribute copies of such a program, whether
41
+ gratis or for a fee, you must pass on to the recipients the same
42
+ freedoms that you received. You must make sure that they, too, receive
43
+ or can get the source code. And you must show them these terms so they
44
+ know their rights.
45
+
46
+ Developers that use the GNU GPL protect your rights with two steps:
47
+ (1) assert copyright on the software, and (2) offer you this License
48
+ giving you legal permission to copy, distribute and/or modify it.
49
+
50
+ For the developers' and authors' protection, the GPL clearly explains
51
+ that there is no warranty for this free software. For both users' and
52
+ authors' sake, the GPL requires that modified versions be marked as
53
+ changed, so that their problems will not be attributed erroneously to
54
+ authors of previous versions.
55
+
56
+ Some devices are designed to deny users access to install or run
57
+ modified versions of the software inside them, although the manufacturer
58
+ can do so. This is fundamentally incompatible with the aim of
59
+ protecting users' freedom to change the software. The systematic
60
+ pattern of such abuse occurs in the area of products for individuals to
61
+ use, which is precisely where it is most unacceptable. Therefore, we
62
+ have designed this version of the GPL to prohibit the practice for those
63
+ products. If such problems arise substantially in other domains, we
64
+ stand ready to extend this provision to those domains in future versions
65
+ of the GPL, as needed to protect the freedom of users.
66
+
67
+ Finally, every program is threatened constantly by software patents.
68
+ States should not allow patents to restrict development and use of
69
+ software on general-purpose computers, but in those that do, we wish to
70
+ avoid the special danger that patents applied to a free program could
71
+ make it effectively proprietary. To prevent this, the GPL assures that
72
+ patents cannot be used to render the program non-free.
73
+
74
+ The precise terms and conditions for copying, distribution and
75
+ modification follow.
76
+
77
+ TERMS AND CONDITIONS
78
+
79
+ 0. Definitions.
80
+
81
+ "This License" refers to version 3 of the GNU General Public License.
82
+
83
+ "Copyright" also means copyright-like laws that apply to other kinds of
84
+ works, such as semiconductor masks.
85
+
86
+ "The Program" refers to any copyrightable work licensed under this
87
+ License. Each licensee is addressed as "you". "Licensees" and
88
+ "recipients" may be individuals or organizations.
89
+
90
+ To "modify" a work means to copy from or adapt all or part of the work
91
+ in a fashion requiring copyright permission, other than the making of an
92
+ exact copy. The resulting work is called a "modified version" of the
93
+ earlier work or a work "based on" the earlier work.
94
+
95
+ A "covered work" means either the unmodified Program or a work based
96
+ on the Program.
97
+
98
+ To "propagate" a work means to do anything with it that, without
99
+ permission, would make you directly or secondarily liable for
100
+ infringement under applicable copyright law, except executing it on a
101
+ computer or modifying a private copy. Propagation includes copying,
102
+ distribution (with or without modification), making available to the
103
+ public, and in some countries other activities as well.
104
+
105
+ To "convey" a work means any kind of propagation that enables other
106
+ parties to make or receive copies. Mere interaction with a user through
107
+ a computer network, with no transfer of a copy, is not conveying.
108
+
109
+ An interactive user interface displays "Appropriate Legal Notices"
110
+ to the extent that it includes a convenient and prominently visible
111
+ feature that (1) displays an appropriate copyright notice, and (2)
112
+ tells the user that there is no warranty for the work (except to the
113
+ extent that warranties are provided), that licensees may convey the
114
+ work under this License, and how to view a copy of this License. If
115
+ the interface presents a list of user commands or options, such as a
116
+ menu, a prominent item in the list meets this criterion.
117
+
118
+ 1. Source Code.
119
+
120
+ The "source code" for a work means the preferred form of the work
121
+ for making modifications to it. "Object code" means any non-source
122
+ form of a work.
123
+
124
+ A "Standard Interface" means an interface that either is an official
125
+ standard defined by a recognized standards body, or, in the case of
126
+ interfaces specified for a particular programming language, one that
127
+ is widely used among developers working in that language.
128
+
129
+ The "System Libraries" of an executable work include anything, other
130
+ than the work as a whole, that (a) is included in the normal form of
131
+ packaging a Major Component, but which is not part of that Major
132
+ Component, and (b) serves only to enable use of the work with that
133
+ Major Component, or to implement a Standard Interface for which an
134
+ implementation is available to the public in source code form. A
135
+ "Major Component", in this context, means a major essential component
136
+ (kernel, window system, and so on) of the specific operating system
137
+ (if any) on which the executable work runs, or a compiler used to
138
+ produce the work, or an object code interpreter used to run it.
139
+
140
+ The "Corresponding Source" for a work in object code form means all
141
+ the source code needed to generate, install, and (for an executable
142
+ work) run the object code and to modify the work, including scripts to
143
+ control those activities. However, it does not include the work's
144
+ System Libraries, or general-purpose tools or generally available free
145
+ programs which are used unmodified in performing those activities but
146
+ which are not part of the work. For example, Corresponding Source
147
+ includes interface definition files associated with source files for
148
+ the work, and the source code for shared libraries and dynamically
149
+ linked subprograms that the work is specifically designed to require,
150
+ such as by intimate data communication or control flow between those
151
+ subprograms and other parts of the work.
152
+
153
+ The Corresponding Source need not include anything that users
154
+ can regenerate automatically from other parts of the Corresponding
155
+ Source.
156
+
157
+ The Corresponding Source for a work in source code form is that
158
+ same work.
159
+
160
+ 2. Basic Permissions.
161
+
162
+ All rights granted under this License are granted for the term of
163
+ copyright on the Program, and are irrevocable provided the stated
164
+ conditions are met. This License explicitly affirms your unlimited
165
+ permission to run the unmodified Program. The output from running a
166
+ covered work is covered by this License only if the output, given its
167
+ content, constitutes a covered work. This License acknowledges your
168
+ rights of fair use or other equivalent, as provided by copyright law.
169
+
170
+ You may make, run and propagate covered works that you do not
171
+ convey, without conditions so long as your license otherwise remains
172
+ in force. You may convey covered works to others for the sole purpose
173
+ of having them make modifications exclusively for you, or provide you
174
+ with facilities for running those works, provided that you comply with
175
+ the terms of this License in conveying all material for which you do
176
+ not control copyright. Those thus making or running the covered works
177
+ for you must do so exclusively on your behalf, under your direction
178
+ and control, on terms that prohibit them from making any copies of
179
+ your copyrighted material outside their relationship with you.
180
+
181
+ Conveying under any other circumstances is permitted solely under
182
+ the conditions stated below. Sublicensing is not allowed; section 10
183
+ makes it unnecessary.
184
+
185
+ 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
186
+
187
+ No covered work shall be deemed part of an effective technological
188
+ measure under any applicable law fulfilling obligations under article
189
+ 11 of the WIPO copyright treaty adopted on 20 December 1996, or
190
+ similar laws prohibiting or restricting circumvention of such
191
+ measures.
192
+
193
+ When you convey a covered work, you waive any legal power to forbid
194
+ circumvention of technological measures to the extent such circumvention
195
+ is effected by exercising rights under this License with respect to
196
+ the covered work, and you disclaim any intention to limit operation or
197
+ modification of the work as a means of enforcing, against the work's
198
+ users, your or third parties' legal rights to forbid circumvention of
199
+ technological measures.
200
+
201
+ 4. Conveying Verbatim Copies.
202
+
203
+ You may convey verbatim copies of the Program's source code as you
204
+ receive it, in any medium, provided that you conspicuously and
205
+ appropriately publish on each copy an appropriate copyright notice;
206
+ keep intact all notices stating that this License and any
207
+ non-permissive terms added in accord with section 7 apply to the code;
208
+ keep intact all notices of the absence of any warranty; and give all
209
+ recipients a copy of this License along with the Program.
210
+
211
+ You may charge any price or no price for each copy that you convey,
212
+ and you may offer support or warranty protection for a fee.
213
+
214
+ 5. Conveying Modified Source Versions.
215
+
216
+ You may convey a work based on the Program, or the modifications to
217
+ produce it from the Program, in the form of source code under the
218
+ terms of section 4, provided that you also meet all of these conditions:
219
+
220
+ a) The work must carry prominent notices stating that you modified
221
+ it, and giving a relevant date.
222
+
223
+ b) The work must carry prominent notices stating that it is
224
+ released under this License and any conditions added under section
225
+ 7. This requirement modifies the requirement in section 4 to
226
+ "keep intact all notices".
227
+
228
+ c) You must license the entire work, as a whole, under this
229
+ License to anyone who comes into possession of a copy. This
230
+ License will therefore apply, along with any applicable section 7
231
+ additional terms, to the whole of the work, and all its parts,
232
+ regardless of how they are packaged. This License gives no
233
+ permission to license the work in any other way, but it does not
234
+ invalidate such permission if you have separately received it.
235
+
236
+ d) If the work has interactive user interfaces, each must display
237
+ Appropriate Legal Notices; however, if the Program has interactive
238
+ interfaces that do not display Appropriate Legal Notices, your
239
+ work need not make them do so.
240
+
241
+ A compilation of a covered work with other separate and independent
242
+ works, which are not by their nature extensions of the covered work,
243
+ and which are not combined with it such as to form a larger program,
244
+ in or on a volume of a storage or distribution medium, is called an
245
+ "aggregate" if the compilation and its resulting copyright are not
246
+ used to limit the access or legal rights of the compilation's users
247
+ beyond what the individual works permit. Inclusion of a covered work
248
+ in an aggregate does not cause this License to apply to the other
249
+ parts of the aggregate.
250
+
251
+ 6. Conveying Non-Source Forms.
252
+
253
+ You may convey a covered work in object code form under the terms
254
+ of sections 4 and 5, provided that you also convey the
255
+ machine-readable Corresponding Source under the terms of this License,
256
+ in one of these ways:
257
+
258
+ a) Convey the object code in, or embodied in, a physical product
259
+ (including a physical distribution medium), accompanied by the
260
+ Corresponding Source fixed on a durable physical medium
261
+ customarily used for software interchange.
262
+
263
+ b) Convey the object code in, or embodied in, a physical product
264
+ (including a physical distribution medium), accompanied by a
265
+ written offer, valid for at least three years and valid for as
266
+ long as you offer spare parts or customer support for that product
267
+ model, to give anyone who possesses the object code either (1) a
268
+ copy of the Corresponding Source for all the software in the
269
+ product that is covered by this License, on a durable physical
270
+ medium customarily used for software interchange, for a price no
271
+ more than your reasonable cost of physically performing this
272
+ conveying of source, or (2) access to copy the
273
+ Corresponding Source from a network server at no charge.
274
+
275
+ c) Convey individual copies of the object code with a copy of the
276
+ written offer to provide the Corresponding Source. This
277
+ alternative is allowed only occasionally and noncommercially, and
278
+ only if you received the object code with such an offer, in accord
279
+ with subsection 6b.
280
+
281
+ d) Convey the object code by offering access from a designated
282
+ place (gratis or for a charge), and offer equivalent access to the
283
+ Corresponding Source in the same way through the same place at no
284
+ further charge. You need not require recipients to copy the
285
+ Corresponding Source along with the object code. If the place to
286
+ copy the object code is a network server, the Corresponding Source
287
+ may be on a different server (operated by you or a third party)
288
+ that supports equivalent copying facilities, provided you maintain
289
+ clear directions next to the object code saying where to find the
290
+ Corresponding Source. Regardless of what server hosts the
291
+ Corresponding Source, you remain obligated to ensure that it is
292
+ available for as long as needed to satisfy these requirements.
293
+
294
+ e) Convey the object code using peer-to-peer transmission, provided
295
+ you inform other peers where the object code and Corresponding
296
+ Source of the work are being offered to the general public at no
297
+ charge under subsection 6d.
298
+
299
+ A separable portion of the object code, whose source code is excluded
300
+ from the Corresponding Source as a System Library, need not be
301
+ included in conveying the object code work.
302
+
303
+ A "User Product" is either (1) a "consumer product", which means any
304
+ tangible personal property which is normally used for personal, family,
305
+ or household purposes, or (2) anything designed or sold for incorporation
306
+ into a dwelling. In determining whether a product is a consumer product,
307
+ doubtful cases shall be resolved in favor of coverage. For a particular
308
+ product received by a particular user, "normally used" refers to a
309
+ typical or common use of that class of product, regardless of the status
310
+ of the particular user or of the way in which the particular user
311
+ actually uses, or expects or is expected to use, the product. A product
312
+ is a consumer product regardless of whether the product has substantial
313
+ commercial, industrial or non-consumer uses, unless such uses represent
314
+ the only significant mode of use of the product.
315
+
316
+ "Installation Information" for a User Product means any methods,
317
+ procedures, authorization keys, or other information required to install
318
+ and execute modified versions of a covered work in that User Product from
319
+ a modified version of its Corresponding Source. The information must
320
+ suffice to ensure that the continued functioning of the modified object
321
+ code is in no case prevented or interfered with solely because
322
+ modification has been made.
323
+
324
+ If you convey an object code work under this section in, or with, or
325
+ specifically for use in, a User Product, and the conveying occurs as
326
+ part of a transaction in which the right of possession and use of the
327
+ User Product is transferred to the recipient in perpetuity or for a
328
+ fixed term (regardless of how the transaction is characterized), the
329
+ Corresponding Source conveyed under this section must be accompanied
330
+ by the Installation Information. But this requirement does not apply
331
+ if neither you nor any third party retains the ability to install
332
+ modified object code on the User Product (for example, the work has
333
+ been installed in ROM).
334
+
335
+ The requirement to provide Installation Information does not include a
336
+ requirement to continue to provide support service, warranty, or updates
337
+ for a work that has been modified or installed by the recipient, or for
338
+ the User Product in which it has been modified or installed. Access to a
339
+ network may be denied when the modification itself materially and
340
+ adversely affects the operation of the network or violates the rules and
341
+ protocols for communication across the network.
342
+
343
+ Corresponding Source conveyed, and Installation Information provided,
344
+ in accord with this section must be in a format that is publicly
345
+ documented (and with an implementation available to the public in
346
+ source code form), and must require no special password or key for
347
+ unpacking, reading or copying.
348
+
349
+ 7. Additional Terms.
350
+
351
+ "Additional permissions" are terms that supplement the terms of this
352
+ License by making exceptions from one or more of its conditions.
353
+ Additional permissions that are applicable to the entire Program shall
354
+ be treated as though they were included in this License, to the extent
355
+ that they are valid under applicable law. If additional permissions
356
+ apply only to part of the Program, that part may be used separately
357
+ under those permissions, but the entire Program remains governed by
358
+ this License without regard to the additional permissions.
359
+
360
+ When you convey a copy of a covered work, you may at your option
361
+ remove any additional permissions from that copy, or from any part of
362
+ it. (Additional permissions may be written to require their own
363
+ removal in certain cases when you modify the work.) You may place
364
+ additional permissions on material, added by you to a covered work,
365
+ for which you have or can give appropriate copyright permission.
366
+
367
+ Notwithstanding any other provision of this License, for material you
368
+ add to a covered work, you may (if authorized by the copyright holders of
369
+ that material) supplement the terms of this License with terms:
370
+
371
+ a) Disclaiming warranty or limiting liability differently from the
372
+ terms of sections 15 and 16 of this License; or
373
+
374
+ b) Requiring preservation of specified reasonable legal notices or
375
+ author attributions in that material or in the Appropriate Legal
376
+ Notices displayed by works containing it; or
377
+
378
+ c) Prohibiting misrepresentation of the origin of that material, or
379
+ requiring that modified versions of such material be marked in
380
+ reasonable ways as different from the original version; or
381
+
382
+ d) Limiting the use for publicity purposes of names of licensors or
383
+ authors of the material; or
384
+
385
+ e) Declining to grant rights under trademark law for use of some
386
+ trade names, trademarks, or service marks; or
387
+
388
+ f) Requiring indemnification of licensors and authors of that
389
+ material by anyone who conveys the material (or modified versions of
390
+ it) with contractual assumptions of liability to the recipient, for
391
+ any liability that these contractual assumptions directly impose on
392
+ those licensors and authors.
393
+
394
+ All other non-permissive additional terms are considered "further
395
+ restrictions" within the meaning of section 10. If the Program as you
396
+ received it, or any part of it, contains a notice stating that it is
397
+ governed by this License along with a term that is a further
398
+ restriction, you may remove that term. If a license document contains
399
+ a further restriction but permits relicensing or conveying under this
400
+ License, you may add to a covered work material governed by the terms
401
+ of that license document, provided that the further restriction does
402
+ not survive such relicensing or conveying.
403
+
404
+ If you add terms to a covered work in accord with this section, you
405
+ must place, in the relevant source files, a statement of the
406
+ additional terms that apply to those files, or a notice indicating
407
+ where to find the applicable terms.
408
+
409
+ Additional terms, permissive or non-permissive, may be stated in the
410
+ form of a separately written license, or stated as exceptions;
411
+ the above requirements apply either way.
412
+
413
+ 8. Termination.
414
+
415
+ You may not propagate or modify a covered work except as expressly
416
+ provided under this License. Any attempt otherwise to propagate or
417
+ modify it is void, and will automatically terminate your rights under
418
+ this License (including any patent licenses granted under the third
419
+ paragraph of section 11).
420
+
421
+ However, if you cease all violation of this License, then your
422
+ license from a particular copyright holder is reinstated (a)
423
+ provisionally, unless and until the copyright holder explicitly and
424
+ finally terminates your license, and (b) permanently, if the copyright
425
+ holder fails to notify you of the violation by some reasonable means
426
+ prior to 60 days after the cessation.
427
+
428
+ Moreover, your license from a particular copyright holder is
429
+ reinstated permanently if the copyright holder notifies you of the
430
+ violation by some reasonable means, this is the first time you have
431
+ received notice of violation of this License (for any work) from that
432
+ copyright holder, and you cure the violation prior to 30 days after
433
+ your receipt of the notice.
434
+
435
+ Termination of your rights under this section does not terminate the
436
+ licenses of parties who have received copies or rights from you under
437
+ this License. If your rights have been terminated and not permanently
438
+ reinstated, you do not qualify to receive new licenses for the same
439
+ material under section 10.
440
+
441
+ 9. Acceptance Not Required for Having Copies.
442
+
443
+ You are not required to accept this License in order to receive or
444
+ run a copy of the Program. Ancillary propagation of a covered work
445
+ occurring solely as a consequence of using peer-to-peer transmission
446
+ to receive a copy likewise does not require acceptance. However,
447
+ nothing other than this License grants you permission to propagate or
448
+ modify any covered work. These actions infringe copyright if you do
449
+ not accept this License. Therefore, by modifying or propagating a
450
+ covered work, you indicate your acceptance of this License to do so.
451
+
452
+ 10. Automatic Licensing of Downstream Recipients.
453
+
454
+ Each time you convey a covered work, the recipient automatically
455
+ receives a license from the original licensors, to run, modify and
456
+ propagate that work, subject to this License. You are not responsible
457
+ for enforcing compliance by third parties with this License.
458
+
459
+ An "entity transaction" is a transaction transferring control of an
460
+ organization, or substantially all assets of one, or subdividing an
461
+ organization, or merging organizations. If propagation of a covered
462
+ work results from an entity transaction, each party to that
463
+ transaction who receives a copy of the work also receives whatever
464
+ licenses to the work the party's predecessor in interest had or could
465
+ give under the previous paragraph, plus a right to possession of the
466
+ Corresponding Source of the work from the predecessor in interest, if
467
+ the predecessor has it or can get it with reasonable efforts.
468
+
469
+ You may not impose any further restrictions on the exercise of the
470
+ rights granted or affirmed under this License. For example, you may
471
+ not impose a license fee, royalty, or other charge for exercise of
472
+ rights granted under this License, and you may not initiate litigation
473
+ (including a cross-claim or counterclaim in a lawsuit) alleging that
474
+ any patent claim is infringed by making, using, selling, offering for
475
+ sale, or importing the Program or any portion of it.
476
+
477
+ 11. Patents.
478
+
479
+ A "contributor" is a copyright holder who authorizes use under this
480
+ License of the Program or a work on which the Program is based. The
481
+ work thus licensed is called the contributor's "contributor version".
482
+
483
+ A contributor's "essential patent claims" are all patent claims
484
+ owned or controlled by the contributor, whether already acquired or
485
+ hereafter acquired, that would be infringed by some manner, permitted
486
+ by this License, of making, using, or selling its contributor version,
487
+ but do not include claims that would be infringed only as a
488
+ consequence of further modification of the contributor version. For
489
+ purposes of this definition, "control" includes the right to grant
490
+ patent sublicenses in a manner consistent with the requirements of
491
+ this License.
492
+
493
+ Each contributor grants you a non-exclusive, worldwide, royalty-free
494
+ patent license under the contributor's essential patent claims, to
495
+ make, use, sell, offer for sale, import and otherwise run, modify and
496
+ propagate the contents of its contributor version.
497
+
498
+ In the following three paragraphs, a "patent license" is any express
499
+ agreement or commitment, however denominated, not to enforce a patent
500
+ (such as an express permission to practice a patent or covenant not to
501
+ sue for patent infringement). To "grant" such a patent license to a
502
+ party means to make such an agreement or commitment not to enforce a
503
+ patent against the party.
504
+
505
+ If you convey a covered work, knowingly relying on a patent license,
506
+ and the Corresponding Source of the work is not available for anyone
507
+ to copy, free of charge and under the terms of this License, through a
508
+ publicly available network server or other readily accessible means,
509
+ then you must either (1) cause the Corresponding Source to be so
510
+ available, or (2) arrange to deprive yourself of the benefit of the
511
+ patent license for this particular work, or (3) arrange, in a manner
512
+ consistent with the requirements of this License, to extend the patent
513
+ license to downstream recipients. "Knowingly relying" means you have
514
+ actual knowledge that, but for the patent license, your conveying the
515
+ covered work in a country, or your recipient's use of the covered work
516
+ in a country, would infringe one or more identifiable patents in that
517
+ country that you have reason to believe are valid.
518
+
519
+ If, pursuant to or in connection with a single transaction or
520
+ arrangement, you convey, or propagate by procuring conveyance of, a
521
+ covered work, and grant a patent license to some of the parties
522
+ receiving the covered work authorizing them to use, propagate, modify
523
+ or convey a specific copy of the covered work, then the patent license
524
+ you grant is automatically extended to all recipients of the covered
525
+ work and works based on it.
526
+
527
+ A patent license is "discriminatory" if it does not include within
528
+ the scope of its coverage, prohibits the exercise of, or is
529
+ conditioned on the non-exercise of one or more of the rights that are
530
+ specifically granted under this License. You may not convey a covered
531
+ work if you are a party to an arrangement with a third party that is
532
+ in the business of distributing software, under which you make payment
533
+ to the third party based on the extent of your activity of conveying
534
+ the work, and under which the third party grants, to any of the
535
+ parties who would receive the covered work from you, a discriminatory
536
+ patent license (a) in connection with copies of the covered work
537
+ conveyed by you (or copies made from those copies), or (b) primarily
538
+ for and in connection with specific products or compilations that
539
+ contain the covered work, unless you entered into that arrangement,
540
+ or that patent license was granted, prior to 28 March 2007.
541
+
542
+ Nothing in this License shall be construed as excluding or limiting
543
+ any implied license or other defenses to infringement that may
544
+ otherwise be available to you under applicable patent law.
545
+
546
+ 12. No Surrender of Others' Freedom.
547
+
548
+ If conditions are imposed on you (whether by court order, agreement or
549
+ otherwise) that contradict the conditions of this License, they do not
550
+ excuse you from the conditions of this License. If you cannot convey a
551
+ covered work so as to satisfy simultaneously your obligations under this
552
+ License and any other pertinent obligations, then as a consequence you may
553
+ not convey it at all. For example, if you agree to terms that obligate you
554
+ to collect a royalty for further conveying from those to whom you convey
555
+ the Program, the only way you could satisfy both those terms and this
556
+ License would be to refrain entirely from conveying the Program.
557
+
558
+ 13. Use with the GNU Affero General Public License.
559
+
560
+ Notwithstanding any other provision of this License, you have
561
+ permission to link or combine any covered work with a work licensed
562
+ under version 3 of the GNU Affero General Public License into a single
563
+ combined work, and to convey the resulting work. The terms of this
564
+ License will continue to apply to the part which is the covered work,
565
+ but the special requirements of the GNU Affero General Public License,
566
+ section 13, concerning interaction through a network will apply to the
567
+ combination as such.
568
+
569
+ 14. Revised Versions of this License.
570
+
571
+ The Free Software Foundation may publish revised and/or new versions of
572
+ the GNU General Public License from time to time. Such new versions will
573
+ be similar in spirit to the present version, but may differ in detail to
574
+ address new problems or concerns.
575
+
576
+ Each version is given a distinguishing version number. If the
577
+ Program specifies that a certain numbered version of the GNU General
578
+ Public License "or any later version" applies to it, you have the
579
+ option of following the terms and conditions either of that numbered
580
+ version or of any later version published by the Free Software
581
+ Foundation. If the Program does not specify a version number of the
582
+ GNU General Public License, you may choose any version ever published
583
+ by the Free Software Foundation.
584
+
585
+ If the Program specifies that a proxy can decide which future
586
+ versions of the GNU General Public License can be used, that proxy's
587
+ public statement of acceptance of a version permanently authorizes you
588
+ to choose that version for the Program.
589
+
590
+ Later license versions may give you additional or different
591
+ permissions. However, no additional obligations are imposed on any
592
+ author or copyright holder as a result of your choosing to follow a
593
+ later version.
594
+
595
+ 15. Disclaimer of Warranty.
596
+
597
+ THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
598
+ APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
599
+ HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
600
+ OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
601
+ THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
602
+ PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
603
+ IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
604
+ ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
605
+
606
+ 16. Limitation of Liability.
607
+
608
+ IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
609
+ WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
610
+ THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
611
+ GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
612
+ USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
613
+ DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
614
+ PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
615
+ EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
616
+ SUCH DAMAGES.
617
+
618
+ 17. Interpretation of Sections 15 and 16.
619
+
620
+ If the disclaimer of warranty and limitation of liability provided
621
+ above cannot be given local legal effect according to their terms,
622
+ reviewing courts shall apply local law that most closely approximates
623
+ an absolute waiver of all civil liability in connection with the
624
+ Program, unless a warranty or assumption of liability accompanies a
625
+ copy of the Program in return for a fee.
626
+
627
+ END OF TERMS AND CONDITIONS
628
+
629
+ How to Apply These Terms to Your New Programs
630
+
631
+ If you develop a new program, and you want it to be of the greatest
632
+ possible use to the public, the best way to achieve this is to make it
633
+ free software which everyone can redistribute and change under these terms.
634
+
635
+ To do so, attach the following notices to the program. It is safest
636
+ to attach them to the start of each source file to most effectively
637
+ state the exclusion of warranty; and each file should have at least
638
+ the "copyright" line and a pointer to where the full notice is found.
639
+
640
+ <one line to give the program's name and a brief idea of what it does.>
641
+ Copyright (C) <year> <name of author>
642
+
643
+ This program is free software: you can redistribute it and/or modify
644
+ it under the terms of the GNU General Public License as published by
645
+ the Free Software Foundation, either version 3 of the License, or
646
+ (at your option) any later version.
647
+
648
+ This program is distributed in the hope that it will be useful,
649
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
650
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
651
+ GNU General Public License for more details.
652
+
653
+ You should have received a copy of the GNU General Public License
654
+ along with this program. If not, see <https://www.gnu.org/licenses/>.
655
+
656
+ Also add information on how to contact you by electronic and paper mail.
657
+
658
+ If the program does terminal interaction, make it output a short
659
+ notice like this when it starts in an interactive mode:
660
+
661
+ <program> Copyright (C) <year> <name of author>
662
+ This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
663
+ This is free software, and you are welcome to redistribute it
664
+ under certain conditions; type `show c' for details.
665
+
666
+ The hypothetical commands `show w' and `show c' should show the appropriate
667
+ parts of the General Public License. Of course, your program's commands
668
+ might be different; for a GUI interface, you would use an "about box".
669
+
670
+ You should also get your employer (if you work as a programmer) or school,
671
+ if any, to sign a "copyright disclaimer" for the program, if necessary.
672
+ For more information on this, and how to apply and follow the GNU GPL, see
673
+ <https://www.gnu.org/licenses/>.
674
+
675
+ The GNU General Public License does not permit incorporating your program
676
+ into proprietary programs. If your program is a subroutine library, you
677
+ may consider it more useful to permit linking proprietary applications with
678
+ the library. If this is what you want to do, use the GNU Lesser General
679
+ Public License instead of this License. But first, please read
680
+ <https://www.gnu.org/licenses/why-not-lgpl.html>.
681
+
682
+ Project-URL: Homepage, https://github.com/TLCFEM/vpmr
683
+ Project-URL: Bug Reports, https://github.com/TLCFEM/vpmr/issuess
684
+ Project-URL: Source, https://github.com/TLCFEM/vpmr
685
+ Keywords: vpmr,kernel function
686
+ Classifier: Development Status :: 5 - Production/Stable
687
+ Classifier: Intended Audience :: Education
688
+ Classifier: Intended Audience :: Science/Research
689
+ Classifier: Topic :: Scientific/Engineering
690
+ Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
691
+ Classifier: Programming Language :: Python :: 3
692
+ Classifier: Programming Language :: Python :: 3.8
693
+ Classifier: Programming Language :: Python :: 3.9
694
+ Classifier: Programming Language :: Python :: 3.10
695
+ Classifier: Programming Language :: Python :: 3.11
696
+ Classifier: Programming Language :: Python :: 3.12
697
+ Classifier: Programming Language :: Python :: 3 :: Only
698
+ Requires-Python: >=3.8
699
+ Description-Content-Type: text/markdown
700
+ License-File: LICENSE
701
+ Requires-Dist: numpy
702
+ Requires-Dist: matplotlib
703
+
704
+ # VPMR C++ Implementation
705
+
706
+ [![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.7770193.svg)](https://doi.org/10.5281/zenodo.7770193)
707
+ [![codecov](https://codecov.io/gh/TLCFEM/vpmr/branch/master/graph/badge.svg?token=9QE6SQC3ZG)](https://codecov.io/gh/TLCFEM/vpmr)
708
+ [![PyPI version](https://badge.fury.io/py/pyvpmr.svg)](https://pypi.org/project/pyvpmr/)
709
+ [![Docker](https://img.shields.io/docker/image-size/tlcfem/vpmr)](https://hub.docker.com/r/tlcfem/vpmr/tags)
710
+
711
+ [![gplv3-or-later](https://www.gnu.org/graphics/gplv3-or-later.svg)](https://www.gnu.org/licenses/gpl-3.0.en.html)
712
+
713
+ ## Call For Help
714
+
715
+ - [ ] **more performant parallel SVD algorithm**: `eigen` only provides sequential SVD
716
+ - [ ] **alternative integration**: currently only Gauss-Legendre quadrature is available
717
+
718
+ ## What Is This?
719
+
720
+ This is a C++ implementation of the VPMR algorithm to compute the approximation of arbitrary smooth kernel.
721
+ A Python package is also provided.
722
+
723
+ Check the reference paper [10.1007/s10915-022-01999-1](https://doi.org/10.1007/s10915-022-01999-1) and
724
+ the [original](https://github.com/ZXGao97/VPMR) MATLAB implementation for more details.
725
+
726
+ In short, the algorithm tries to find a summation of exponentials to approximate a given kernel function.
727
+ In mathematical terms, it looks for a set of $m_j$ and $s_j$ such that
728
+
729
+ $$
730
+ \max_{t\in{}I}\left\|g(t)-\sum_jm_j\exp(-s_jt)\right\|<\epsilon.
731
+ $$
732
+
733
+ In the above, $g(t)$ is the given kernel function and $\epsilon$ is the prescribed tolerance.
734
+
735
+ ## Dependency
736
+
737
+ The following libraries are required:
738
+
739
+ 1. [gmp](https://gmplib.org/) for multiple precision arithmetic
740
+ 2. [mpfr](https://www.mpfr.org/) for multiple-precision floating-point computations
741
+ 3. [tbb](https://github.com/oneapi-src/oneTBB) for parallel computing
742
+
743
+ The following libraries are included:
744
+
745
+ 1. [mpreal](http://www.holoborodko.com/pavel/mpfr/) `mpreal` type C++ wrapper, included
746
+ 2. [BigInt](https://github.com/faheel/BigInt) `BigInt` arbitrary large integer for combinatorial number, included
747
+ 3. [Eigen](https://eigen.tuxfamily.org/) for matrix decomposition, included
748
+ 4. [exprtk](https://github.com/ArashPartow/exprtk.git) for expression parsing, included
749
+ 5. [exprtk-custom-types](https://github.com/ArashPartow/exprtk-custom-types.git) for `mpreal` support, included
750
+
751
+ ## How To
752
+
753
+ ### Python Package
754
+
755
+ > [!WARNING]
756
+ > The Python module needs external libraries to be installed.
757
+
758
+ > [!WARNING]
759
+ > Windows users need to have a working [MSYS2](https://www.msys2.org/) environment. See below for more details.
760
+ > For other environments, you need to figure out how to install `gmp` and `mpfr` on your own.
761
+
762
+ On RPM-based Linux distributions (using `dnf`), if you are:
763
+
764
+ 1. compiling the application from source (or wheels are not
765
+ available), `sudo dnf install -y gcc-c++ tbb-devel mpfr-devel gmp-devel`
766
+ 2. using the packaged binary (wheels are available), `sudo dnf install -y gmp mpfr tbb`
767
+
768
+ On DEB-based Linux distributions (using `apt`), you need to `sudo apt install -y libtbb-dev libmpfr-dev libgmp-dev`.
769
+
770
+ On macOS, you need to `brew install tbb mpfr gmp`.
771
+
772
+ Then install the package with `pip`.
773
+
774
+ ```
775
+ pip install pyvpmr
776
+ ```
777
+
778
+ If the corresponding wheel is not available, the package will be compiled, which takes a few minutes.
779
+ The execution of the algorithm always requires available `gmp`, `mpfr` and `tbb` libraries.
780
+
781
+ #### Jumpstart
782
+
783
+ ```python
784
+ import numpy as np
785
+
786
+ from pyvpmr import vpmr, plot
787
+
788
+
789
+ def kernel(x):
790
+ return np.exp(-x ** 2 / 4)
791
+
792
+
793
+ if __name__ == '__main__':
794
+ m, s = vpmr(n=50, k='exp(-t^2/4)')
795
+ plot(m, s, kernel)
796
+ ```
797
+
798
+ ### Compile Binary
799
+
800
+ > [!WARNING]
801
+ > The application relies on `eigen` and `exprtk`, which depend on very heavy usage of templates.
802
+ > The compilation would take minutes and around 2 GB memory.
803
+ > You need to install libraries `gmp`, `mpfr` and `tbb` before compiling.
804
+
805
+ #### Docker
806
+
807
+ To avoid the hassle of installing dependencies, you can use the provided `Dockerfile`.
808
+ For example,
809
+
810
+ ```bash
811
+ wget -q https://raw.githubusercontent.com/TLCFEM/vpmr/master/Dockerfile
812
+ docker build -t vpmr -f Dockerfile .
813
+ ```
814
+
815
+ Or you simply pull using the following command.
816
+
817
+ ```bash
818
+ docker pull tlcfem/vpmr
819
+ ```
820
+
821
+ #### Windows
822
+
823
+ Use the following instructions based on [MSYS2](https://www.msys2.org/), or follow the Linux instructions below with
824
+ WSL.
825
+
826
+ ```bash
827
+ # install necessary packages
828
+ pacman -S git mingw-w64-x86_64-cmake mingw-w64-x86_64-tbb mingw-w64-x86_64-gcc mingw-w64-x86_64-ninja mingw-w64-x86_64-gmp mingw-w64-x86_64-mpfr
829
+ # clone the repository
830
+ git clone --depth 1 https://github.com/TLCFEM/vpmr.git
831
+ # initialise submodules
832
+ cd vpmr
833
+ git submodule update --init --recursive
834
+ # apply patch to enable parallel evaluation of some loops in SVD
835
+ cd eigen && git apply --ignore-space-change --ignore-whitespace ../patch_size.patch && cd ..
836
+ # configure and compile
837
+ cmake -G Ninja -DCMAKE_BUILD_TYPE=Release .
838
+ ninja
839
+ ```
840
+
841
+ #### Linux
842
+
843
+ The following is based on Fedora.
844
+
845
+ ```bash
846
+ sudo dnf install gcc g++ gfortran cmake git -y
847
+ sudo dnf install tbb-devel mpfr-devel gmp-devel -y
848
+ git clone --depth 1 https://github.com/TLCFEM/vpmr.git
849
+ cd vpmr
850
+ git submodule update --init --recursive
851
+ cd eigen && git apply --ignore-space-change --ignore-whitespace ../patch_size.patch && cd ..
852
+ cmake -DCMAKE_BUILD_TYPE=Release .
853
+ make
854
+ ```
855
+
856
+ ### Usage
857
+
858
+ All available options are:
859
+
860
+ ```text
861
+ Usage: vpmr [options]
862
+
863
+ Options:
864
+
865
+ -n, --max-terms <int> number of terms (default: 10)
866
+ -c, --max-exponent <int> maximum exponent (default: 4)
867
+ -d, --precision-bits <int> number of precision bits (default: 512)
868
+ -q, --quadrature-order <int> quadrature order (default: 500)
869
+ -m, --precision-multiplier <float> precision multiplier (default: 1.5)
870
+ -e, --tolerance <float> tolerance (default: 1E-8)
871
+ -k, --kernel <string> file name of kernel function (default uses: exp(-t^2/4))
872
+ -s, --singular-values print singular values
873
+ -w, --weights print weights
874
+ -h, --help print this help message
875
+ ```
876
+
877
+ The minimum required precision can be estimated by the parameter $n$.
878
+ The algorithm involves the computation of $C(4n,k)$ and $2^{4n}$.
879
+ The number of precision bits shall be at least $4n+\log_2C(4n,2n)$.
880
+ In the implementation, this number will be further multiplied by the parameter $m$.
881
+
882
+ #### Example
883
+
884
+ The default kernel is `exp(-t^2/4)`. One can run the application with the following command:
885
+
886
+ ```bash
887
+ ./vpmr -n 30
888
+ ```
889
+
890
+ The output is:
891
+
892
+ ```text
893
+ Using the following parameters:
894
+ terms = 30.
895
+ exponent = 4.
896
+ precision = 355.
897
+ quad. order = 500.
898
+ multiplier = 1.5000e+00.
899
+ tolerance = 1.0000e-08.
900
+ kernel = exp(-t*t/4).
901
+
902
+ [1/6] Computing weights... [60/60]
903
+ [2/6] Solving Lyapunov equation...
904
+ [3/6] Solving SVD...
905
+ [4/6] Transforming (P=+9)...
906
+ [5/6] Solving eigen decomposition...
907
+ [6/6] Done.
908
+
909
+ M =
910
+ +1.1745193571738943e+01+6.4089561283054790e-107j
911
+ -5.5143304351134397e+00+5.7204056791636839e+00j
912
+ -5.5143304351134397e+00-5.7204056791636839e+00j
913
+ -1.6161617424833762e-02+2.3459542440459513e+00j
914
+ -1.6161617424833762e-02-2.3459542440459513e+00j
915
+ +1.6338578576177487e-01+1.9308431539218418e-01j
916
+ +1.6338578576177487e-01-1.9308431539218418e-01j
917
+ -5.4905134221689715e-03+2.2104939243740062e-03j
918
+ -5.4905134221689715e-03-2.2104939243740062e-03j
919
+ S =
920
+ +1.8757961592204051e+00-0.0000000000000000e+00j
921
+ +1.8700580506914817e+00+6.2013413918954552e-01j
922
+ +1.8700580506914817e+00-6.2013413918954552e-01j
923
+ +1.8521958553280000e+00-1.2601975249082220e+00j
924
+ +1.8521958553280000e+00+1.2601975249082220e+00j
925
+ +1.8197653300065935e+00+1.9494562062795735e+00j
926
+ +1.8197653300065935e+00-1.9494562062795735e+00j
927
+ +1.7655956664692953e+00-2.7555720406099038e+00j
928
+ +1.7655956664692953e+00+2.7555720406099038e+00j
929
+
930
+ Running time: 3112 ms.
931
+ ```
932
+
933
+ ![exp(-t^2/4)](https://raw.githubusercontent.com/TLCFEM/vpmr/master/resource/example.png)
934
+
935
+ #### Arbitrary Kernel
936
+
937
+ For arbitrary kernel, it is necessary to provide the kernel function in a text file.
938
+ The file should contain the kernel expressed as a function of variable `t`.
939
+
940
+ The `exprtk` is used to parse the expression and compute the value.
941
+ The provided kernel function must be valid and supported by `exprtk`.
942
+
943
+ For example, to compute the approximation of `exp(-t^2/10)`, one can create a file `kernel.txt` with the following
944
+ content:
945
+
946
+ ```text
947
+ exp(-t*t/10)
948
+ ```
949
+
950
+ In the following, the kernel function is echoed to a file and then used as an input to the application.
951
+
952
+ ```bash
953
+ echo "exp(-t*t/10)" > kernel.txt
954
+ ./vpmr -n 60 -k kernel.txt -e 1e-12
955
+ ```
956
+
957
+ ![exp(-t^2/10)](https://raw.githubusercontent.com/TLCFEM/vpmr/master/resource/arbitrary.png)
958
+
959
+ ## Binary
960
+
961
+ The binary requires available `gmp`, `mpfr` and `tbb` libraries.
962
+
963
+ ```bash
964
+ ❯ ldd vpmr
965
+ linux-vdso.so.1 (0x00007ffcf3121000)
966
+ libgmp.so.10 => /lib64/libgmp.so.10 (0x00007f72087e8000)
967
+ libmpfr.so.6 => /lib64/libmpfr.so.6 (0x00007f7208736000)
968
+ libtbb.so.2 => /lib64/libtbb.so.2 (0x00007f72086f2000)
969
+ libstdc++.so.6 => /lib64/libstdc++.so.6 (0x00007f7208400000)
970
+ libm.so.6 => /lib64/libm.so.6 (0x00007f7208320000)
971
+ libgcc_s.so.1 => /lib64/libgcc_s.so.1 (0x00007f72086d0000)
972
+ libc.so.6 => /lib64/libc.so.6 (0x00007f7208143000)
973
+ /lib64/ld-linux-x86-64.so.2 (0x00007f72088a1000)
974
+ ```
975
+
976
+ The distributed `appimage` is portable.