pyaac 0.1.0__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 (1927) hide show
  1. pyaac-0.1.0/CMakeLists.txt +123 -0
  2. pyaac-0.1.0/MANIFEST.in +4 -0
  3. pyaac-0.1.0/PKG-INFO +12 -0
  4. pyaac-0.1.0/include/DOACalculator.h +81 -0
  5. pyaac-0.1.0/include/eigen-5.0.0/.clang-format +19 -0
  6. pyaac-0.1.0/include/eigen-5.0.0/.git-blame-ignore-revs +4 -0
  7. pyaac-0.1.0/include/eigen-5.0.0/.gitattributes +3 -0
  8. pyaac-0.1.0/include/eigen-5.0.0/.gitignore +41 -0
  9. pyaac-0.1.0/include/eigen-5.0.0/.gitlab/issue_templates/Bug Report.md +69 -0
  10. pyaac-0.1.0/include/eigen-5.0.0/.gitlab/issue_templates/Feature Request.md +7 -0
  11. pyaac-0.1.0/include/eigen-5.0.0/.gitlab/merge_request_templates/Merge Request Template.md +26 -0
  12. pyaac-0.1.0/include/eigen-5.0.0/.gitlab-ci.yml +34 -0
  13. pyaac-0.1.0/include/eigen-5.0.0/CHANGELOG.md +1905 -0
  14. pyaac-0.1.0/include/eigen-5.0.0/CMakeLists.txt +806 -0
  15. pyaac-0.1.0/include/eigen-5.0.0/COPYING.APACHE +203 -0
  16. pyaac-0.1.0/include/eigen-5.0.0/COPYING.BSD +26 -0
  17. pyaac-0.1.0/include/eigen-5.0.0/COPYING.MINPACK +51 -0
  18. pyaac-0.1.0/include/eigen-5.0.0/COPYING.MPL2 +373 -0
  19. pyaac-0.1.0/include/eigen-5.0.0/COPYING.README +6 -0
  20. pyaac-0.1.0/include/eigen-5.0.0/CTestConfig.cmake +17 -0
  21. pyaac-0.1.0/include/eigen-5.0.0/CTestCustom.cmake.in +4 -0
  22. pyaac-0.1.0/include/eigen-5.0.0/Eigen/AccelerateSupport +52 -0
  23. pyaac-0.1.0/include/eigen-5.0.0/Eigen/Cholesky +43 -0
  24. pyaac-0.1.0/include/eigen-5.0.0/Eigen/CholmodSupport +48 -0
  25. pyaac-0.1.0/include/eigen-5.0.0/Eigen/Core +446 -0
  26. pyaac-0.1.0/include/eigen-5.0.0/Eigen/Dense +7 -0
  27. pyaac-0.1.0/include/eigen-5.0.0/Eigen/Eigen +2 -0
  28. pyaac-0.1.0/include/eigen-5.0.0/Eigen/Eigenvalues +63 -0
  29. pyaac-0.1.0/include/eigen-5.0.0/Eigen/Geometry +59 -0
  30. pyaac-0.1.0/include/eigen-5.0.0/Eigen/Householder +31 -0
  31. pyaac-0.1.0/include/eigen-5.0.0/Eigen/IterativeLinearSolvers +52 -0
  32. pyaac-0.1.0/include/eigen-5.0.0/Eigen/Jacobi +33 -0
  33. pyaac-0.1.0/include/eigen-5.0.0/Eigen/KLUSupport +43 -0
  34. pyaac-0.1.0/include/eigen-5.0.0/Eigen/LU +46 -0
  35. pyaac-0.1.0/include/eigen-5.0.0/Eigen/MetisSupport +35 -0
  36. pyaac-0.1.0/include/eigen-5.0.0/Eigen/OrderingMethods +73 -0
  37. pyaac-0.1.0/include/eigen-5.0.0/Eigen/PaStiXSupport +51 -0
  38. pyaac-0.1.0/include/eigen-5.0.0/Eigen/PardisoSupport +38 -0
  39. pyaac-0.1.0/include/eigen-5.0.0/Eigen/QR +48 -0
  40. pyaac-0.1.0/include/eigen-5.0.0/Eigen/QtAlignedMalloc +32 -0
  41. pyaac-0.1.0/include/eigen-5.0.0/Eigen/SPQRSupport +41 -0
  42. pyaac-0.1.0/include/eigen-5.0.0/Eigen/SVD +56 -0
  43. pyaac-0.1.0/include/eigen-5.0.0/Eigen/Sparse +33 -0
  44. pyaac-0.1.0/include/eigen-5.0.0/Eigen/SparseCholesky +40 -0
  45. pyaac-0.1.0/include/eigen-5.0.0/Eigen/SparseCore +70 -0
  46. pyaac-0.1.0/include/eigen-5.0.0/Eigen/SparseLU +50 -0
  47. pyaac-0.1.0/include/eigen-5.0.0/Eigen/SparseQR +38 -0
  48. pyaac-0.1.0/include/eigen-5.0.0/Eigen/StdDeque +30 -0
  49. pyaac-0.1.0/include/eigen-5.0.0/Eigen/StdList +29 -0
  50. pyaac-0.1.0/include/eigen-5.0.0/Eigen/StdVector +30 -0
  51. pyaac-0.1.0/include/eigen-5.0.0/Eigen/SuperLUSupport +70 -0
  52. pyaac-0.1.0/include/eigen-5.0.0/Eigen/ThreadPool +80 -0
  53. pyaac-0.1.0/include/eigen-5.0.0/Eigen/UmfPackSupport +42 -0
  54. pyaac-0.1.0/include/eigen-5.0.0/Eigen/Version +14 -0
  55. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/AccelerateSupport/AccelerateSupport.h +423 -0
  56. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/AccelerateSupport/InternalHeaderCheck.h +3 -0
  57. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Cholesky/InternalHeaderCheck.h +3 -0
  58. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Cholesky/LDLT.h +649 -0
  59. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Cholesky/LLT.h +514 -0
  60. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Cholesky/LLT_LAPACKE.h +124 -0
  61. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/CholmodSupport/CholmodSupport.h +738 -0
  62. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/CholmodSupport/InternalHeaderCheck.h +3 -0
  63. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/ArithmeticSequence.h +239 -0
  64. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/Array.h +376 -0
  65. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/ArrayBase.h +213 -0
  66. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/ArrayWrapper.h +165 -0
  67. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/Assign.h +80 -0
  68. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/AssignEvaluator.h +1057 -0
  69. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/Assign_MKL.h +183 -0
  70. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/BandMatrix.h +338 -0
  71. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/Block.h +429 -0
  72. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/CommaInitializer.h +149 -0
  73. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/ConditionEstimator.h +173 -0
  74. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/CoreEvaluators.h +2018 -0
  75. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/CoreIterators.h +141 -0
  76. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/CwiseBinaryOp.h +166 -0
  77. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/CwiseNullaryOp.h +975 -0
  78. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/CwiseTernaryOp.h +171 -0
  79. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/CwiseUnaryOp.h +91 -0
  80. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/CwiseUnaryView.h +167 -0
  81. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/DenseBase.h +673 -0
  82. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/DenseCoeffsBase.h +568 -0
  83. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/DenseStorage.h +578 -0
  84. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/DeviceWrapper.h +153 -0
  85. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/Diagonal.h +219 -0
  86. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/DiagonalMatrix.h +420 -0
  87. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/DiagonalProduct.h +30 -0
  88. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/Dot.h +268 -0
  89. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/EigenBase.h +149 -0
  90. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/Fill.h +140 -0
  91. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/FindCoeff.h +464 -0
  92. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/ForceAlignedAccess.h +127 -0
  93. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/Fuzzy.h +132 -0
  94. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/GeneralProduct.h +519 -0
  95. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/GenericPacketMath.h +1702 -0
  96. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/GlobalFunctions.h +230 -0
  97. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/IO.h +233 -0
  98. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/IndexedView.h +321 -0
  99. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/InnerProduct.h +254 -0
  100. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/InternalHeaderCheck.h +3 -0
  101. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/Inverse.h +108 -0
  102. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/Map.h +153 -0
  103. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/MapBase.h +283 -0
  104. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/MathFunctions.h +2105 -0
  105. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/MathFunctionsImpl.h +263 -0
  106. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/Matrix.h +534 -0
  107. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/MatrixBase.h +545 -0
  108. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/NestByValue.h +91 -0
  109. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/NoAlias.h +102 -0
  110. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/NumTraits.h +335 -0
  111. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/PartialReduxEvaluator.h +253 -0
  112. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/PermutationMatrix.h +552 -0
  113. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/PlainObjectBase.h +1014 -0
  114. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/Product.h +307 -0
  115. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/ProductEvaluators.h +1287 -0
  116. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/Random.h +207 -0
  117. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/RandomImpl.h +262 -0
  118. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/RealView.h +250 -0
  119. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/Redux.h +535 -0
  120. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/Ref.h +383 -0
  121. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/Replicate.h +130 -0
  122. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/Reshaped.h +398 -0
  123. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/ReturnByValue.h +111 -0
  124. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/Reverse.h +202 -0
  125. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/Select.h +92 -0
  126. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/SelfAdjointView.h +329 -0
  127. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/SelfCwiseBinaryOp.h +50 -0
  128. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/SkewSymmetricMatrix3.h +382 -0
  129. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/Solve.h +174 -0
  130. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/SolveTriangular.h +237 -0
  131. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/SolverBase.h +167 -0
  132. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/StableNorm.h +217 -0
  133. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/StlIterators.h +619 -0
  134. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/Stride.h +114 -0
  135. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/Swap.h +99 -0
  136. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/Transpose.h +427 -0
  137. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/Transpositions.h +323 -0
  138. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/TriangularMatrix.h +900 -0
  139. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/VectorBlock.h +83 -0
  140. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/VectorwiseOp.h +733 -0
  141. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/Visitor.h +537 -0
  142. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/AVX/Complex.h +565 -0
  143. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/AVX/MathFunctions.h +130 -0
  144. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/AVX/PacketMath.h +3081 -0
  145. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/AVX/Reductions.h +353 -0
  146. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/AVX/TypeCasting.h +308 -0
  147. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/AVX512/Complex.h +472 -0
  148. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/AVX512/GemmKernel.h +1245 -0
  149. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/AVX512/MathFunctions.h +141 -0
  150. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/AVX512/MathFunctionsFP16.h +75 -0
  151. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/AVX512/PacketMath.h +3146 -0
  152. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/AVX512/PacketMathFP16.h +1413 -0
  153. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/AVX512/Reductions.h +297 -0
  154. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/AVX512/TrsmKernel.h +1167 -0
  155. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/AVX512/TrsmUnrolls.inc +1219 -0
  156. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/AVX512/TypeCasting.h +277 -0
  157. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/AVX512/TypeCastingFP16.h +130 -0
  158. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/AltiVec/Complex.h +653 -0
  159. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/AltiVec/MathFunctions.h +81 -0
  160. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/AltiVec/MatrixProduct.h +3686 -0
  161. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/AltiVec/MatrixProductCommon.h +205 -0
  162. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/AltiVec/MatrixProductMMA.h +901 -0
  163. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/AltiVec/MatrixProductMMAbfloat16.h +742 -0
  164. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/AltiVec/MatrixVectorProduct.inc +2818 -0
  165. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/AltiVec/PacketMath.h +3729 -0
  166. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/AltiVec/TypeCasting.h +153 -0
  167. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/Default/BFloat16.h +866 -0
  168. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/Default/ConjHelper.h +128 -0
  169. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/Default/GenericPacketMathFunctions.h +2634 -0
  170. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/Default/GenericPacketMathFunctionsFwd.h +227 -0
  171. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/Default/Half.h +1091 -0
  172. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/Default/Settings.h +47 -0
  173. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/GPU/Complex.h +244 -0
  174. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/GPU/MathFunctions.h +104 -0
  175. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/GPU/PacketMath.h +1712 -0
  176. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/GPU/Tuple.h +268 -0
  177. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/GPU/TypeCasting.h +77 -0
  178. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/HIP/hcc/math_constants.h +23 -0
  179. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/HVX/PacketMath.h +1088 -0
  180. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/LSX/Complex.h +520 -0
  181. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/LSX/GeneralBlockPanelKernel.h +23 -0
  182. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/LSX/MathFunctions.h +43 -0
  183. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/LSX/PacketMath.h +2866 -0
  184. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/LSX/TypeCasting.h +526 -0
  185. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/MSA/Complex.h +620 -0
  186. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/MSA/MathFunctions.h +379 -0
  187. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/MSA/PacketMath.h +1237 -0
  188. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/NEON/Complex.h +732 -0
  189. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/NEON/GeneralBlockPanelKernel.h +243 -0
  190. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/NEON/MathFunctions.h +68 -0
  191. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/NEON/PacketMath.h +6130 -0
  192. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/NEON/TypeCasting.h +1642 -0
  193. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/NEON/UnaryFunctors.h +57 -0
  194. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/SSE/Complex.h +503 -0
  195. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/SSE/MathFunctions.h +88 -0
  196. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/SSE/PacketMath.h +2384 -0
  197. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/SSE/Reductions.h +324 -0
  198. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/SSE/TypeCasting.h +230 -0
  199. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/SVE/MathFunctions.h +48 -0
  200. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/SVE/PacketMath.h +674 -0
  201. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/SVE/TypeCasting.h +52 -0
  202. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/SYCL/InteropHeaders.h +227 -0
  203. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/SYCL/MathFunctions.h +303 -0
  204. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/SYCL/PacketMath.h +576 -0
  205. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/SYCL/TypeCasting.h +83 -0
  206. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/ZVector/Complex.h +570 -0
  207. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/ZVector/MathFunctions.h +244 -0
  208. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/ZVector/PacketMath.h +1413 -0
  209. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/functors/AssignmentFunctors.h +174 -0
  210. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/functors/BinaryFunctors.h +747 -0
  211. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/functors/NullaryFunctors.h +274 -0
  212. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/functors/StlFunctors.h +149 -0
  213. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/functors/TernaryFunctors.h +52 -0
  214. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/functors/UnaryFunctors.h +1420 -0
  215. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/products/GeneralBlockPanelKernel.h +3153 -0
  216. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/products/GeneralMatrixMatrix.h +459 -0
  217. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h +330 -0
  218. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/products/GeneralMatrixMatrixTriangular_BLAS.h +148 -0
  219. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/products/GeneralMatrixMatrix_BLAS.h +205 -0
  220. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/products/GeneralMatrixVector.h +473 -0
  221. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/products/GeneralMatrixVector_BLAS.h +139 -0
  222. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/products/Parallelizer.h +282 -0
  223. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/products/SelfadjointMatrixMatrix.h +483 -0
  224. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/products/SelfadjointMatrixMatrix_BLAS.h +277 -0
  225. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/products/SelfadjointMatrixVector.h +253 -0
  226. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/products/SelfadjointMatrixVector_BLAS.h +115 -0
  227. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/products/SelfadjointProduct.h +133 -0
  228. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/products/SelfadjointRank2Update.h +95 -0
  229. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/products/TriangularMatrixMatrix.h +397 -0
  230. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/products/TriangularMatrixMatrix_BLAS.h +325 -0
  231. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/products/TriangularMatrixVector.h +347 -0
  232. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/products/TriangularMatrixVector_BLAS.h +275 -0
  233. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/products/TriangularSolverMatrix.h +388 -0
  234. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/products/TriangularSolverMatrix_BLAS.h +166 -0
  235. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/products/TriangularSolverVector.h +122 -0
  236. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/util/Assert.h +158 -0
  237. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/util/BlasUtil.h +622 -0
  238. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/util/ConfigureVectorization.h +543 -0
  239. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/util/Constants.h +598 -0
  240. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/util/DisableStupidWarnings.h +146 -0
  241. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/util/EmulateArray.h +270 -0
  242. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/util/ForwardDeclarations.h +524 -0
  243. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/util/GpuHipCudaDefines.inc +101 -0
  244. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/util/GpuHipCudaUndefines.inc +45 -0
  245. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/util/IndexedViewHelper.h +487 -0
  246. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/util/IntegralConstant.h +279 -0
  247. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/util/MKL_support.h +139 -0
  248. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/util/Macros.h +1326 -0
  249. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/util/MaxSizeVector.h +139 -0
  250. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/util/Memory.h +1361 -0
  251. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/util/Meta.h +760 -0
  252. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/util/MoreMeta.h +638 -0
  253. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/util/ReenableStupidWarnings.h +44 -0
  254. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/util/ReshapedHelper.h +51 -0
  255. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/util/Serializer.h +209 -0
  256. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/util/StaticAssert.h +105 -0
  257. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/util/SymbolicIndex.h +445 -0
  258. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/util/XprHelper.h +1093 -0
  259. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Eigenvalues/ComplexEigenSolver.h +315 -0
  260. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Eigenvalues/ComplexSchur.h +442 -0
  261. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Eigenvalues/ComplexSchur_LAPACKE.h +95 -0
  262. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Eigenvalues/EigenSolver.h +579 -0
  263. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Eigenvalues/GeneralizedEigenSolver.h +402 -0
  264. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Eigenvalues/GeneralizedSelfAdjointEigenSolver.h +212 -0
  265. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Eigenvalues/HessenbergDecomposition.h +356 -0
  266. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Eigenvalues/InternalHeaderCheck.h +3 -0
  267. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Eigenvalues/MatrixBaseEigenvalues.h +142 -0
  268. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Eigenvalues/RealQZ.h +587 -0
  269. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Eigenvalues/RealSchur.h +519 -0
  270. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Eigenvalues/RealSchur_LAPACKE.h +83 -0
  271. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h +850 -0
  272. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Eigenvalues/SelfAdjointEigenSolver_LAPACKE.h +90 -0
  273. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Eigenvalues/Tridiagonalization.h +529 -0
  274. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Geometry/AlignedBox.h +485 -0
  275. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Geometry/AngleAxis.h +245 -0
  276. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Geometry/EulerAngles.h +203 -0
  277. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Geometry/Homogeneous.h +453 -0
  278. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Geometry/Hyperplane.h +273 -0
  279. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Geometry/InternalHeaderCheck.h +3 -0
  280. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Geometry/OrthoMethods.h +257 -0
  281. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Geometry/ParametrizedLine.h +232 -0
  282. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Geometry/Quaternion.h +930 -0
  283. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Geometry/Rotation2D.h +201 -0
  284. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Geometry/RotationBase.h +209 -0
  285. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Geometry/Scaling.h +195 -0
  286. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Geometry/Transform.h +1485 -0
  287. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Geometry/Translation.h +204 -0
  288. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Geometry/Umeyama.h +161 -0
  289. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Geometry/arch/Geometry_SIMD.h +154 -0
  290. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Householder/BlockHouseholder.h +115 -0
  291. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Householder/Householder.h +155 -0
  292. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Householder/HouseholderSequence.h +504 -0
  293. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Householder/InternalHeaderCheck.h +3 -0
  294. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/IterativeLinearSolvers/BasicPreconditioners.h +213 -0
  295. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/IterativeLinearSolvers/BiCGSTAB.h +217 -0
  296. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/IterativeLinearSolvers/ConjugateGradient.h +217 -0
  297. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/IterativeLinearSolvers/IncompleteCholesky.h +402 -0
  298. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/IterativeLinearSolvers/IncompleteLUT.h +449 -0
  299. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/IterativeLinearSolvers/InternalHeaderCheck.h +3 -0
  300. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/IterativeLinearSolvers/IterativeSolverBase.h +395 -0
  301. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/IterativeLinearSolvers/LeastSquareConjugateGradient.h +193 -0
  302. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/IterativeLinearSolvers/SolveWithGuess.h +111 -0
  303. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Jacobi/InternalHeaderCheck.h +3 -0
  304. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Jacobi/Jacobi.h +427 -0
  305. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/KLUSupport/InternalHeaderCheck.h +3 -0
  306. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/KLUSupport/KLUSupport.h +339 -0
  307. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/LU/Determinant.h +98 -0
  308. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/LU/FullPivLU.h +826 -0
  309. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/LU/InternalHeaderCheck.h +3 -0
  310. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/LU/InverseImpl.h +353 -0
  311. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/LU/PartialPivLU.h +586 -0
  312. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/LU/PartialPivLU_LAPACKE.h +97 -0
  313. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/LU/arch/InverseSize4.h +353 -0
  314. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/MetisSupport/InternalHeaderCheck.h +3 -0
  315. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/MetisSupport/MetisSupport.h +125 -0
  316. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/OrderingMethods/Amd.h +413 -0
  317. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/OrderingMethods/Eigen_Colamd.h +1690 -0
  318. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/OrderingMethods/InternalHeaderCheck.h +3 -0
  319. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/OrderingMethods/Ordering.h +146 -0
  320. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/PaStiXSupport/InternalHeaderCheck.h +3 -0
  321. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/PaStiXSupport/PaStiXSupport.h +632 -0
  322. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/PardisoSupport/InternalHeaderCheck.h +3 -0
  323. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/PardisoSupport/PardisoSupport.h +499 -0
  324. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/QR/ColPivHouseholderQR.h +674 -0
  325. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/QR/ColPivHouseholderQR_LAPACKE.h +161 -0
  326. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/QR/CompleteOrthogonalDecomposition.h +648 -0
  327. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/QR/FullPivHouseholderQR.h +733 -0
  328. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/QR/HouseholderQR.h +543 -0
  329. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/QR/HouseholderQR_LAPACKE.h +77 -0
  330. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/QR/InternalHeaderCheck.h +3 -0
  331. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SPQRSupport/InternalHeaderCheck.h +3 -0
  332. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SPQRSupport/SuiteSparseQRSupport.h +315 -0
  333. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SVD/BDCSVD.h +1470 -0
  334. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SVD/BDCSVD_LAPACKE.h +174 -0
  335. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SVD/InternalHeaderCheck.h +3 -0
  336. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SVD/JacobiSVD.h +827 -0
  337. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SVD/JacobiSVD_LAPACKE.h +127 -0
  338. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SVD/SVDBase.h +436 -0
  339. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SVD/UpperBidiagonalization.h +379 -0
  340. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseCholesky/InternalHeaderCheck.h +3 -0
  341. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseCholesky/SimplicialCholesky.h +863 -0
  342. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseCholesky/SimplicialCholesky_impl.h +388 -0
  343. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseCore/AmbiVector.h +329 -0
  344. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseCore/CompressedStorage.h +206 -0
  345. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseCore/ConservativeSparseSparseProduct.h +308 -0
  346. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseCore/InternalHeaderCheck.h +3 -0
  347. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseCore/SparseAssign.h +279 -0
  348. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseCore/SparseBlock.h +534 -0
  349. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseCore/SparseColEtree.h +194 -0
  350. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseCore/SparseCompressedBase.h +591 -0
  351. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseCore/SparseCwiseBinaryOp.h +938 -0
  352. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseCore/SparseCwiseUnaryOp.h +142 -0
  353. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseCore/SparseDenseProduct.h +314 -0
  354. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseCore/SparseDiagonalProduct.h +138 -0
  355. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseCore/SparseDot.h +100 -0
  356. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseCore/SparseFuzzy.h +31 -0
  357. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseCore/SparseMap.h +295 -0
  358. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseCore/SparseMatrix.h +1876 -0
  359. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseCore/SparseMatrixBase.h +451 -0
  360. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseCore/SparsePermutation.h +249 -0
  361. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseCore/SparseProduct.h +178 -0
  362. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseCore/SparseRedux.h +47 -0
  363. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseCore/SparseRef.h +370 -0
  364. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseCore/SparseSelfAdjointView.h +613 -0
  365. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseCore/SparseSolverBase.h +115 -0
  366. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseCore/SparseSparseProductWithPruning.h +184 -0
  367. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseCore/SparseTranspose.h +83 -0
  368. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseCore/SparseTriangularView.h +177 -0
  369. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseCore/SparseUtil.h +209 -0
  370. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseCore/SparseVector.h +532 -0
  371. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseCore/SparseView.h +225 -0
  372. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseCore/TriangularSolver.h +274 -0
  373. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseLU/InternalHeaderCheck.h +3 -0
  374. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseLU/SparseLU.h +969 -0
  375. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseLU/SparseLUImpl.h +79 -0
  376. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseLU/SparseLU_Memory.h +210 -0
  377. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseLU/SparseLU_Structs.h +113 -0
  378. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseLU/SparseLU_SupernodalMatrix.h +319 -0
  379. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseLU/SparseLU_Utils.h +75 -0
  380. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseLU/SparseLU_column_bmod.h +177 -0
  381. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseLU/SparseLU_column_dfs.h +168 -0
  382. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseLU/SparseLU_copy_to_ucol.h +106 -0
  383. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseLU/SparseLU_heap_relax_snode.h +114 -0
  384. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseLU/SparseLU_kernel_bmod.h +133 -0
  385. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseLU/SparseLU_panel_bmod.h +215 -0
  386. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseLU/SparseLU_panel_dfs.h +235 -0
  387. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseLU/SparseLU_pivotL.h +136 -0
  388. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseLU/SparseLU_pruneL.h +130 -0
  389. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseLU/SparseLU_relax_snode.h +81 -0
  390. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseQR/InternalHeaderCheck.h +3 -0
  391. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseQR/SparseQR.h +706 -0
  392. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/StlSupport/StdDeque.h +51 -0
  393. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/StlSupport/StdList.h +50 -0
  394. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/StlSupport/StdVector.h +51 -0
  395. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/StlSupport/details.h +82 -0
  396. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SuperLUSupport/InternalHeaderCheck.h +3 -0
  397. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SuperLUSupport/SuperLUSupport.h +927 -0
  398. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/ThreadPool/Barrier.h +70 -0
  399. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/ThreadPool/CoreThreadPoolDevice.h +336 -0
  400. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/ThreadPool/EventCount.h +241 -0
  401. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/ThreadPool/ForkJoin.h +140 -0
  402. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/ThreadPool/InternalHeaderCheck.h +4 -0
  403. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/ThreadPool/NonBlockingThreadPool.h +587 -0
  404. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/ThreadPool/RunQueue.h +230 -0
  405. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/ThreadPool/ThreadCancel.h +21 -0
  406. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/ThreadPool/ThreadEnvironment.h +43 -0
  407. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/ThreadPool/ThreadLocal.h +289 -0
  408. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/ThreadPool/ThreadPoolInterface.h +50 -0
  409. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/ThreadPool/ThreadYield.h +16 -0
  410. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/UmfPackSupport/InternalHeaderCheck.h +3 -0
  411. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/UmfPackSupport/UmfPackSupport.h +606 -0
  412. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/misc/Image.h +80 -0
  413. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/misc/InternalHeaderCheck.h +3 -0
  414. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/misc/Kernel.h +77 -0
  415. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/misc/RealSvd2x2.h +53 -0
  416. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/misc/blas.h +97 -0
  417. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/misc/lapacke.h +10085 -0
  418. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/misc/lapacke_helpers.h +163 -0
  419. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/misc/lapacke_mangling.h +16 -0
  420. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/plugins/ArrayCwiseBinaryOps.inc +344 -0
  421. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/plugins/ArrayCwiseUnaryOps.inc +544 -0
  422. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/plugins/BlockMethods.inc +1370 -0
  423. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/plugins/CommonCwiseBinaryOps.inc +116 -0
  424. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/plugins/CommonCwiseUnaryOps.inc +167 -0
  425. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/plugins/IndexedViewMethods.inc +192 -0
  426. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/plugins/InternalHeaderCheck.inc +3 -0
  427. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/plugins/MatrixCwiseBinaryOps.inc +331 -0
  428. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/plugins/MatrixCwiseUnaryOps.inc +118 -0
  429. pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/plugins/ReshapedMethods.inc +133 -0
  430. pyaac-0.1.0/include/eigen-5.0.0/INSTALL +35 -0
  431. pyaac-0.1.0/include/eigen-5.0.0/LICENSE +373 -0
  432. pyaac-0.1.0/include/eigen-5.0.0/README.md +5 -0
  433. pyaac-0.1.0/include/eigen-5.0.0/bench/BenchSparseUtil.h +129 -0
  434. pyaac-0.1.0/include/eigen-5.0.0/bench/BenchTimer.h +176 -0
  435. pyaac-0.1.0/include/eigen-5.0.0/bench/BenchUtil.h +86 -0
  436. pyaac-0.1.0/include/eigen-5.0.0/bench/README.txt +55 -0
  437. pyaac-0.1.0/include/eigen-5.0.0/bench/analyze-blocking-sizes.cpp +772 -0
  438. pyaac-0.1.0/include/eigen-5.0.0/bench/basicbench.cxxlist +28 -0
  439. pyaac-0.1.0/include/eigen-5.0.0/bench/basicbenchmark.cpp +34 -0
  440. pyaac-0.1.0/include/eigen-5.0.0/bench/basicbenchmark.h +54 -0
  441. pyaac-0.1.0/include/eigen-5.0.0/bench/benchBlasGemm.cpp +199 -0
  442. pyaac-0.1.0/include/eigen-5.0.0/bench/benchCholesky.cpp +124 -0
  443. pyaac-0.1.0/include/eigen-5.0.0/bench/benchEigenSolver.cpp +192 -0
  444. pyaac-0.1.0/include/eigen-5.0.0/bench/benchFFT.cpp +117 -0
  445. pyaac-0.1.0/include/eigen-5.0.0/bench/benchGeometry.cpp +120 -0
  446. pyaac-0.1.0/include/eigen-5.0.0/bench/benchVecAdd.cpp +131 -0
  447. pyaac-0.1.0/include/eigen-5.0.0/bench/bench_gemm.cpp +393 -0
  448. pyaac-0.1.0/include/eigen-5.0.0/bench/bench_move_semantics.cpp +52 -0
  449. pyaac-0.1.0/include/eigen-5.0.0/bench/bench_multi_compilers.sh +28 -0
  450. pyaac-0.1.0/include/eigen-5.0.0/bench/bench_norm.cpp +342 -0
  451. pyaac-0.1.0/include/eigen-5.0.0/bench/bench_reverse.cpp +76 -0
  452. pyaac-0.1.0/include/eigen-5.0.0/bench/bench_sum.cpp +16 -0
  453. pyaac-0.1.0/include/eigen-5.0.0/bench/bench_unrolling +12 -0
  454. pyaac-0.1.0/include/eigen-5.0.0/bench/benchmark-blocking-sizes.cpp +617 -0
  455. pyaac-0.1.0/include/eigen-5.0.0/bench/benchmark.cpp +36 -0
  456. pyaac-0.1.0/include/eigen-5.0.0/bench/benchmarkSlice.cpp +36 -0
  457. pyaac-0.1.0/include/eigen-5.0.0/bench/benchmarkX.cpp +34 -0
  458. pyaac-0.1.0/include/eigen-5.0.0/bench/benchmarkXcwise.cpp +32 -0
  459. pyaac-0.1.0/include/eigen-5.0.0/bench/benchmark_suite +18 -0
  460. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/CMakeLists.txt +107 -0
  461. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/COPYING +340 -0
  462. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/README +154 -0
  463. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/actions/action_aat_product.hh +118 -0
  464. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/actions/action_ata_product.hh +118 -0
  465. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/actions/action_atv_product.hh +120 -0
  466. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/actions/action_axpby.hh +116 -0
  467. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/actions/action_axpy.hh +124 -0
  468. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/actions/action_cholesky.hh +110 -0
  469. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/actions/action_ger.hh +114 -0
  470. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/actions/action_hessenberg.hh +200 -0
  471. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/actions/action_lu_decomp.hh +108 -0
  472. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/actions/action_lu_solve.hh +120 -0
  473. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/actions/action_matrix_matrix_product.hh +124 -0
  474. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/actions/action_matrix_matrix_product_bis.hh +131 -0
  475. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/actions/action_matrix_vector_product.hh +129 -0
  476. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/actions/action_partial_lu.hh +108 -0
  477. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/actions/action_rot.hh +104 -0
  478. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/actions/action_symv.hh +121 -0
  479. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/actions/action_syr2.hh +118 -0
  480. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/actions/action_trisolve.hh +119 -0
  481. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/actions/action_trisolve_matrix.hh +139 -0
  482. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/actions/action_trmm.hh +139 -0
  483. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/actions/basic_actions.hh +20 -0
  484. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/cmake/FindACML.cmake +51 -0
  485. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/cmake/FindATLAS.cmake +31 -0
  486. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/cmake/FindBLAZE.cmake +31 -0
  487. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/cmake/FindBlitz.cmake +40 -0
  488. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/cmake/FindCBLAS.cmake +35 -0
  489. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/cmake/FindGMM.cmake +17 -0
  490. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/cmake/FindMKL.cmake +65 -0
  491. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/cmake/FindMTL4.cmake +31 -0
  492. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/cmake/FindOPENBLAS.cmake +17 -0
  493. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/cmake/FindPackageHandleStandardArgs.cmake +60 -0
  494. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/cmake/FindTvmet.cmake +32 -0
  495. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/cmake/MacroOptionalAddSubdirectory.cmake +31 -0
  496. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/data/CMakeLists.txt +32 -0
  497. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/data/action_settings.txt +19 -0
  498. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/data/gnuplot_common_settings.hh +87 -0
  499. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/data/go_mean +58 -0
  500. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/data/mean.cxx +165 -0
  501. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/data/mk_gnuplot_script.sh +68 -0
  502. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/data/mk_mean_script.sh +52 -0
  503. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/data/mk_new_gnuplot.sh +54 -0
  504. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/data/perlib_plot_settings.txt +16 -0
  505. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/data/regularize.cxx +113 -0
  506. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/data/smooth.cxx +165 -0
  507. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/data/smooth_all.sh +68 -0
  508. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/generic_bench/bench.hh +149 -0
  509. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/generic_bench/bench_parameter.hh +53 -0
  510. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/generic_bench/btl.hh +205 -0
  511. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/generic_bench/init/init_function.hh +35 -0
  512. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/generic_bench/init/init_matrix.hh +61 -0
  513. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/generic_bench/init/init_vector.hh +36 -0
  514. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/generic_bench/static/bench_static.hh +61 -0
  515. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/generic_bench/static/intel_bench_fixed_size.hh +60 -0
  516. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/generic_bench/static/static_size_generator.hh +52 -0
  517. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/generic_bench/timers/STL_perf_analyzer.hh +70 -0
  518. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/generic_bench/timers/STL_timer.hh +75 -0
  519. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/generic_bench/timers/mixed_perf_analyzer.hh +58 -0
  520. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/generic_bench/timers/portable_perf_analyzer.hh +89 -0
  521. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/generic_bench/timers/portable_perf_analyzer_old.hh +110 -0
  522. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/generic_bench/timers/portable_timer.hh +143 -0
  523. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/generic_bench/timers/x86_perf_analyzer.hh +91 -0
  524. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/generic_bench/timers/x86_timer.hh +176 -0
  525. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/generic_bench/utils/size_lin_log.hh +56 -0
  526. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/generic_bench/utils/size_log.hh +50 -0
  527. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/generic_bench/utils/utilities.h +128 -0
  528. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/generic_bench/utils/xy_file.hh +71 -0
  529. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/BLAS/CMakeLists.txt +47 -0
  530. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/BLAS/blas.h +545 -0
  531. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/BLAS/blas_interface.hh +79 -0
  532. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/BLAS/blas_interface_impl.hh +139 -0
  533. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/BLAS/c_interface_base.h +61 -0
  534. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/BLAS/main.cpp +69 -0
  535. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/STL/CMakeLists.txt +2 -0
  536. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/STL/STL_interface.hh +202 -0
  537. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/STL/main.cpp +39 -0
  538. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/blaze/CMakeLists.txt +13 -0
  539. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/blaze/blaze_interface.hh +126 -0
  540. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/blaze/main.cpp +36 -0
  541. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/blitz/CMakeLists.txt +17 -0
  542. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/blitz/blitz_LU_solve_interface.hh +160 -0
  543. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/blitz/blitz_interface.hh +137 -0
  544. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/blitz/btl_blitz.cpp +47 -0
  545. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/blitz/btl_tiny_blitz.cpp +35 -0
  546. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/blitz/tiny_blitz_interface.hh +91 -0
  547. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/eigen2/CMakeLists.txt +19 -0
  548. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/eigen2/btl_tiny_eigen2.cpp +42 -0
  549. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/eigen2/eigen2_interface.hh +159 -0
  550. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/eigen2/main_adv.cpp +41 -0
  551. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/eigen2/main_linear.cpp +30 -0
  552. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/eigen2/main_matmat.cpp +32 -0
  553. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/eigen2/main_vecmat.cpp +33 -0
  554. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/eigen3/CMakeLists.txt +65 -0
  555. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/eigen3/btl_tiny_eigen3.cpp +42 -0
  556. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/eigen3/eigen3_interface.hh +224 -0
  557. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/eigen3/main_adv.cpp +41 -0
  558. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/eigen3/main_linear.cpp +31 -0
  559. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/eigen3/main_matmat.cpp +32 -0
  560. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/eigen3/main_vecmat.cpp +33 -0
  561. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/gmm/CMakeLists.txt +6 -0
  562. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/gmm/gmm_LU_solve_interface.hh +160 -0
  563. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/gmm/gmm_interface.hh +123 -0
  564. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/gmm/main.cpp +47 -0
  565. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/mtl4/.kdbgrc.main +12 -0
  566. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/mtl4/CMakeLists.txt +6 -0
  567. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/mtl4/main.cpp +42 -0
  568. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/mtl4/mtl4_LU_solve_interface.hh +160 -0
  569. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/mtl4/mtl4_interface.hh +124 -0
  570. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/tensors/CMakeLists.txt +44 -0
  571. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/tensors/main_linear.cpp +22 -0
  572. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/tensors/main_matmat.cpp +20 -0
  573. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/tensors/main_vecmat.cpp +20 -0
  574. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/tensors/tensor_interface.hh +98 -0
  575. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/tvmet/CMakeLists.txt +6 -0
  576. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/tvmet/main.cpp +37 -0
  577. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/tvmet/tvmet_interface.hh +86 -0
  578. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/ublas/CMakeLists.txt +7 -0
  579. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/ublas/main.cpp +41 -0
  580. pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/ublas/ublas_interface.hh +125 -0
  581. pyaac-0.1.0/include/eigen-5.0.0/bench/check_cache_queries.cpp +97 -0
  582. pyaac-0.1.0/include/eigen-5.0.0/bench/dense_solvers.cpp +172 -0
  583. pyaac-0.1.0/include/eigen-5.0.0/bench/eig33.cpp +189 -0
  584. pyaac-0.1.0/include/eigen-5.0.0/bench/geometry.cpp +120 -0
  585. pyaac-0.1.0/include/eigen-5.0.0/bench/perf_monitoring/changesets.txt +95 -0
  586. pyaac-0.1.0/include/eigen-5.0.0/bench/perf_monitoring/gemm.cpp +5 -0
  587. pyaac-0.1.0/include/eigen-5.0.0/bench/perf_monitoring/gemm_common.h +61 -0
  588. pyaac-0.1.0/include/eigen-5.0.0/bench/perf_monitoring/gemm_settings.txt +15 -0
  589. pyaac-0.1.0/include/eigen-5.0.0/bench/perf_monitoring/gemm_square_settings.txt +11 -0
  590. pyaac-0.1.0/include/eigen-5.0.0/bench/perf_monitoring/gemv.cpp +5 -0
  591. pyaac-0.1.0/include/eigen-5.0.0/bench/perf_monitoring/gemv_common.h +63 -0
  592. pyaac-0.1.0/include/eigen-5.0.0/bench/perf_monitoring/gemv_settings.txt +11 -0
  593. pyaac-0.1.0/include/eigen-5.0.0/bench/perf_monitoring/gemv_square_settings.txt +13 -0
  594. pyaac-0.1.0/include/eigen-5.0.0/bench/perf_monitoring/gemvt.cpp +5 -0
  595. pyaac-0.1.0/include/eigen-5.0.0/bench/perf_monitoring/lazy_gemm.cpp +115 -0
  596. pyaac-0.1.0/include/eigen-5.0.0/bench/perf_monitoring/lazy_gemm_settings.txt +15 -0
  597. pyaac-0.1.0/include/eigen-5.0.0/bench/perf_monitoring/llt.cpp +10 -0
  598. pyaac-0.1.0/include/eigen-5.0.0/bench/perf_monitoring/make_plot.sh +112 -0
  599. pyaac-0.1.0/include/eigen-5.0.0/bench/perf_monitoring/resources/chart_footer.html +41 -0
  600. pyaac-0.1.0/include/eigen-5.0.0/bench/perf_monitoring/resources/chart_header.html +45 -0
  601. pyaac-0.1.0/include/eigen-5.0.0/bench/perf_monitoring/resources/footer.html +3 -0
  602. pyaac-0.1.0/include/eigen-5.0.0/bench/perf_monitoring/resources/header.html +42 -0
  603. pyaac-0.1.0/include/eigen-5.0.0/bench/perf_monitoring/resources/s1.js +1 -0
  604. pyaac-0.1.0/include/eigen-5.0.0/bench/perf_monitoring/resources/s2.js +1 -0
  605. pyaac-0.1.0/include/eigen-5.0.0/bench/perf_monitoring/run.sh +183 -0
  606. pyaac-0.1.0/include/eigen-5.0.0/bench/perf_monitoring/runall.sh +72 -0
  607. pyaac-0.1.0/include/eigen-5.0.0/bench/perf_monitoring/trmv_lo.cpp +5 -0
  608. pyaac-0.1.0/include/eigen-5.0.0/bench/perf_monitoring/trmv_lot.cpp +7 -0
  609. pyaac-0.1.0/include/eigen-5.0.0/bench/perf_monitoring/trmv_up.cpp +5 -0
  610. pyaac-0.1.0/include/eigen-5.0.0/bench/perf_monitoring/trmv_upt.cpp +7 -0
  611. pyaac-0.1.0/include/eigen-5.0.0/bench/product_threshold.cpp +164 -0
  612. pyaac-0.1.0/include/eigen-5.0.0/bench/quat_slerp.cpp +220 -0
  613. pyaac-0.1.0/include/eigen-5.0.0/bench/quatmul.cpp +44 -0
  614. pyaac-0.1.0/include/eigen-5.0.0/bench/sparse_cholesky.cpp +215 -0
  615. pyaac-0.1.0/include/eigen-5.0.0/bench/sparse_dense_product.cpp +185 -0
  616. pyaac-0.1.0/include/eigen-5.0.0/bench/sparse_lu.cpp +131 -0
  617. pyaac-0.1.0/include/eigen-5.0.0/bench/sparse_product.cpp +310 -0
  618. pyaac-0.1.0/include/eigen-5.0.0/bench/sparse_randomsetter.cpp +125 -0
  619. pyaac-0.1.0/include/eigen-5.0.0/bench/sparse_setter.cpp +440 -0
  620. pyaac-0.1.0/include/eigen-5.0.0/bench/sparse_transpose.cpp +108 -0
  621. pyaac-0.1.0/include/eigen-5.0.0/bench/sparse_trisolver.cpp +215 -0
  622. pyaac-0.1.0/include/eigen-5.0.0/bench/spbench/CMakeLists.txt +92 -0
  623. pyaac-0.1.0/include/eigen-5.0.0/bench/spbench/sp_solver.cpp +129 -0
  624. pyaac-0.1.0/include/eigen-5.0.0/bench/spbench/spbench.dtd +31 -0
  625. pyaac-0.1.0/include/eigen-5.0.0/bench/spbench/spbenchsolver.cpp +82 -0
  626. pyaac-0.1.0/include/eigen-5.0.0/bench/spbench/spbenchsolver.h +565 -0
  627. pyaac-0.1.0/include/eigen-5.0.0/bench/spbench/spbenchstyle.h +93 -0
  628. pyaac-0.1.0/include/eigen-5.0.0/bench/spbench/test_sparseLU.cpp +94 -0
  629. pyaac-0.1.0/include/eigen-5.0.0/bench/spmv.cpp +216 -0
  630. pyaac-0.1.0/include/eigen-5.0.0/bench/tensors/README +26 -0
  631. pyaac-0.1.0/include/eigen-5.0.0/bench/tensors/benchmark.h +45 -0
  632. pyaac-0.1.0/include/eigen-5.0.0/bench/tensors/benchmark_main.cc +231 -0
  633. pyaac-0.1.0/include/eigen-5.0.0/bench/tensors/contraction_benchmarks_cpu.cc +37 -0
  634. pyaac-0.1.0/include/eigen-5.0.0/bench/tensors/eigen_sycl_bench.sh +29 -0
  635. pyaac-0.1.0/include/eigen-5.0.0/bench/tensors/eigen_sycl_bench_contract.sh +7 -0
  636. pyaac-0.1.0/include/eigen-5.0.0/bench/tensors/tensor_benchmarks.h +531 -0
  637. pyaac-0.1.0/include/eigen-5.0.0/bench/tensors/tensor_benchmarks_cpu.cc +165 -0
  638. pyaac-0.1.0/include/eigen-5.0.0/bench/tensors/tensor_benchmarks_fp16_gpu.cu +74 -0
  639. pyaac-0.1.0/include/eigen-5.0.0/bench/tensors/tensor_benchmarks_gpu.cu +72 -0
  640. pyaac-0.1.0/include/eigen-5.0.0/bench/tensors/tensor_benchmarks_sycl.cc +139 -0
  641. pyaac-0.1.0/include/eigen-5.0.0/bench/tensors/tensor_contract_sycl_bench.cc +322 -0
  642. pyaac-0.1.0/include/eigen-5.0.0/bench/vdw_new.cpp +50 -0
  643. pyaac-0.1.0/include/eigen-5.0.0/blas/BandTriangularSolver.h +84 -0
  644. pyaac-0.1.0/include/eigen-5.0.0/blas/CMakeLists.txt +46 -0
  645. pyaac-0.1.0/include/eigen-5.0.0/blas/GeneralRank1Update.h +42 -0
  646. pyaac-0.1.0/include/eigen-5.0.0/blas/PackedSelfadjointProduct.h +52 -0
  647. pyaac-0.1.0/include/eigen-5.0.0/blas/PackedTriangularMatrixVector.h +82 -0
  648. pyaac-0.1.0/include/eigen-5.0.0/blas/PackedTriangularSolverVector.h +76 -0
  649. pyaac-0.1.0/include/eigen-5.0.0/blas/README.txt +6 -0
  650. pyaac-0.1.0/include/eigen-5.0.0/blas/Rank2Update.h +56 -0
  651. pyaac-0.1.0/include/eigen-5.0.0/blas/blas.h +484 -0
  652. pyaac-0.1.0/include/eigen-5.0.0/blas/common.h +153 -0
  653. pyaac-0.1.0/include/eigen-5.0.0/blas/complex_double.cpp +20 -0
  654. pyaac-0.1.0/include/eigen-5.0.0/blas/complex_single.cpp +20 -0
  655. pyaac-0.1.0/include/eigen-5.0.0/blas/double.cpp +43 -0
  656. pyaac-0.1.0/include/eigen-5.0.0/blas/f2c/chbmv.c +456 -0
  657. pyaac-0.1.0/include/eigen-5.0.0/blas/f2c/chpmv.c +407 -0
  658. pyaac-0.1.0/include/eigen-5.0.0/blas/f2c/complexdots.c +73 -0
  659. pyaac-0.1.0/include/eigen-5.0.0/blas/f2c/ctbmv.c +586 -0
  660. pyaac-0.1.0/include/eigen-5.0.0/blas/f2c/datatypes.h +27 -0
  661. pyaac-0.1.0/include/eigen-5.0.0/blas/f2c/drotm.c +213 -0
  662. pyaac-0.1.0/include/eigen-5.0.0/blas/f2c/drotmg.c +293 -0
  663. pyaac-0.1.0/include/eigen-5.0.0/blas/f2c/dsbmv.c +356 -0
  664. pyaac-0.1.0/include/eigen-5.0.0/blas/f2c/dspmv.c +308 -0
  665. pyaac-0.1.0/include/eigen-5.0.0/blas/f2c/dtbmv.c +417 -0
  666. pyaac-0.1.0/include/eigen-5.0.0/blas/f2c/lsame.c +109 -0
  667. pyaac-0.1.0/include/eigen-5.0.0/blas/f2c/srotm.c +212 -0
  668. pyaac-0.1.0/include/eigen-5.0.0/blas/f2c/srotmg.c +293 -0
  669. pyaac-0.1.0/include/eigen-5.0.0/blas/f2c/ssbmv.c +359 -0
  670. pyaac-0.1.0/include/eigen-5.0.0/blas/f2c/sspmv.c +308 -0
  671. pyaac-0.1.0/include/eigen-5.0.0/blas/f2c/stbmv.c +417 -0
  672. pyaac-0.1.0/include/eigen-5.0.0/blas/f2c/zhbmv.c +456 -0
  673. pyaac-0.1.0/include/eigen-5.0.0/blas/f2c/zhpmv.c +407 -0
  674. pyaac-0.1.0/include/eigen-5.0.0/blas/f2c/ztbmv.c +586 -0
  675. pyaac-0.1.0/include/eigen-5.0.0/blas/level1_cplx_impl.h +159 -0
  676. pyaac-0.1.0/include/eigen-5.0.0/blas/level1_impl.h +133 -0
  677. pyaac-0.1.0/include/eigen-5.0.0/blas/level1_real_impl.h +130 -0
  678. pyaac-0.1.0/include/eigen-5.0.0/blas/level2_cplx_impl.h +362 -0
  679. pyaac-0.1.0/include/eigen-5.0.0/blas/level2_impl.h +616 -0
  680. pyaac-0.1.0/include/eigen-5.0.0/blas/level2_real_impl.h +313 -0
  681. pyaac-0.1.0/include/eigen-5.0.0/blas/level3_impl.h +985 -0
  682. pyaac-0.1.0/include/eigen-5.0.0/blas/single.cpp +23 -0
  683. pyaac-0.1.0/include/eigen-5.0.0/blas/testing/CMakeLists.txt +52 -0
  684. pyaac-0.1.0/include/eigen-5.0.0/blas/testing/cblat1.f +724 -0
  685. pyaac-0.1.0/include/eigen-5.0.0/blas/testing/cblat2.dat +35 -0
  686. pyaac-0.1.0/include/eigen-5.0.0/blas/testing/cblat2.f +3279 -0
  687. pyaac-0.1.0/include/eigen-5.0.0/blas/testing/cblat3.dat +23 -0
  688. pyaac-0.1.0/include/eigen-5.0.0/blas/testing/cblat3.f +3492 -0
  689. pyaac-0.1.0/include/eigen-5.0.0/blas/testing/dblat1.f +1065 -0
  690. pyaac-0.1.0/include/eigen-5.0.0/blas/testing/dblat2.dat +34 -0
  691. pyaac-0.1.0/include/eigen-5.0.0/blas/testing/dblat2.f +3176 -0
  692. pyaac-0.1.0/include/eigen-5.0.0/blas/testing/dblat3.dat +20 -0
  693. pyaac-0.1.0/include/eigen-5.0.0/blas/testing/dblat3.f +2873 -0
  694. pyaac-0.1.0/include/eigen-5.0.0/blas/testing/runblastest.sh +45 -0
  695. pyaac-0.1.0/include/eigen-5.0.0/blas/testing/sblat1.f +1021 -0
  696. pyaac-0.1.0/include/eigen-5.0.0/blas/testing/sblat2.dat +34 -0
  697. pyaac-0.1.0/include/eigen-5.0.0/blas/testing/sblat2.f +3176 -0
  698. pyaac-0.1.0/include/eigen-5.0.0/blas/testing/sblat3.dat +20 -0
  699. pyaac-0.1.0/include/eigen-5.0.0/blas/testing/sblat3.f +2873 -0
  700. pyaac-0.1.0/include/eigen-5.0.0/blas/testing/zblat1.f +724 -0
  701. pyaac-0.1.0/include/eigen-5.0.0/blas/testing/zblat2.dat +35 -0
  702. pyaac-0.1.0/include/eigen-5.0.0/blas/testing/zblat2.f +3287 -0
  703. pyaac-0.1.0/include/eigen-5.0.0/blas/testing/zblat3.dat +23 -0
  704. pyaac-0.1.0/include/eigen-5.0.0/blas/testing/zblat3.f +3502 -0
  705. pyaac-0.1.0/include/eigen-5.0.0/blas/xerbla.cpp +18 -0
  706. pyaac-0.1.0/include/eigen-5.0.0/ci/CTest2JUnit.xsl +120 -0
  707. pyaac-0.1.0/include/eigen-5.0.0/ci/README.md +12 -0
  708. pyaac-0.1.0/include/eigen-5.0.0/ci/build.linux.gitlab-ci.yml +350 -0
  709. pyaac-0.1.0/include/eigen-5.0.0/ci/build.windows.gitlab-ci.yml +110 -0
  710. pyaac-0.1.0/include/eigen-5.0.0/ci/checkformat.gitlab-ci.yml +10 -0
  711. pyaac-0.1.0/include/eigen-5.0.0/ci/common.gitlab-ci.yml +40 -0
  712. pyaac-0.1.0/include/eigen-5.0.0/ci/deploy.gitlab-ci.yml +41 -0
  713. pyaac-0.1.0/include/eigen-5.0.0/ci/scripts/build.linux.script.sh +31 -0
  714. pyaac-0.1.0/include/eigen-5.0.0/ci/scripts/build.windows.script.ps1 +44 -0
  715. pyaac-0.1.0/include/eigen-5.0.0/ci/scripts/build_and_install_doxygen.sh +6 -0
  716. pyaac-0.1.0/include/eigen-5.0.0/ci/scripts/common.linux.before_script.sh +46 -0
  717. pyaac-0.1.0/include/eigen-5.0.0/ci/scripts/common.windows.before_script.ps1 +8 -0
  718. pyaac-0.1.0/include/eigen-5.0.0/ci/scripts/test.linux.after_script.sh +19 -0
  719. pyaac-0.1.0/include/eigen-5.0.0/ci/scripts/test.linux.script.sh +31 -0
  720. pyaac-0.1.0/include/eigen-5.0.0/ci/scripts/test.windows.after_script.ps1 +17 -0
  721. pyaac-0.1.0/include/eigen-5.0.0/ci/scripts/test.windows.script.ps1 +30 -0
  722. pyaac-0.1.0/include/eigen-5.0.0/ci/scripts/vars.linux.sh +14 -0
  723. pyaac-0.1.0/include/eigen-5.0.0/ci/scripts/vars.windows.ps1 +11 -0
  724. pyaac-0.1.0/include/eigen-5.0.0/ci/test.linux.gitlab-ci.yml +452 -0
  725. pyaac-0.1.0/include/eigen-5.0.0/ci/test.windows.gitlab-ci.yml +109 -0
  726. pyaac-0.1.0/include/eigen-5.0.0/cmake/ComputeCppCompilerChecks.cmake +50 -0
  727. pyaac-0.1.0/include/eigen-5.0.0/cmake/ComputeCppIRMap.cmake +18 -0
  728. pyaac-0.1.0/include/eigen-5.0.0/cmake/Eigen3Config.cmake.in +8 -0
  729. pyaac-0.1.0/include/eigen-5.0.0/cmake/Eigen3ConfigVersion.cmake.in +91 -0
  730. pyaac-0.1.0/include/eigen-5.0.0/cmake/EigenConfigureTesting.cmake +74 -0
  731. pyaac-0.1.0/include/eigen-5.0.0/cmake/EigenSmokeTestList.cmake +136 -0
  732. pyaac-0.1.0/include/eigen-5.0.0/cmake/EigenTesting.cmake +768 -0
  733. pyaac-0.1.0/include/eigen-5.0.0/cmake/EigenUninstall.cmake +40 -0
  734. pyaac-0.1.0/include/eigen-5.0.0/cmake/FindAccelerate.cmake +28 -0
  735. pyaac-0.1.0/include/eigen-5.0.0/cmake/FindAdolc.cmake +20 -0
  736. pyaac-0.1.0/include/eigen-5.0.0/cmake/FindBLASEXT.cmake +384 -0
  737. pyaac-0.1.0/include/eigen-5.0.0/cmake/FindCHOLMOD.cmake +89 -0
  738. pyaac-0.1.0/include/eigen-5.0.0/cmake/FindCLANG_FORMAT.cmake +61 -0
  739. pyaac-0.1.0/include/eigen-5.0.0/cmake/FindComputeCpp.cmake +455 -0
  740. pyaac-0.1.0/include/eigen-5.0.0/cmake/FindDPCPP.cmake +62 -0
  741. pyaac-0.1.0/include/eigen-5.0.0/cmake/FindFFTW.cmake +120 -0
  742. pyaac-0.1.0/include/eigen-5.0.0/cmake/FindGMP.cmake +21 -0
  743. pyaac-0.1.0/include/eigen-5.0.0/cmake/FindGoogleHash.cmake +23 -0
  744. pyaac-0.1.0/include/eigen-5.0.0/cmake/FindHWLOC.cmake +332 -0
  745. pyaac-0.1.0/include/eigen-5.0.0/cmake/FindKLU.cmake +48 -0
  746. pyaac-0.1.0/include/eigen-5.0.0/cmake/FindMPFR.cmake +83 -0
  747. pyaac-0.1.0/include/eigen-5.0.0/cmake/FindMPREAL.cmake +103 -0
  748. pyaac-0.1.0/include/eigen-5.0.0/cmake/FindMetis.cmake +265 -0
  749. pyaac-0.1.0/include/eigen-5.0.0/cmake/FindPASTIX.cmake +704 -0
  750. pyaac-0.1.0/include/eigen-5.0.0/cmake/FindPTSCOTCH.cmake +422 -0
  751. pyaac-0.1.0/include/eigen-5.0.0/cmake/FindSCOTCH.cmake +370 -0
  752. pyaac-0.1.0/include/eigen-5.0.0/cmake/FindSPQR.cmake +41 -0
  753. pyaac-0.1.0/include/eigen-5.0.0/cmake/FindStandardMathLibrary.cmake +70 -0
  754. pyaac-0.1.0/include/eigen-5.0.0/cmake/FindSuperLU.cmake +97 -0
  755. pyaac-0.1.0/include/eigen-5.0.0/cmake/FindTriSYCL.cmake +173 -0
  756. pyaac-0.1.0/include/eigen-5.0.0/cmake/FindUMFPACK.cmake +53 -0
  757. pyaac-0.1.0/include/eigen-5.0.0/cmake/RegexUtils.cmake +19 -0
  758. pyaac-0.1.0/include/eigen-5.0.0/cmake/SyclConfigureTesting.cmake +64 -0
  759. pyaac-0.1.0/include/eigen-5.0.0/cmake/Version.in +14 -0
  760. pyaac-0.1.0/include/eigen-5.0.0/debug/gdb/__init__.py +1 -0
  761. pyaac-0.1.0/include/eigen-5.0.0/debug/gdb/printers.py +338 -0
  762. pyaac-0.1.0/include/eigen-5.0.0/debug/lldb/eigenlldb.py +234 -0
  763. pyaac-0.1.0/include/eigen-5.0.0/debug/msvc/eigen.natvis +235 -0
  764. pyaac-0.1.0/include/eigen-5.0.0/debug/msvc/eigen_autoexp_part.dat +295 -0
  765. pyaac-0.1.0/include/eigen-5.0.0/demos/CMakeLists.txt +13 -0
  766. pyaac-0.1.0/include/eigen-5.0.0/demos/mandelbrot/CMakeLists.txt +21 -0
  767. pyaac-0.1.0/include/eigen-5.0.0/demos/mandelbrot/README +10 -0
  768. pyaac-0.1.0/include/eigen-5.0.0/demos/mandelbrot/mandelbrot.cpp +196 -0
  769. pyaac-0.1.0/include/eigen-5.0.0/demos/mandelbrot/mandelbrot.h +67 -0
  770. pyaac-0.1.0/include/eigen-5.0.0/demos/mix_eigen_and_c/README +9 -0
  771. pyaac-0.1.0/include/eigen-5.0.0/demos/mix_eigen_and_c/binary_library.cpp +103 -0
  772. pyaac-0.1.0/include/eigen-5.0.0/demos/mix_eigen_and_c/binary_library.h +55 -0
  773. pyaac-0.1.0/include/eigen-5.0.0/demos/mix_eigen_and_c/example.c +61 -0
  774. pyaac-0.1.0/include/eigen-5.0.0/demos/opengl/CMakeLists.txt +28 -0
  775. pyaac-0.1.0/include/eigen-5.0.0/demos/opengl/README +13 -0
  776. pyaac-0.1.0/include/eigen-5.0.0/demos/opengl/camera.cpp +219 -0
  777. pyaac-0.1.0/include/eigen-5.0.0/demos/opengl/camera.h +111 -0
  778. pyaac-0.1.0/include/eigen-5.0.0/demos/opengl/gpuhelper.cpp +127 -0
  779. pyaac-0.1.0/include/eigen-5.0.0/demos/opengl/gpuhelper.h +187 -0
  780. pyaac-0.1.0/include/eigen-5.0.0/demos/opengl/icosphere.cpp +105 -0
  781. pyaac-0.1.0/include/eigen-5.0.0/demos/opengl/icosphere.h +30 -0
  782. pyaac-0.1.0/include/eigen-5.0.0/demos/opengl/quaternion_demo.cpp +587 -0
  783. pyaac-0.1.0/include/eigen-5.0.0/demos/opengl/quaternion_demo.h +100 -0
  784. pyaac-0.1.0/include/eigen-5.0.0/demos/opengl/trackball.cpp +51 -0
  785. pyaac-0.1.0/include/eigen-5.0.0/demos/opengl/trackball.h +41 -0
  786. pyaac-0.1.0/include/eigen-5.0.0/doc/AsciiQuickReference.txt +228 -0
  787. pyaac-0.1.0/include/eigen-5.0.0/doc/B01_Experimental.dox +52 -0
  788. pyaac-0.1.0/include/eigen-5.0.0/doc/CMakeLists.txt +122 -0
  789. pyaac-0.1.0/include/eigen-5.0.0/doc/ClassHierarchy.dox +129 -0
  790. pyaac-0.1.0/include/eigen-5.0.0/doc/CoeffwiseMathFunctionsTable.dox +613 -0
  791. pyaac-0.1.0/include/eigen-5.0.0/doc/CustomizingEigen_CustomScalar.dox +121 -0
  792. pyaac-0.1.0/include/eigen-5.0.0/doc/CustomizingEigen_InheritingMatrix.dox +34 -0
  793. pyaac-0.1.0/include/eigen-5.0.0/doc/CustomizingEigen_NullaryExpr.dox +86 -0
  794. pyaac-0.1.0/include/eigen-5.0.0/doc/CustomizingEigen_Plugins.dox +69 -0
  795. pyaac-0.1.0/include/eigen-5.0.0/doc/DenseDecompositionBenchmark.dox +42 -0
  796. pyaac-0.1.0/include/eigen-5.0.0/doc/Doxyfile.in +178 -0
  797. pyaac-0.1.0/include/eigen-5.0.0/doc/Eigen_Silly_Professor_64x64.png +0 -0
  798. pyaac-0.1.0/include/eigen-5.0.0/doc/FixedSizeVectorizable.dox +38 -0
  799. pyaac-0.1.0/include/eigen-5.0.0/doc/FunctionsTakingEigenTypes.dox +217 -0
  800. pyaac-0.1.0/include/eigen-5.0.0/doc/HiPerformance.dox +128 -0
  801. pyaac-0.1.0/include/eigen-5.0.0/doc/InplaceDecomposition.dox +115 -0
  802. pyaac-0.1.0/include/eigen-5.0.0/doc/InsideEigenExample.dox +500 -0
  803. pyaac-0.1.0/include/eigen-5.0.0/doc/LeastSquares.dox +75 -0
  804. pyaac-0.1.0/include/eigen-5.0.0/doc/Manual.dox +191 -0
  805. pyaac-0.1.0/include/eigen-5.0.0/doc/MatrixfreeSolverExample.dox +20 -0
  806. pyaac-0.1.0/include/eigen-5.0.0/doc/NewExpressionType.dox +143 -0
  807. pyaac-0.1.0/include/eigen-5.0.0/doc/Overview.dox +32 -0
  808. pyaac-0.1.0/include/eigen-5.0.0/doc/PassingByValue.dox +40 -0
  809. pyaac-0.1.0/include/eigen-5.0.0/doc/Pitfalls.dox +149 -0
  810. pyaac-0.1.0/include/eigen-5.0.0/doc/PreprocessorDirectives.dox +165 -0
  811. pyaac-0.1.0/include/eigen-5.0.0/doc/QuickReference.dox +808 -0
  812. pyaac-0.1.0/include/eigen-5.0.0/doc/QuickStartGuide.dox +100 -0
  813. pyaac-0.1.0/include/eigen-5.0.0/doc/SparseLinearSystems.dox +228 -0
  814. pyaac-0.1.0/include/eigen-5.0.0/doc/SparseQuickReference.dox +273 -0
  815. pyaac-0.1.0/include/eigen-5.0.0/doc/StlContainers.dox +73 -0
  816. pyaac-0.1.0/include/eigen-5.0.0/doc/StorageOrders.dox +86 -0
  817. pyaac-0.1.0/include/eigen-5.0.0/doc/StructHavingEigenMembers.dox +203 -0
  818. pyaac-0.1.0/include/eigen-5.0.0/doc/TemplateKeyword.dox +133 -0
  819. pyaac-0.1.0/include/eigen-5.0.0/doc/TopicAliasing.dox +237 -0
  820. pyaac-0.1.0/include/eigen-5.0.0/doc/TopicAssertions.dox +108 -0
  821. pyaac-0.1.0/include/eigen-5.0.0/doc/TopicCMakeGuide.dox +65 -0
  822. pyaac-0.1.0/include/eigen-5.0.0/doc/TopicEigenExpressionTemplates.dox +12 -0
  823. pyaac-0.1.0/include/eigen-5.0.0/doc/TopicLazyEvaluation.dox +97 -0
  824. pyaac-0.1.0/include/eigen-5.0.0/doc/TopicLinearAlgebraDecompositions.dox +287 -0
  825. pyaac-0.1.0/include/eigen-5.0.0/doc/TopicMultithreading.dox +67 -0
  826. pyaac-0.1.0/include/eigen-5.0.0/doc/TopicResizing.dox +11 -0
  827. pyaac-0.1.0/include/eigen-5.0.0/doc/TopicScalarTypes.dox +12 -0
  828. pyaac-0.1.0/include/eigen-5.0.0/doc/TopicVectorization.dox +9 -0
  829. pyaac-0.1.0/include/eigen-5.0.0/doc/TutorialAdvancedInitialization.dox +162 -0
  830. pyaac-0.1.0/include/eigen-5.0.0/doc/TutorialArrayClass.dox +192 -0
  831. pyaac-0.1.0/include/eigen-5.0.0/doc/TutorialBlockOperations.dox +242 -0
  832. pyaac-0.1.0/include/eigen-5.0.0/doc/TutorialGeometry.dox +242 -0
  833. pyaac-0.1.0/include/eigen-5.0.0/doc/TutorialLinearAlgebra.dox +299 -0
  834. pyaac-0.1.0/include/eigen-5.0.0/doc/TutorialMapClass.dox +86 -0
  835. pyaac-0.1.0/include/eigen-5.0.0/doc/TutorialMatrixArithmetic.dox +214 -0
  836. pyaac-0.1.0/include/eigen-5.0.0/doc/TutorialMatrixClass.dox +295 -0
  837. pyaac-0.1.0/include/eigen-5.0.0/doc/TutorialReductionsVisitorsBroadcasting.dox +266 -0
  838. pyaac-0.1.0/include/eigen-5.0.0/doc/TutorialReshape.dox +82 -0
  839. pyaac-0.1.0/include/eigen-5.0.0/doc/TutorialSTL.dox +66 -0
  840. pyaac-0.1.0/include/eigen-5.0.0/doc/TutorialSlicingIndexing.dox +245 -0
  841. pyaac-0.1.0/include/eigen-5.0.0/doc/TutorialSparse.dox +363 -0
  842. pyaac-0.1.0/include/eigen-5.0.0/doc/TutorialSparse_example_details.dox +4 -0
  843. pyaac-0.1.0/include/eigen-5.0.0/doc/UnalignedArrayAssert.dox +133 -0
  844. pyaac-0.1.0/include/eigen-5.0.0/doc/UsingBlasLapackBackends.dox +139 -0
  845. pyaac-0.1.0/include/eigen-5.0.0/doc/UsingIntelMKL.dox +113 -0
  846. pyaac-0.1.0/include/eigen-5.0.0/doc/UsingNVCC.dox +30 -0
  847. pyaac-0.1.0/include/eigen-5.0.0/doc/WrongStackAlignment.dox +56 -0
  848. pyaac-0.1.0/include/eigen-5.0.0/doc/eigendoxy.css +233 -0
  849. pyaac-0.1.0/include/eigen-5.0.0/doc/eigendoxy_footer.html.in +18 -0
  850. pyaac-0.1.0/include/eigen-5.0.0/doc/eigendoxy_header.html.in +82 -0
  851. pyaac-0.1.0/include/eigen-5.0.0/doc/eigendoxy_layout.xml.in +269 -0
  852. pyaac-0.1.0/include/eigen-5.0.0/doc/eigendoxy_tabs.css +59 -0
  853. pyaac-0.1.0/include/eigen-5.0.0/doc/examples/.krazy +2 -0
  854. pyaac-0.1.0/include/eigen-5.0.0/doc/examples/CMakeLists.txt +17 -0
  855. pyaac-0.1.0/include/eigen-5.0.0/doc/examples/CustomizingEigen_Inheritance.cpp +25 -0
  856. pyaac-0.1.0/include/eigen-5.0.0/doc/examples/Cwise_erf.cpp +7 -0
  857. pyaac-0.1.0/include/eigen-5.0.0/doc/examples/Cwise_erfc.cpp +7 -0
  858. pyaac-0.1.0/include/eigen-5.0.0/doc/examples/Cwise_lgamma.cpp +7 -0
  859. pyaac-0.1.0/include/eigen-5.0.0/doc/examples/DenseBase_middleCols_int.cpp +11 -0
  860. pyaac-0.1.0/include/eigen-5.0.0/doc/examples/DenseBase_middleRows_int.cpp +11 -0
  861. pyaac-0.1.0/include/eigen-5.0.0/doc/examples/DenseBase_template_int_middleCols.cpp +11 -0
  862. pyaac-0.1.0/include/eigen-5.0.0/doc/examples/DenseBase_template_int_middleRows.cpp +11 -0
  863. pyaac-0.1.0/include/eigen-5.0.0/doc/examples/QuickStart_example.cpp +13 -0
  864. pyaac-0.1.0/include/eigen-5.0.0/doc/examples/QuickStart_example2_dynamic.cpp +14 -0
  865. pyaac-0.1.0/include/eigen-5.0.0/doc/examples/QuickStart_example2_fixed.cpp +14 -0
  866. pyaac-0.1.0/include/eigen-5.0.0/doc/examples/TemplateKeyword_flexible.cpp +18 -0
  867. pyaac-0.1.0/include/eigen-5.0.0/doc/examples/TemplateKeyword_simple.cpp +18 -0
  868. pyaac-0.1.0/include/eigen-5.0.0/doc/examples/TutorialInplaceLU.cpp +53 -0
  869. pyaac-0.1.0/include/eigen-5.0.0/doc/examples/TutorialLinAlgComputeTwice.cpp +19 -0
  870. pyaac-0.1.0/include/eigen-5.0.0/doc/examples/TutorialLinAlgExComputeSolveError.cpp +12 -0
  871. pyaac-0.1.0/include/eigen-5.0.0/doc/examples/TutorialLinAlgExSolveColPivHouseholderQR.cpp +13 -0
  872. pyaac-0.1.0/include/eigen-5.0.0/doc/examples/TutorialLinAlgExSolveLDLT.cpp +12 -0
  873. pyaac-0.1.0/include/eigen-5.0.0/doc/examples/TutorialLinAlgInverseDeterminant.cpp +10 -0
  874. pyaac-0.1.0/include/eigen-5.0.0/doc/examples/TutorialLinAlgRankRevealing.cpp +14 -0
  875. pyaac-0.1.0/include/eigen-5.0.0/doc/examples/TutorialLinAlgSVDSolve.cpp +11 -0
  876. pyaac-0.1.0/include/eigen-5.0.0/doc/examples/TutorialLinAlgSelfAdjointEigenSolver.cpp +14 -0
  877. pyaac-0.1.0/include/eigen-5.0.0/doc/examples/TutorialLinAlgSetThreshold.cpp +11 -0
  878. pyaac-0.1.0/include/eigen-5.0.0/doc/examples/Tutorial_ArrayClass_accessors.cpp +21 -0
  879. pyaac-0.1.0/include/eigen-5.0.0/doc/examples/Tutorial_ArrayClass_addition.cpp +15 -0
  880. pyaac-0.1.0/include/eigen-5.0.0/doc/examples/Tutorial_ArrayClass_cwise_other.cpp +11 -0
  881. pyaac-0.1.0/include/eigen-5.0.0/doc/examples/Tutorial_ArrayClass_interop.cpp +18 -0
  882. pyaac-0.1.0/include/eigen-5.0.0/doc/examples/Tutorial_ArrayClass_interop_matrix.cpp +22 -0
  883. pyaac-0.1.0/include/eigen-5.0.0/doc/examples/Tutorial_ArrayClass_mult.cpp +10 -0
  884. pyaac-0.1.0/include/eigen-5.0.0/doc/examples/Tutorial_BlockOperations_block_assignment.cpp +13 -0
  885. pyaac-0.1.0/include/eigen-5.0.0/doc/examples/Tutorial_BlockOperations_colrow.cpp +14 -0
  886. pyaac-0.1.0/include/eigen-5.0.0/doc/examples/Tutorial_BlockOperations_corner.cpp +13 -0
  887. pyaac-0.1.0/include/eigen-5.0.0/doc/examples/Tutorial_BlockOperations_print_block.cpp +19 -0
  888. pyaac-0.1.0/include/eigen-5.0.0/doc/examples/Tutorial_BlockOperations_vector.cpp +13 -0
  889. pyaac-0.1.0/include/eigen-5.0.0/doc/examples/Tutorial_PartialLU_solve.cpp +14 -0
  890. pyaac-0.1.0/include/eigen-5.0.0/doc/examples/Tutorial_ReductionsVisitorsBroadcasting_broadcast_1nn.cpp +18 -0
  891. pyaac-0.1.0/include/eigen-5.0.0/doc/examples/Tutorial_ReductionsVisitorsBroadcasting_broadcast_simple.cpp +18 -0
  892. pyaac-0.1.0/include/eigen-5.0.0/doc/examples/Tutorial_ReductionsVisitorsBroadcasting_broadcast_simple_rowwise.cpp +18 -0
  893. pyaac-0.1.0/include/eigen-5.0.0/doc/examples/Tutorial_ReductionsVisitorsBroadcasting_colwise.cpp +10 -0
  894. pyaac-0.1.0/include/eigen-5.0.0/doc/examples/Tutorial_ReductionsVisitorsBroadcasting_maxnorm.cpp +16 -0
  895. pyaac-0.1.0/include/eigen-5.0.0/doc/examples/Tutorial_ReductionsVisitorsBroadcasting_reductions_bool.cpp +16 -0
  896. pyaac-0.1.0/include/eigen-5.0.0/doc/examples/Tutorial_ReductionsVisitorsBroadcasting_reductions_norm.cpp +22 -0
  897. pyaac-0.1.0/include/eigen-5.0.0/doc/examples/Tutorial_ReductionsVisitorsBroadcasting_reductions_operatornorm.cpp +13 -0
  898. pyaac-0.1.0/include/eigen-5.0.0/doc/examples/Tutorial_ReductionsVisitorsBroadcasting_rowwise.cpp +10 -0
  899. pyaac-0.1.0/include/eigen-5.0.0/doc/examples/Tutorial_ReductionsVisitorsBroadcasting_visitors.cpp +19 -0
  900. pyaac-0.1.0/include/eigen-5.0.0/doc/examples/Tutorial_simple_example_dynamic_size.cpp +21 -0
  901. pyaac-0.1.0/include/eigen-5.0.0/doc/examples/Tutorial_simple_example_fixed_size.cpp +11 -0
  902. pyaac-0.1.0/include/eigen-5.0.0/doc/examples/class_Block.cpp +20 -0
  903. pyaac-0.1.0/include/eigen-5.0.0/doc/examples/class_CwiseBinaryOp.cpp +17 -0
  904. pyaac-0.1.0/include/eigen-5.0.0/doc/examples/class_CwiseUnaryOp.cpp +18 -0
  905. pyaac-0.1.0/include/eigen-5.0.0/doc/examples/class_CwiseUnaryOp_ptrfun.cpp +16 -0
  906. pyaac-0.1.0/include/eigen-5.0.0/doc/examples/class_FixedBlock.cpp +20 -0
  907. pyaac-0.1.0/include/eigen-5.0.0/doc/examples/class_FixedReshaped.cpp +16 -0
  908. pyaac-0.1.0/include/eigen-5.0.0/doc/examples/class_FixedVectorBlock.cpp +21 -0
  909. pyaac-0.1.0/include/eigen-5.0.0/doc/examples/class_Reshaped.cpp +16 -0
  910. pyaac-0.1.0/include/eigen-5.0.0/doc/examples/class_VectorBlock.cpp +21 -0
  911. pyaac-0.1.0/include/eigen-5.0.0/doc/examples/function_taking_eigenbase.cpp +14 -0
  912. pyaac-0.1.0/include/eigen-5.0.0/doc/examples/function_taking_ref.cpp +15 -0
  913. pyaac-0.1.0/include/eigen-5.0.0/doc/examples/make_circulant.cpp +11 -0
  914. pyaac-0.1.0/include/eigen-5.0.0/doc/examples/make_circulant.cpp.entry +4 -0
  915. pyaac-0.1.0/include/eigen-5.0.0/doc/examples/make_circulant.cpp.evaluator +24 -0
  916. pyaac-0.1.0/include/eigen-5.0.0/doc/examples/make_circulant.cpp.expression +16 -0
  917. pyaac-0.1.0/include/eigen-5.0.0/doc/examples/make_circulant.cpp.main +7 -0
  918. pyaac-0.1.0/include/eigen-5.0.0/doc/examples/make_circulant.cpp.preamble +5 -0
  919. pyaac-0.1.0/include/eigen-5.0.0/doc/examples/make_circulant.cpp.traits +18 -0
  920. pyaac-0.1.0/include/eigen-5.0.0/doc/examples/make_circulant2.cpp +46 -0
  921. pyaac-0.1.0/include/eigen-5.0.0/doc/examples/matrixfree_cg.cpp +119 -0
  922. pyaac-0.1.0/include/eigen-5.0.0/doc/examples/nullary_indexing.cpp +60 -0
  923. pyaac-0.1.0/include/eigen-5.0.0/doc/examples/tut_arithmetic_add_sub.cpp +17 -0
  924. pyaac-0.1.0/include/eigen-5.0.0/doc/examples/tut_arithmetic_dot_cross.cpp +17 -0
  925. pyaac-0.1.0/include/eigen-5.0.0/doc/examples/tut_arithmetic_matrix_mul.cpp +16 -0
  926. pyaac-0.1.0/include/eigen-5.0.0/doc/examples/tut_arithmetic_redux_basic.cpp +14 -0
  927. pyaac-0.1.0/include/eigen-5.0.0/doc/examples/tut_arithmetic_scalar_mul_div.cpp +13 -0
  928. pyaac-0.1.0/include/eigen-5.0.0/doc/examples/tut_matrix_coefficient_accessors.cpp +15 -0
  929. pyaac-0.1.0/include/eigen-5.0.0/doc/examples/tut_matrix_resize.cpp +13 -0
  930. pyaac-0.1.0/include/eigen-5.0.0/doc/examples/tut_matrix_resize_fixed_size.cpp +8 -0
  931. pyaac-0.1.0/include/eigen-5.0.0/doc/ftv2node.png +0 -0
  932. pyaac-0.1.0/include/eigen-5.0.0/doc/ftv2pnode.png +0 -0
  933. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/.krazy +2 -0
  934. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/AngleAxis_mimic_euler.cpp +4 -0
  935. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Array_initializer_list_23_cxx11.cpp +2 -0
  936. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Array_initializer_list_vector_cxx11.cpp +2 -0
  937. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Array_variadic_ctor_cxx11.cpp +3 -0
  938. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/BiCGSTAB_simple.cpp +11 -0
  939. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/BiCGSTAB_step_by_step.cpp +14 -0
  940. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/CMakeLists.txt +32 -0
  941. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/ColPivHouseholderQR_solve.cpp +8 -0
  942. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/ComplexEigenSolver_compute.cpp +16 -0
  943. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/ComplexEigenSolver_eigenvalues.cpp +3 -0
  944. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/ComplexEigenSolver_eigenvectors.cpp +3 -0
  945. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/ComplexSchur_compute.cpp +6 -0
  946. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/ComplexSchur_matrixT.cpp +4 -0
  947. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/ComplexSchur_matrixU.cpp +4 -0
  948. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_abs.cpp +2 -0
  949. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_abs2.cpp +2 -0
  950. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_acos.cpp +2 -0
  951. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_arg.cpp +3 -0
  952. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_array_atan2_array.cpp +3 -0
  953. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_array_power_array.cpp +3 -0
  954. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_asin.cpp +2 -0
  955. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_atan.cpp +2 -0
  956. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_boolean_and.cpp +2 -0
  957. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_boolean_not.cpp +5 -0
  958. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_boolean_or.cpp +2 -0
  959. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_cbrt.cpp +2 -0
  960. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_ceil.cpp +3 -0
  961. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_cos.cpp +2 -0
  962. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_cosh.cpp +2 -0
  963. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_cube.cpp +2 -0
  964. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_equal_equal.cpp +2 -0
  965. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_exp.cpp +2 -0
  966. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_floor.cpp +3 -0
  967. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_greater.cpp +2 -0
  968. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_greater_equal.cpp +2 -0
  969. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_inverse.cpp +2 -0
  970. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_isFinite.cpp +5 -0
  971. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_isInf.cpp +5 -0
  972. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_isNaN.cpp +5 -0
  973. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_less.cpp +2 -0
  974. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_less_equal.cpp +2 -0
  975. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_log.cpp +2 -0
  976. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_log10.cpp +2 -0
  977. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_max.cpp +2 -0
  978. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_min.cpp +2 -0
  979. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_minus.cpp +2 -0
  980. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_minus_equal.cpp +3 -0
  981. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_not_equal.cpp +2 -0
  982. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_plus.cpp +2 -0
  983. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_plus_equal.cpp +3 -0
  984. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_pow.cpp +2 -0
  985. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_product.cpp +3 -0
  986. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_quotient.cpp +2 -0
  987. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_rint.cpp +3 -0
  988. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_round.cpp +3 -0
  989. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_scalar_power_array.cpp +2 -0
  990. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_sign.cpp +2 -0
  991. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_sin.cpp +2 -0
  992. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_sinh.cpp +2 -0
  993. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_slash_equal.cpp +3 -0
  994. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_sqrt.cpp +2 -0
  995. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_square.cpp +2 -0
  996. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_tan.cpp +2 -0
  997. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_tanh.cpp +2 -0
  998. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_times_equal.cpp +3 -0
  999. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_trunc.cpp +3 -0
  1000. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/DenseBase_LinSpaced.cpp +2 -0
  1001. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/DenseBase_LinSpacedInt.cpp +8 -0
  1002. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/DenseBase_LinSpaced_seq_deprecated.cpp +2 -0
  1003. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/DenseBase_setLinSpaced.cpp +3 -0
  1004. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/DirectionWise_hnormalized.cpp +6 -0
  1005. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/DirectionWise_replicate.cpp +4 -0
  1006. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/DirectionWise_replicate_int.cpp +4 -0
  1007. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/EigenSolver_EigenSolver_MatrixType.cpp +16 -0
  1008. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/EigenSolver_compute.cpp +6 -0
  1009. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/EigenSolver_eigenvalues.cpp +3 -0
  1010. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/EigenSolver_eigenvectors.cpp +3 -0
  1011. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/EigenSolver_pseudoEigenvectors.cpp +9 -0
  1012. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/FullPivHouseholderQR_solve.cpp +8 -0
  1013. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/FullPivLU_image.cpp +7 -0
  1014. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/FullPivLU_kernel.cpp +5 -0
  1015. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/FullPivLU_solve.cpp +9 -0
  1016. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/GeneralizedEigenSolver.cpp +7 -0
  1017. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/HessenbergDecomposition_compute.cpp +6 -0
  1018. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/HessenbergDecomposition_matrixH.cpp +8 -0
  1019. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/HessenbergDecomposition_packedMatrix.cpp +8 -0
  1020. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/HouseholderQR_householderQ.cpp +7 -0
  1021. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/HouseholderQR_solve.cpp +9 -0
  1022. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/HouseholderSequence_HouseholderSequence.cpp +31 -0
  1023. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/IOFormat.cpp +14 -0
  1024. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/JacobiSVD_basic.cpp +9 -0
  1025. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Jacobi_makeGivens.cpp +6 -0
  1026. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Jacobi_makeJacobi.cpp +8 -0
  1027. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/LLT_example.cpp +12 -0
  1028. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/LLT_solve.cpp +7 -0
  1029. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/LeastSquaresNormalEquations.cpp +3 -0
  1030. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/LeastSquaresQR.cpp +3 -0
  1031. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Map_general_stride.cpp +3 -0
  1032. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Map_inner_stride.cpp +4 -0
  1033. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Map_outer_stride.cpp +3 -0
  1034. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Map_placement_new.cpp +5 -0
  1035. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Map_simple.cpp +3 -0
  1036. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_adjoint.cpp +3 -0
  1037. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_all.cpp +7 -0
  1038. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_applyOnTheLeft.cpp +5 -0
  1039. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_applyOnTheRight.cpp +7 -0
  1040. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_array.cpp +4 -0
  1041. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_array_const.cpp +4 -0
  1042. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_asDiagonal.cpp +1 -0
  1043. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_block_int_int.cpp +5 -0
  1044. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_block_int_int_int_int.cpp +5 -0
  1045. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_bottomLeftCorner_int_int.cpp +6 -0
  1046. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_bottomRightCorner_int_int.cpp +6 -0
  1047. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_bottomRows_int.cpp +6 -0
  1048. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_cast.cpp +3 -0
  1049. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_col.cpp +3 -0
  1050. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_colwise.cpp +4 -0
  1051. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_colwise_iterator_cxx11.cpp +11 -0
  1052. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_computeInverseAndDetWithCheck.cpp +12 -0
  1053. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_computeInverseWithCheck.cpp +10 -0
  1054. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_cwiseAbs.cpp +3 -0
  1055. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_cwiseAbs2.cpp +3 -0
  1056. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_cwiseArg.cpp +3 -0
  1057. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_cwiseEqual.cpp +6 -0
  1058. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_cwiseInverse.cpp +3 -0
  1059. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_cwiseMax.cpp +2 -0
  1060. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_cwiseMin.cpp +2 -0
  1061. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_cwiseNotEqual.cpp +6 -0
  1062. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_cwiseProduct.cpp +3 -0
  1063. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_cwiseQuotient.cpp +2 -0
  1064. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_cwiseSign.cpp +3 -0
  1065. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_cwiseSqrt.cpp +2 -0
  1066. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_diagonal.cpp +3 -0
  1067. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_diagonal_int.cpp +5 -0
  1068. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_diagonal_template_int.cpp +5 -0
  1069. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_eigenvalues.cpp +3 -0
  1070. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_end_int.cpp +5 -0
  1071. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_eval.cpp +12 -0
  1072. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_fixedBlock_int_int.cpp +5 -0
  1073. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_hnormalized.cpp +6 -0
  1074. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_homogeneous.cpp +7 -0
  1075. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_identity.cpp +1 -0
  1076. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_identity_int_int.cpp +1 -0
  1077. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_inverse.cpp +3 -0
  1078. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_isDiagonal.cpp +5 -0
  1079. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_isIdentity.cpp +5 -0
  1080. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_isOnes.cpp +5 -0
  1081. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_isOrthogonal.cpp +6 -0
  1082. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_isUnitary.cpp +5 -0
  1083. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_isZero.cpp +5 -0
  1084. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_leftCols_int.cpp +6 -0
  1085. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_noalias.cpp +5 -0
  1086. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_ones.cpp +2 -0
  1087. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_ones_int.cpp +2 -0
  1088. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_ones_int_int.cpp +1 -0
  1089. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_operatorNorm.cpp +2 -0
  1090. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_prod.cpp +3 -0
  1091. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_random.cpp +1 -0
  1092. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_random_int.cpp +1 -0
  1093. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_random_int_int.cpp +1 -0
  1094. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_replicate.cpp +4 -0
  1095. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_replicate_int_int.cpp +4 -0
  1096. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_reshaped_auto.cpp +4 -0
  1097. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_reshaped_fixed.cpp +3 -0
  1098. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_reshaped_int_int.cpp +3 -0
  1099. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_reshaped_to_vector.cpp +4 -0
  1100. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_reverse.cpp +7 -0
  1101. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_rightCols_int.cpp +6 -0
  1102. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_row.cpp +3 -0
  1103. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_rowwise.cpp +4 -0
  1104. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_segment_int_int.cpp +5 -0
  1105. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_select.cpp +4 -0
  1106. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_selfadjointView.cpp +6 -0
  1107. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_set.cpp +10 -0
  1108. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_setIdentity.cpp +3 -0
  1109. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_setOnes.cpp +3 -0
  1110. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_setRandom.cpp +3 -0
  1111. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_setZero.cpp +3 -0
  1112. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_start_int.cpp +5 -0
  1113. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_template_int_bottomRows.cpp +6 -0
  1114. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_template_int_end.cpp +5 -0
  1115. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_template_int_int_block_int_int_int_int.cpp +5 -0
  1116. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_template_int_int_bottomLeftCorner.cpp +6 -0
  1117. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_template_int_int_bottomLeftCorner_int_int.cpp +6 -0
  1118. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_template_int_int_bottomRightCorner.cpp +6 -0
  1119. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_template_int_int_bottomRightCorner_int_int.cpp +6 -0
  1120. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_template_int_int_topLeftCorner.cpp +6 -0
  1121. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_template_int_int_topLeftCorner_int_int.cpp +6 -0
  1122. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_template_int_int_topRightCorner.cpp +6 -0
  1123. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_template_int_int_topRightCorner_int_int.cpp +6 -0
  1124. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_template_int_leftCols.cpp +6 -0
  1125. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_template_int_rightCols.cpp +6 -0
  1126. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_template_int_segment.cpp +5 -0
  1127. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_template_int_start.cpp +5 -0
  1128. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_template_int_topRows.cpp +6 -0
  1129. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_topLeftCorner_int_int.cpp +6 -0
  1130. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_topRightCorner_int_int.cpp +6 -0
  1131. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_topRows_int.cpp +6 -0
  1132. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_transpose.cpp +7 -0
  1133. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_triangularView.cpp +9 -0
  1134. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_zero.cpp +2 -0
  1135. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_zero_int.cpp +2 -0
  1136. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_zero_int_int.cpp +1 -0
  1137. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Matrix_Map_stride.cpp +4 -0
  1138. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Matrix_initializer_list_23_cxx11.cpp +2 -0
  1139. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Matrix_initializer_list_vector_cxx11.cpp +2 -0
  1140. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Matrix_resize_NoChange_int.cpp +3 -0
  1141. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Matrix_resize_int.cpp +6 -0
  1142. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Matrix_resize_int_NoChange.cpp +3 -0
  1143. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Matrix_resize_int_int.cpp +9 -0
  1144. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Matrix_setConstant_int.cpp +3 -0
  1145. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Matrix_setConstant_int_int.cpp +3 -0
  1146. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Matrix_setIdentity_int_int.cpp +3 -0
  1147. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Matrix_setOnes_int.cpp +3 -0
  1148. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Matrix_setOnes_int_int.cpp +3 -0
  1149. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Matrix_setRandom_int.cpp +3 -0
  1150. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Matrix_setRandom_int_int.cpp +3 -0
  1151. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Matrix_setZero_int.cpp +3 -0
  1152. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Matrix_setZero_int_int.cpp +3 -0
  1153. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Matrix_variadic_ctor_cxx11.cpp +3 -0
  1154. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/PartialPivLU_solve.cpp +7 -0
  1155. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/PartialRedux_count.cpp +5 -0
  1156. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/PartialRedux_maxCoeff.cpp +3 -0
  1157. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/PartialRedux_minCoeff.cpp +3 -0
  1158. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/PartialRedux_norm.cpp +3 -0
  1159. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/PartialRedux_prod.cpp +3 -0
  1160. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/PartialRedux_squaredNorm.cpp +3 -0
  1161. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/PartialRedux_sum.cpp +3 -0
  1162. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/RealQZ_compute.cpp +25 -0
  1163. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/RealSchur_RealSchur_MatrixType.cpp +10 -0
  1164. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/RealSchur_compute.cpp +6 -0
  1165. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/SelfAdjointEigenSolver_SelfAdjointEigenSolver.cpp +7 -0
  1166. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/SelfAdjointEigenSolver_SelfAdjointEigenSolver_MatrixType.cpp +17 -0
  1167. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/SelfAdjointEigenSolver_SelfAdjointEigenSolver_MatrixType2.cpp +16 -0
  1168. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/SelfAdjointEigenSolver_compute_MatrixType.cpp +7 -0
  1169. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/SelfAdjointEigenSolver_compute_MatrixType2.cpp +9 -0
  1170. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/SelfAdjointEigenSolver_eigenvalues.cpp +3 -0
  1171. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/SelfAdjointEigenSolver_eigenvectors.cpp +3 -0
  1172. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/SelfAdjointEigenSolver_operatorInverseSqrt.cpp +9 -0
  1173. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/SelfAdjointEigenSolver_operatorSqrt.cpp +8 -0
  1174. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/SelfAdjointView_eigenvalues.cpp +3 -0
  1175. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/SelfAdjointView_operatorNorm.cpp +2 -0
  1176. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Slicing_arrayexpr.cpp +5 -0
  1177. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Slicing_custom_padding_cxx11.cpp +12 -0
  1178. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Slicing_rawarray_cxx11.cpp +3 -0
  1179. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Slicing_stdvector_cxx11.cpp +4 -0
  1180. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/SparseMatrix_coeffs.cpp +9 -0
  1181. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/TopicAliasing_block.cpp +7 -0
  1182. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/TopicAliasing_block_correct.cpp +7 -0
  1183. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/TopicAliasing_cwise.cpp +18 -0
  1184. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/TopicAliasing_mult1.cpp +4 -0
  1185. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/TopicAliasing_mult2.cpp +10 -0
  1186. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/TopicAliasing_mult3.cpp +4 -0
  1187. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/TopicAliasing_mult4.cpp +5 -0
  1188. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/TopicAliasing_mult5.cpp +5 -0
  1189. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/TopicStorageOrders_example.cpp +13 -0
  1190. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Triangular_solve.cpp +10 -0
  1191. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Tridiagonalization_Tridiagonalization_MatrixType.cpp +9 -0
  1192. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Tridiagonalization_compute.cpp +9 -0
  1193. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Tridiagonalization_decomposeInPlace.cpp +12 -0
  1194. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Tridiagonalization_diagonal.cpp +13 -0
  1195. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Tridiagonalization_householderCoefficients.cpp +6 -0
  1196. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Tridiagonalization_packedMatrix.cpp +7 -0
  1197. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Tutorial_AdvancedInitialization_Block.cpp +5 -0
  1198. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Tutorial_AdvancedInitialization_CommaTemporary.cpp +4 -0
  1199. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Tutorial_AdvancedInitialization_Join.cpp +11 -0
  1200. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Tutorial_AdvancedInitialization_LinSpaced.cpp +7 -0
  1201. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Tutorial_AdvancedInitialization_ThreeWays.cpp +19 -0
  1202. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Tutorial_AdvancedInitialization_Zero.cpp +11 -0
  1203. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Tutorial_Map_rowmajor.cpp +5 -0
  1204. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Tutorial_Map_using.cpp +20 -0
  1205. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Tutorial_ReshapeMat2Mat.cpp +5 -0
  1206. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Tutorial_ReshapeMat2Vec.cpp +9 -0
  1207. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Tutorial_SlicingCol.cpp +11 -0
  1208. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Tutorial_SlicingVec.cpp +4 -0
  1209. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Tutorial_commainit_01.cpp +3 -0
  1210. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Tutorial_commainit_01b.cpp +5 -0
  1211. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Tutorial_commainit_02.cpp +5 -0
  1212. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Tutorial_range_for_loop_1d_cxx11.cpp +4 -0
  1213. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Tutorial_range_for_loop_2d_cxx11.cpp +4 -0
  1214. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Tutorial_reshaped_vs_resize_1.cpp +5 -0
  1215. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Tutorial_reshaped_vs_resize_2.cpp +6 -0
  1216. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Tutorial_solve_matrix_inverse.cpp +6 -0
  1217. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Tutorial_solve_multiple_rhs.cpp +10 -0
  1218. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Tutorial_solve_reuse_decomposition.cpp +13 -0
  1219. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Tutorial_solve_singular.cpp +9 -0
  1220. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Tutorial_solve_triangular.cpp +8 -0
  1221. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Tutorial_solve_triangular_inplace.cpp +6 -0
  1222. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Tutorial_std_sort.cpp +4 -0
  1223. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Tutorial_std_sort_rows_cxx11.cpp +4 -0
  1224. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/VectorwiseOp_homogeneous.cpp +8 -0
  1225. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Vectorwise_reverse.cpp +9 -0
  1226. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/class_FullPivLU.cpp +15 -0
  1227. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/compile_snippet.cpp.in +24 -0
  1228. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/tut_arithmetic_redux_minmax.cpp +10 -0
  1229. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/tut_arithmetic_transpose_aliasing.cpp +6 -0
  1230. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/tut_arithmetic_transpose_conjugate.cpp +8 -0
  1231. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/tut_arithmetic_transpose_inplace.cpp +6 -0
  1232. pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/tut_matrix_assignment_resizing.cpp +5 -0
  1233. pyaac-0.1.0/include/eigen-5.0.0/doc/special_examples/CMakeLists.txt +31 -0
  1234. pyaac-0.1.0/include/eigen-5.0.0/doc/special_examples/Tutorial_sparse_example.cpp +36 -0
  1235. pyaac-0.1.0/include/eigen-5.0.0/doc/special_examples/Tutorial_sparse_example_details.cpp +42 -0
  1236. pyaac-0.1.0/include/eigen-5.0.0/doc/special_examples/random_cpp11.cpp +12 -0
  1237. pyaac-0.1.0/include/eigen-5.0.0/doc/tutorial.cpp +61 -0
  1238. pyaac-0.1.0/include/eigen-5.0.0/eigen3.pc.in +9 -0
  1239. pyaac-0.1.0/include/eigen-5.0.0/failtest/CMakeLists.txt +68 -0
  1240. pyaac-0.1.0/include/eigen-5.0.0/failtest/bdcsvd_int.cpp +11 -0
  1241. pyaac-0.1.0/include/eigen-5.0.0/failtest/block_nonconst_ctor_on_const_xpr_0.cpp +13 -0
  1242. pyaac-0.1.0/include/eigen-5.0.0/failtest/block_nonconst_ctor_on_const_xpr_1.cpp +13 -0
  1243. pyaac-0.1.0/include/eigen-5.0.0/failtest/block_nonconst_ctor_on_const_xpr_2.cpp +16 -0
  1244. pyaac-0.1.0/include/eigen-5.0.0/failtest/block_on_const_type_actually_const_0.cpp +16 -0
  1245. pyaac-0.1.0/include/eigen-5.0.0/failtest/block_on_const_type_actually_const_1.cpp +16 -0
  1246. pyaac-0.1.0/include/eigen-5.0.0/failtest/colpivqr_int.cpp +13 -0
  1247. pyaac-0.1.0/include/eigen-5.0.0/failtest/const_qualified_block_method_retval_0.cpp +16 -0
  1248. pyaac-0.1.0/include/eigen-5.0.0/failtest/const_qualified_block_method_retval_1.cpp +16 -0
  1249. pyaac-0.1.0/include/eigen-5.0.0/failtest/const_qualified_diagonal_method_retval.cpp +16 -0
  1250. pyaac-0.1.0/include/eigen-5.0.0/failtest/const_qualified_transpose_method_retval.cpp +16 -0
  1251. pyaac-0.1.0/include/eigen-5.0.0/failtest/cwiseunaryview_nonconst_ctor_on_const_xpr.cpp +13 -0
  1252. pyaac-0.1.0/include/eigen-5.0.0/failtest/cwiseunaryview_on_const_type_actually_const.cpp +16 -0
  1253. pyaac-0.1.0/include/eigen-5.0.0/failtest/diagonal_nonconst_ctor_on_const_xpr.cpp +13 -0
  1254. pyaac-0.1.0/include/eigen-5.0.0/failtest/diagonal_on_const_type_actually_const.cpp +16 -0
  1255. pyaac-0.1.0/include/eigen-5.0.0/failtest/eigensolver_cplx.cpp +11 -0
  1256. pyaac-0.1.0/include/eigen-5.0.0/failtest/eigensolver_int.cpp +11 -0
  1257. pyaac-0.1.0/include/eigen-5.0.0/failtest/failtest_sanity_check.cpp +5 -0
  1258. pyaac-0.1.0/include/eigen-5.0.0/failtest/fullpivlu_int.cpp +11 -0
  1259. pyaac-0.1.0/include/eigen-5.0.0/failtest/fullpivqr_int.cpp +13 -0
  1260. pyaac-0.1.0/include/eigen-5.0.0/failtest/initializer_list_1.cpp +11 -0
  1261. pyaac-0.1.0/include/eigen-5.0.0/failtest/initializer_list_2.cpp +13 -0
  1262. pyaac-0.1.0/include/eigen-5.0.0/failtest/jacobisvd_int.cpp +11 -0
  1263. pyaac-0.1.0/include/eigen-5.0.0/failtest/ldlt_int.cpp +11 -0
  1264. pyaac-0.1.0/include/eigen-5.0.0/failtest/llt_int.cpp +11 -0
  1265. pyaac-0.1.0/include/eigen-5.0.0/failtest/map_nonconst_ctor_on_const_ptr_0.cpp +13 -0
  1266. pyaac-0.1.0/include/eigen-5.0.0/failtest/map_nonconst_ctor_on_const_ptr_1.cpp +13 -0
  1267. pyaac-0.1.0/include/eigen-5.0.0/failtest/map_nonconst_ctor_on_const_ptr_2.cpp +13 -0
  1268. pyaac-0.1.0/include/eigen-5.0.0/failtest/map_nonconst_ctor_on_const_ptr_3.cpp +15 -0
  1269. pyaac-0.1.0/include/eigen-5.0.0/failtest/map_nonconst_ctor_on_const_ptr_4.cpp +15 -0
  1270. pyaac-0.1.0/include/eigen-5.0.0/failtest/map_on_const_type_actually_const_0.cpp +13 -0
  1271. pyaac-0.1.0/include/eigen-5.0.0/failtest/map_on_const_type_actually_const_1.cpp +13 -0
  1272. pyaac-0.1.0/include/eigen-5.0.0/failtest/partialpivlu_int.cpp +11 -0
  1273. pyaac-0.1.0/include/eigen-5.0.0/failtest/qr_int.cpp +11 -0
  1274. pyaac-0.1.0/include/eigen-5.0.0/failtest/ref_1.cpp +17 -0
  1275. pyaac-0.1.0/include/eigen-5.0.0/failtest/ref_2.cpp +14 -0
  1276. pyaac-0.1.0/include/eigen-5.0.0/failtest/ref_3.cpp +14 -0
  1277. pyaac-0.1.0/include/eigen-5.0.0/failtest/ref_4.cpp +14 -0
  1278. pyaac-0.1.0/include/eigen-5.0.0/failtest/ref_5.cpp +15 -0
  1279. pyaac-0.1.0/include/eigen-5.0.0/failtest/ref_6.cpp +15 -0
  1280. pyaac-0.1.0/include/eigen-5.0.0/failtest/ref_7.cpp +16 -0
  1281. pyaac-0.1.0/include/eigen-5.0.0/failtest/selfadjointview_nonconst_ctor_on_const_xpr.cpp +13 -0
  1282. pyaac-0.1.0/include/eigen-5.0.0/failtest/selfadjointview_on_const_type_actually_const.cpp +16 -0
  1283. pyaac-0.1.0/include/eigen-5.0.0/failtest/sparse_ref_1.cpp +17 -0
  1284. pyaac-0.1.0/include/eigen-5.0.0/failtest/sparse_ref_2.cpp +14 -0
  1285. pyaac-0.1.0/include/eigen-5.0.0/failtest/sparse_ref_3.cpp +14 -0
  1286. pyaac-0.1.0/include/eigen-5.0.0/failtest/sparse_ref_4.cpp +14 -0
  1287. pyaac-0.1.0/include/eigen-5.0.0/failtest/sparse_ref_5.cpp +15 -0
  1288. pyaac-0.1.0/include/eigen-5.0.0/failtest/sparse_storage_mismatch.cpp +15 -0
  1289. pyaac-0.1.0/include/eigen-5.0.0/failtest/swap_1.cpp +13 -0
  1290. pyaac-0.1.0/include/eigen-5.0.0/failtest/swap_2.cpp +13 -0
  1291. pyaac-0.1.0/include/eigen-5.0.0/failtest/ternary_1.cpp +12 -0
  1292. pyaac-0.1.0/include/eigen-5.0.0/failtest/ternary_2.cpp +12 -0
  1293. pyaac-0.1.0/include/eigen-5.0.0/failtest/transpose_nonconst_ctor_on_const_xpr.cpp +13 -0
  1294. pyaac-0.1.0/include/eigen-5.0.0/failtest/transpose_on_const_type_actually_const.cpp +16 -0
  1295. pyaac-0.1.0/include/eigen-5.0.0/failtest/triangularview_nonconst_ctor_on_const_xpr.cpp +13 -0
  1296. pyaac-0.1.0/include/eigen-5.0.0/failtest/triangularview_on_const_type_actually_const.cpp +16 -0
  1297. pyaac-0.1.0/include/eigen-5.0.0/lapack/CMakeLists.txt +464 -0
  1298. pyaac-0.1.0/include/eigen-5.0.0/lapack/cholesky.inc +70 -0
  1299. pyaac-0.1.0/include/eigen-5.0.0/lapack/clacgv.f +116 -0
  1300. pyaac-0.1.0/include/eigen-5.0.0/lapack/cladiv.f +97 -0
  1301. pyaac-0.1.0/include/eigen-5.0.0/lapack/clarf.f +232 -0
  1302. pyaac-0.1.0/include/eigen-5.0.0/lapack/clarfb.f +771 -0
  1303. pyaac-0.1.0/include/eigen-5.0.0/lapack/clarfg.f +203 -0
  1304. pyaac-0.1.0/include/eigen-5.0.0/lapack/clarft.f +328 -0
  1305. pyaac-0.1.0/include/eigen-5.0.0/lapack/complex_double.cpp +18 -0
  1306. pyaac-0.1.0/include/eigen-5.0.0/lapack/complex_single.cpp +18 -0
  1307. pyaac-0.1.0/include/eigen-5.0.0/lapack/dladiv.f +128 -0
  1308. pyaac-0.1.0/include/eigen-5.0.0/lapack/dlamch.f +189 -0
  1309. pyaac-0.1.0/include/eigen-5.0.0/lapack/dlapy2.f +104 -0
  1310. pyaac-0.1.0/include/eigen-5.0.0/lapack/dlapy3.f +111 -0
  1311. pyaac-0.1.0/include/eigen-5.0.0/lapack/dlarf.f +227 -0
  1312. pyaac-0.1.0/include/eigen-5.0.0/lapack/dlarfb.f +762 -0
  1313. pyaac-0.1.0/include/eigen-5.0.0/lapack/dlarfg.f +196 -0
  1314. pyaac-0.1.0/include/eigen-5.0.0/lapack/dlarft.f +326 -0
  1315. pyaac-0.1.0/include/eigen-5.0.0/lapack/double.cpp +18 -0
  1316. pyaac-0.1.0/include/eigen-5.0.0/lapack/dsecnd_INT_CPU_TIME.cpp +39 -0
  1317. pyaac-0.1.0/include/eigen-5.0.0/lapack/dsecnd_NONE.f +52 -0
  1318. pyaac-0.1.0/include/eigen-5.0.0/lapack/eigenvalues.inc +62 -0
  1319. pyaac-0.1.0/include/eigen-5.0.0/lapack/ilaclc.f +118 -0
  1320. pyaac-0.1.0/include/eigen-5.0.0/lapack/ilaclr.f +121 -0
  1321. pyaac-0.1.0/include/eigen-5.0.0/lapack/iladlc.f +118 -0
  1322. pyaac-0.1.0/include/eigen-5.0.0/lapack/iladlr.f +121 -0
  1323. pyaac-0.1.0/include/eigen-5.0.0/lapack/ilaslc.f +118 -0
  1324. pyaac-0.1.0/include/eigen-5.0.0/lapack/ilaslr.f +121 -0
  1325. pyaac-0.1.0/include/eigen-5.0.0/lapack/ilazlc.f +118 -0
  1326. pyaac-0.1.0/include/eigen-5.0.0/lapack/ilazlr.f +121 -0
  1327. pyaac-0.1.0/include/eigen-5.0.0/lapack/lapack.h +136 -0
  1328. pyaac-0.1.0/include/eigen-5.0.0/lapack/lapack_common.h +20 -0
  1329. pyaac-0.1.0/include/eigen-5.0.0/lapack/lu.inc +82 -0
  1330. pyaac-0.1.0/include/eigen-5.0.0/lapack/second_INT_CPU_TIME.cpp +39 -0
  1331. pyaac-0.1.0/include/eigen-5.0.0/lapack/second_NONE.f +52 -0
  1332. pyaac-0.1.0/include/eigen-5.0.0/lapack/single.cpp +18 -0
  1333. pyaac-0.1.0/include/eigen-5.0.0/lapack/sladiv.f +128 -0
  1334. pyaac-0.1.0/include/eigen-5.0.0/lapack/slamch.f +192 -0
  1335. pyaac-0.1.0/include/eigen-5.0.0/lapack/slapy2.f +104 -0
  1336. pyaac-0.1.0/include/eigen-5.0.0/lapack/slapy3.f +111 -0
  1337. pyaac-0.1.0/include/eigen-5.0.0/lapack/slarf.f +227 -0
  1338. pyaac-0.1.0/include/eigen-5.0.0/lapack/slarfb.f +763 -0
  1339. pyaac-0.1.0/include/eigen-5.0.0/lapack/slarfg.f +196 -0
  1340. pyaac-0.1.0/include/eigen-5.0.0/lapack/slarft.f +326 -0
  1341. pyaac-0.1.0/include/eigen-5.0.0/lapack/svd.inc +150 -0
  1342. pyaac-0.1.0/include/eigen-5.0.0/lapack/zlacgv.f +116 -0
  1343. pyaac-0.1.0/include/eigen-5.0.0/lapack/zladiv.f +97 -0
  1344. pyaac-0.1.0/include/eigen-5.0.0/lapack/zlarf.f +232 -0
  1345. pyaac-0.1.0/include/eigen-5.0.0/lapack/zlarfb.f +774 -0
  1346. pyaac-0.1.0/include/eigen-5.0.0/lapack/zlarfg.f +203 -0
  1347. pyaac-0.1.0/include/eigen-5.0.0/lapack/zlarft.f +327 -0
  1348. pyaac-0.1.0/include/eigen-5.0.0/scripts/CMakeLists.txt +6 -0
  1349. pyaac-0.1.0/include/eigen-5.0.0/scripts/buildtests.in +22 -0
  1350. pyaac-0.1.0/include/eigen-5.0.0/scripts/cdashtesting.cmake.in +49 -0
  1351. pyaac-0.1.0/include/eigen-5.0.0/scripts/check.in +21 -0
  1352. pyaac-0.1.0/include/eigen-5.0.0/scripts/ci_cmake_msvc.ps1 +65 -0
  1353. pyaac-0.1.0/include/eigen-5.0.0/scripts/ci_cmake_msvc_cuda.ps1 +31 -0
  1354. pyaac-0.1.0/include/eigen-5.0.0/scripts/debug.in +3 -0
  1355. pyaac-0.1.0/include/eigen-5.0.0/scripts/eigen_gen_credits.cpp +210 -0
  1356. pyaac-0.1.0/include/eigen-5.0.0/scripts/eigen_gen_docs +24 -0
  1357. pyaac-0.1.0/include/eigen-5.0.0/scripts/eigen_gen_split_test_help.cmake +11 -0
  1358. pyaac-0.1.0/include/eigen-5.0.0/scripts/eigen_monitor_perf.sh +25 -0
  1359. pyaac-0.1.0/include/eigen-5.0.0/scripts/format.sh +11 -0
  1360. pyaac-0.1.0/include/eigen-5.0.0/scripts/msvc_setup.ps1 +21 -0
  1361. pyaac-0.1.0/include/eigen-5.0.0/scripts/release.in +3 -0
  1362. pyaac-0.1.0/include/eigen-5.0.0/signature_of_eigen3_matrix_library +1 -0
  1363. pyaac-0.1.0/include/eigen-5.0.0/test/AnnoyingScalar.h +204 -0
  1364. pyaac-0.1.0/include/eigen-5.0.0/test/CMakeLists.txt +504 -0
  1365. pyaac-0.1.0/include/eigen-5.0.0/test/CustomComplex.h +132 -0
  1366. pyaac-0.1.0/include/eigen-5.0.0/test/MovableScalar.h +54 -0
  1367. pyaac-0.1.0/include/eigen-5.0.0/test/OffByOneScalar.h +20 -0
  1368. pyaac-0.1.0/include/eigen-5.0.0/test/SafeScalar.h +33 -0
  1369. pyaac-0.1.0/include/eigen-5.0.0/test/accelerate_support.cpp +166 -0
  1370. pyaac-0.1.0/include/eigen-5.0.0/test/adjoint.cpp +236 -0
  1371. pyaac-0.1.0/include/eigen-5.0.0/test/array_cwise.cpp +1432 -0
  1372. pyaac-0.1.0/include/eigen-5.0.0/test/array_for_matrix.cpp +349 -0
  1373. pyaac-0.1.0/include/eigen-5.0.0/test/array_of_string.cpp +31 -0
  1374. pyaac-0.1.0/include/eigen-5.0.0/test/array_replicate.cpp +73 -0
  1375. pyaac-0.1.0/include/eigen-5.0.0/test/array_reverse.cpp +199 -0
  1376. pyaac-0.1.0/include/eigen-5.0.0/test/assignment_threaded.cpp +84 -0
  1377. pyaac-0.1.0/include/eigen-5.0.0/test/bandmatrix.cpp +66 -0
  1378. pyaac-0.1.0/include/eigen-5.0.0/test/basicstuff.cpp +352 -0
  1379. pyaac-0.1.0/include/eigen-5.0.0/test/bdcsvd.cpp +177 -0
  1380. pyaac-0.1.0/include/eigen-5.0.0/test/bfloat16_float.cpp +402 -0
  1381. pyaac-0.1.0/include/eigen-5.0.0/test/bicgstab.cpp +88 -0
  1382. pyaac-0.1.0/include/eigen-5.0.0/test/blasutil.cpp +178 -0
  1383. pyaac-0.1.0/include/eigen-5.0.0/test/block.cpp +381 -0
  1384. pyaac-0.1.0/include/eigen-5.0.0/test/boostmultiprec.cpp +212 -0
  1385. pyaac-0.1.0/include/eigen-5.0.0/test/bug1213.cpp +7 -0
  1386. pyaac-0.1.0/include/eigen-5.0.0/test/bug1213.h +7 -0
  1387. pyaac-0.1.0/include/eigen-5.0.0/test/bug1213_main.cpp +13 -0
  1388. pyaac-0.1.0/include/eigen-5.0.0/test/cholesky.cpp +500 -0
  1389. pyaac-0.1.0/include/eigen-5.0.0/test/cholmod_support.cpp +81 -0
  1390. pyaac-0.1.0/include/eigen-5.0.0/test/clz.cpp +74 -0
  1391. pyaac-0.1.0/include/eigen-5.0.0/test/commainitializer.cpp +107 -0
  1392. pyaac-0.1.0/include/eigen-5.0.0/test/conjugate_gradient.cpp +33 -0
  1393. pyaac-0.1.0/include/eigen-5.0.0/test/conservative_resize.cpp +162 -0
  1394. pyaac-0.1.0/include/eigen-5.0.0/test/constexpr.cpp +82 -0
  1395. pyaac-0.1.0/include/eigen-5.0.0/test/constructor.cpp +97 -0
  1396. pyaac-0.1.0/include/eigen-5.0.0/test/corners.cpp +125 -0
  1397. pyaac-0.1.0/include/eigen-5.0.0/test/ctorleak.cpp +79 -0
  1398. pyaac-0.1.0/include/eigen-5.0.0/test/denseLM.cpp +172 -0
  1399. pyaac-0.1.0/include/eigen-5.0.0/test/dense_storage.cpp +285 -0
  1400. pyaac-0.1.0/include/eigen-5.0.0/test/determinant.cpp +65 -0
  1401. pyaac-0.1.0/include/eigen-5.0.0/test/diagonal.cpp +102 -0
  1402. pyaac-0.1.0/include/eigen-5.0.0/test/diagonal_matrix_variadic_ctor.cpp +150 -0
  1403. pyaac-0.1.0/include/eigen-5.0.0/test/diagonalmatrices.cpp +197 -0
  1404. pyaac-0.1.0/include/eigen-5.0.0/test/dontalign.cpp +60 -0
  1405. pyaac-0.1.0/include/eigen-5.0.0/test/dynalloc.cpp +168 -0
  1406. pyaac-0.1.0/include/eigen-5.0.0/test/eigen2support.cpp +62 -0
  1407. pyaac-0.1.0/include/eigen-5.0.0/test/eigensolver_complex.cpp +173 -0
  1408. pyaac-0.1.0/include/eigen-5.0.0/test/eigensolver_generalized_real.cpp +139 -0
  1409. pyaac-0.1.0/include/eigen-5.0.0/test/eigensolver_generic.cpp +233 -0
  1410. pyaac-0.1.0/include/eigen-5.0.0/test/eigensolver_selfadjoint.cpp +270 -0
  1411. pyaac-0.1.0/include/eigen-5.0.0/test/evaluator_common.h +0 -0
  1412. pyaac-0.1.0/include/eigen-5.0.0/test/evaluators.cpp +541 -0
  1413. pyaac-0.1.0/include/eigen-5.0.0/test/exceptions.cpp +55 -0
  1414. pyaac-0.1.0/include/eigen-5.0.0/test/fastmath.cpp +209 -0
  1415. pyaac-0.1.0/include/eigen-5.0.0/test/first_aligned.cpp +50 -0
  1416. pyaac-0.1.0/include/eigen-5.0.0/test/float_conversion.cpp +50 -0
  1417. pyaac-0.1.0/include/eigen-5.0.0/test/geo_alignedbox.cpp +521 -0
  1418. pyaac-0.1.0/include/eigen-5.0.0/test/geo_eulerangles.cpp +203 -0
  1419. pyaac-0.1.0/include/eigen-5.0.0/test/geo_homogeneous.cpp +144 -0
  1420. pyaac-0.1.0/include/eigen-5.0.0/test/geo_hyperplane.cpp +184 -0
  1421. pyaac-0.1.0/include/eigen-5.0.0/test/geo_orthomethods.cpp +159 -0
  1422. pyaac-0.1.0/include/eigen-5.0.0/test/geo_parametrizedline.cpp +121 -0
  1423. pyaac-0.1.0/include/eigen-5.0.0/test/geo_quaternion.cpp +333 -0
  1424. pyaac-0.1.0/include/eigen-5.0.0/test/geo_transformations.cpp +728 -0
  1425. pyaac-0.1.0/include/eigen-5.0.0/test/gpu_basic.cu +447 -0
  1426. pyaac-0.1.0/include/eigen-5.0.0/test/gpu_common.h +161 -0
  1427. pyaac-0.1.0/include/eigen-5.0.0/test/gpu_example.cu +120 -0
  1428. pyaac-0.1.0/include/eigen-5.0.0/test/gpu_test_helper.h +448 -0
  1429. pyaac-0.1.0/include/eigen-5.0.0/test/half_float.cpp +346 -0
  1430. pyaac-0.1.0/include/eigen-5.0.0/test/hessenberg.cpp +61 -0
  1431. pyaac-0.1.0/include/eigen-5.0.0/test/householder.cpp +235 -0
  1432. pyaac-0.1.0/include/eigen-5.0.0/test/incomplete_LUT.cpp +89 -0
  1433. pyaac-0.1.0/include/eigen-5.0.0/test/incomplete_cholesky.cpp +81 -0
  1434. pyaac-0.1.0/include/eigen-5.0.0/test/indexed_view.cpp +869 -0
  1435. pyaac-0.1.0/include/eigen-5.0.0/test/initializer_list_construction.cpp +365 -0
  1436. pyaac-0.1.0/include/eigen-5.0.0/test/inplace_decomposition.cpp +100 -0
  1437. pyaac-0.1.0/include/eigen-5.0.0/test/integer_types.cpp +162 -0
  1438. pyaac-0.1.0/include/eigen-5.0.0/test/inverse.cpp +141 -0
  1439. pyaac-0.1.0/include/eigen-5.0.0/test/io.cpp +63 -0
  1440. pyaac-0.1.0/include/eigen-5.0.0/test/is_same_dense.cpp +39 -0
  1441. pyaac-0.1.0/include/eigen-5.0.0/test/jacobi.cpp +81 -0
  1442. pyaac-0.1.0/include/eigen-5.0.0/test/jacobisvd.cpp +215 -0
  1443. pyaac-0.1.0/include/eigen-5.0.0/test/klu_support.cpp +30 -0
  1444. pyaac-0.1.0/include/eigen-5.0.0/test/linearstructure.cpp +151 -0
  1445. pyaac-0.1.0/include/eigen-5.0.0/test/lscg.cpp +36 -0
  1446. pyaac-0.1.0/include/eigen-5.0.0/test/lu.cpp +260 -0
  1447. pyaac-0.1.0/include/eigen-5.0.0/test/main.h +942 -0
  1448. pyaac-0.1.0/include/eigen-5.0.0/test/mapped_matrix.cpp +200 -0
  1449. pyaac-0.1.0/include/eigen-5.0.0/test/mapstaticmethods.cpp +159 -0
  1450. pyaac-0.1.0/include/eigen-5.0.0/test/mapstride.cpp +275 -0
  1451. pyaac-0.1.0/include/eigen-5.0.0/test/matrix_cwise.cpp +302 -0
  1452. pyaac-0.1.0/include/eigen-5.0.0/test/maxsizevector.cpp +73 -0
  1453. pyaac-0.1.0/include/eigen-5.0.0/test/meta.cpp +533 -0
  1454. pyaac-0.1.0/include/eigen-5.0.0/test/metis_support.cpp +22 -0
  1455. pyaac-0.1.0/include/eigen-5.0.0/test/miscmatrices.cpp +47 -0
  1456. pyaac-0.1.0/include/eigen-5.0.0/test/mixingtypes.cpp +306 -0
  1457. pyaac-0.1.0/include/eigen-5.0.0/test/nestbyvalue.cpp +37 -0
  1458. pyaac-0.1.0/include/eigen-5.0.0/test/nesting_ops.cpp +101 -0
  1459. pyaac-0.1.0/include/eigen-5.0.0/test/nomalloc.cpp +231 -0
  1460. pyaac-0.1.0/include/eigen-5.0.0/test/nullary.cpp +325 -0
  1461. pyaac-0.1.0/include/eigen-5.0.0/test/num_dimensions.cpp +82 -0
  1462. pyaac-0.1.0/include/eigen-5.0.0/test/numext.cpp +389 -0
  1463. pyaac-0.1.0/include/eigen-5.0.0/test/packet_segment.cpp +184 -0
  1464. pyaac-0.1.0/include/eigen-5.0.0/test/packetmath.cpp +1820 -0
  1465. pyaac-0.1.0/include/eigen-5.0.0/test/packetmath_test_shared.h +319 -0
  1466. pyaac-0.1.0/include/eigen-5.0.0/test/pardiso_support.cpp +28 -0
  1467. pyaac-0.1.0/include/eigen-5.0.0/test/pastix_support.cpp +52 -0
  1468. pyaac-0.1.0/include/eigen-5.0.0/test/permutationmatrices.cpp +207 -0
  1469. pyaac-0.1.0/include/eigen-5.0.0/test/prec_inverse_4x4.cpp +76 -0
  1470. pyaac-0.1.0/include/eigen-5.0.0/test/product.h +315 -0
  1471. pyaac-0.1.0/include/eigen-5.0.0/test/product_extra.cpp +372 -0
  1472. pyaac-0.1.0/include/eigen-5.0.0/test/product_large.cpp +150 -0
  1473. pyaac-0.1.0/include/eigen-5.0.0/test/product_mmtr.cpp +111 -0
  1474. pyaac-0.1.0/include/eigen-5.0.0/test/product_notemporary.cpp +224 -0
  1475. pyaac-0.1.0/include/eigen-5.0.0/test/product_selfadjoint.cpp +89 -0
  1476. pyaac-0.1.0/include/eigen-5.0.0/test/product_small.cpp +341 -0
  1477. pyaac-0.1.0/include/eigen-5.0.0/test/product_symm.cpp +129 -0
  1478. pyaac-0.1.0/include/eigen-5.0.0/test/product_syrk.cpp +164 -0
  1479. pyaac-0.1.0/include/eigen-5.0.0/test/product_threaded.cpp +29 -0
  1480. pyaac-0.1.0/include/eigen-5.0.0/test/product_trmm.cpp +144 -0
  1481. pyaac-0.1.0/include/eigen-5.0.0/test/product_trmv.cpp +92 -0
  1482. pyaac-0.1.0/include/eigen-5.0.0/test/product_trsolve.cpp +137 -0
  1483. pyaac-0.1.0/include/eigen-5.0.0/test/qr.cpp +137 -0
  1484. pyaac-0.1.0/include/eigen-5.0.0/test/qr_colpivoting.cpp +376 -0
  1485. pyaac-0.1.0/include/eigen-5.0.0/test/qr_fullpivoting.cpp +162 -0
  1486. pyaac-0.1.0/include/eigen-5.0.0/test/qtvector.cpp +142 -0
  1487. pyaac-0.1.0/include/eigen-5.0.0/test/rand.cpp +300 -0
  1488. pyaac-0.1.0/include/eigen-5.0.0/test/random_matrix.cpp +126 -0
  1489. pyaac-0.1.0/include/eigen-5.0.0/test/random_matrix_helper.h +242 -0
  1490. pyaac-0.1.0/include/eigen-5.0.0/test/random_without_cast_overflow.h +191 -0
  1491. pyaac-0.1.0/include/eigen-5.0.0/test/real_qz.cpp +94 -0
  1492. pyaac-0.1.0/include/eigen-5.0.0/test/realview.cpp +110 -0
  1493. pyaac-0.1.0/include/eigen-5.0.0/test/redux.cpp +205 -0
  1494. pyaac-0.1.0/include/eigen-5.0.0/test/ref.cpp +409 -0
  1495. pyaac-0.1.0/include/eigen-5.0.0/test/reshape.cpp +226 -0
  1496. pyaac-0.1.0/include/eigen-5.0.0/test/resize.cpp +39 -0
  1497. pyaac-0.1.0/include/eigen-5.0.0/test/rvalue_types.cpp +139 -0
  1498. pyaac-0.1.0/include/eigen-5.0.0/test/schur_complex.cpp +90 -0
  1499. pyaac-0.1.0/include/eigen-5.0.0/test/schur_real.cpp +117 -0
  1500. pyaac-0.1.0/include/eigen-5.0.0/test/selfadjoint.cpp +66 -0
  1501. pyaac-0.1.0/include/eigen-5.0.0/test/serializer.cpp +227 -0
  1502. pyaac-0.1.0/include/eigen-5.0.0/test/simplicial_cholesky.cpp +65 -0
  1503. pyaac-0.1.0/include/eigen-5.0.0/test/sizeof.cpp +51 -0
  1504. pyaac-0.1.0/include/eigen-5.0.0/test/sizeoverflow.cpp +68 -0
  1505. pyaac-0.1.0/include/eigen-5.0.0/test/skew_symmetric_matrix3.cpp +213 -0
  1506. pyaac-0.1.0/include/eigen-5.0.0/test/smallvectors.cpp +46 -0
  1507. pyaac-0.1.0/include/eigen-5.0.0/test/solverbase.h +39 -0
  1508. pyaac-0.1.0/include/eigen-5.0.0/test/sparse.h +124 -0
  1509. pyaac-0.1.0/include/eigen-5.0.0/test/sparseLM.cpp +152 -0
  1510. pyaac-0.1.0/include/eigen-5.0.0/test/sparse_basic.cpp +1049 -0
  1511. pyaac-0.1.0/include/eigen-5.0.0/test/sparse_block.cpp +314 -0
  1512. pyaac-0.1.0/include/eigen-5.0.0/test/sparse_permutations.cpp +245 -0
  1513. pyaac-0.1.0/include/eigen-5.0.0/test/sparse_product.cpp +552 -0
  1514. pyaac-0.1.0/include/eigen-5.0.0/test/sparse_ref.cpp +147 -0
  1515. pyaac-0.1.0/include/eigen-5.0.0/test/sparse_solver.h +769 -0
  1516. pyaac-0.1.0/include/eigen-5.0.0/test/sparse_solvers.cpp +120 -0
  1517. pyaac-0.1.0/include/eigen-5.0.0/test/sparse_vector.cpp +235 -0
  1518. pyaac-0.1.0/include/eigen-5.0.0/test/sparselu.cpp +43 -0
  1519. pyaac-0.1.0/include/eigen-5.0.0/test/sparseqr.cpp +140 -0
  1520. pyaac-0.1.0/include/eigen-5.0.0/test/special_numbers.cpp +54 -0
  1521. pyaac-0.1.0/include/eigen-5.0.0/test/split_test_helper.h +5993 -0
  1522. pyaac-0.1.0/include/eigen-5.0.0/test/spqr_support.cpp +59 -0
  1523. pyaac-0.1.0/include/eigen-5.0.0/test/stable_norm.cpp +259 -0
  1524. pyaac-0.1.0/include/eigen-5.0.0/test/stddeque.cpp +123 -0
  1525. pyaac-0.1.0/include/eigen-5.0.0/test/stddeque_overload.cpp +145 -0
  1526. pyaac-0.1.0/include/eigen-5.0.0/test/stdlist.cpp +123 -0
  1527. pyaac-0.1.0/include/eigen-5.0.0/test/stdlist_overload.cpp +177 -0
  1528. pyaac-0.1.0/include/eigen-5.0.0/test/stdvector.cpp +144 -0
  1529. pyaac-0.1.0/include/eigen-5.0.0/test/stdvector_overload.cpp +148 -0
  1530. pyaac-0.1.0/include/eigen-5.0.0/test/stl_iterators.cpp +594 -0
  1531. pyaac-0.1.0/include/eigen-5.0.0/test/superlu_support.cpp +22 -0
  1532. pyaac-0.1.0/include/eigen-5.0.0/test/svd_common.h +555 -0
  1533. pyaac-0.1.0/include/eigen-5.0.0/test/svd_fill.h +109 -0
  1534. pyaac-0.1.0/include/eigen-5.0.0/test/swap.cpp +123 -0
  1535. pyaac-0.1.0/include/eigen-5.0.0/test/sycl_basic.cpp +382 -0
  1536. pyaac-0.1.0/include/eigen-5.0.0/test/symbolic_index.cpp +73 -0
  1537. pyaac-0.1.0/include/eigen-5.0.0/test/threads_eventcount.cpp +137 -0
  1538. pyaac-0.1.0/include/eigen-5.0.0/test/threads_fork_join.cpp +66 -0
  1539. pyaac-0.1.0/include/eigen-5.0.0/test/threads_non_blocking_thread_pool.cpp +173 -0
  1540. pyaac-0.1.0/include/eigen-5.0.0/test/threads_runqueue.cpp +230 -0
  1541. pyaac-0.1.0/include/eigen-5.0.0/test/triangular.cpp +292 -0
  1542. pyaac-0.1.0/include/eigen-5.0.0/test/tuple_test.cpp +119 -0
  1543. pyaac-0.1.0/include/eigen-5.0.0/test/type_alias.cpp +41 -0
  1544. pyaac-0.1.0/include/eigen-5.0.0/test/umeyama.cpp +170 -0
  1545. pyaac-0.1.0/include/eigen-5.0.0/test/umfpack_support.cpp +32 -0
  1546. pyaac-0.1.0/include/eigen-5.0.0/test/unalignedcount.cpp +69 -0
  1547. pyaac-0.1.0/include/eigen-5.0.0/test/unaryview.cpp +109 -0
  1548. pyaac-0.1.0/include/eigen-5.0.0/test/upperbidiagonalization.cpp +44 -0
  1549. pyaac-0.1.0/include/eigen-5.0.0/test/vectorization_logic.cpp +502 -0
  1550. pyaac-0.1.0/include/eigen-5.0.0/test/vectorwiseop.cpp +251 -0
  1551. pyaac-0.1.0/include/eigen-5.0.0/test/visitor.cpp +335 -0
  1552. pyaac-0.1.0/include/eigen-5.0.0/test/zerosized.cpp +107 -0
  1553. pyaac-0.1.0/include/eigen-5.0.0/unsupported/CMakeLists.txt +11 -0
  1554. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/AdolcForward +153 -0
  1555. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/AlignedVector3 +211 -0
  1556. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/ArpackSupport +33 -0
  1557. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/AutoDiff +48 -0
  1558. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/BVH +108 -0
  1559. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CMakeLists.txt +31 -0
  1560. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/CMakeLists.txt +8 -0
  1561. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/Tensor +142 -0
  1562. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/TensorSymmetry +40 -0
  1563. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/ThreadPool +1 -0
  1564. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/InternalHeaderCheck.h +3 -0
  1565. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/README.md +2352 -0
  1566. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/Tensor.h +382 -0
  1567. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorArgMax.h +282 -0
  1568. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorAssign.h +211 -0
  1569. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorBase.h +1244 -0
  1570. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorBlock.h +1474 -0
  1571. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorBroadcasting.h +1001 -0
  1572. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorChipping.h +469 -0
  1573. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorConcatenation.h +352 -0
  1574. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorContraction.h +958 -0
  1575. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorContractionBlocking.h +69 -0
  1576. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorContractionCuda.h +7 -0
  1577. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorContractionGpu.h +1387 -0
  1578. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorContractionMapper.h +533 -0
  1579. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorContractionSycl.h +1653 -0
  1580. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorContractionThreadPool.h +1552 -0
  1581. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorConversion.h +416 -0
  1582. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorConvolution.h +1119 -0
  1583. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorConvolutionSycl.h +538 -0
  1584. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorCostModel.h +189 -0
  1585. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorCustomOp.h +307 -0
  1586. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorDevice.h +138 -0
  1587. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceCuda.h +7 -0
  1588. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceDefault.h +113 -0
  1589. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceGpu.h +392 -0
  1590. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceSycl.h +567 -0
  1591. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceThreadPool.h +346 -0
  1592. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorDimensionList.h +117 -0
  1593. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorDimensions.h +334 -0
  1594. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorEvalTo.h +189 -0
  1595. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorEvaluator.h +858 -0
  1596. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorExecutor.h +670 -0
  1597. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorExpr.h +338 -0
  1598. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorFFT.h +666 -0
  1599. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorFixedSize.h +225 -0
  1600. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorForcedEval.h +231 -0
  1601. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorForwardDeclarations.h +215 -0
  1602. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorFunctors.h +422 -0
  1603. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorGenerator.h +269 -0
  1604. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorGlobalFunctions.h +36 -0
  1605. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorIO.h +413 -0
  1606. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorImagePatch.h +590 -0
  1607. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorIndexList.h +619 -0
  1608. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorInflation.h +224 -0
  1609. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorInitializer.h +78 -0
  1610. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorIntDiv.h +259 -0
  1611. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorLayoutSwap.h +185 -0
  1612. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorMacros.h +85 -0
  1613. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorMap.h +191 -0
  1614. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorMeta.h +291 -0
  1615. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorMorphing.h +982 -0
  1616. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorPadding.h +620 -0
  1617. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorPatch.h +258 -0
  1618. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorRandom.h +315 -0
  1619. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorReduction.h +1025 -0
  1620. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorReductionGpu.h +958 -0
  1621. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorReductionSycl.h +588 -0
  1622. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorRef.h +391 -0
  1623. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorReverse.h +410 -0
  1624. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorRoll.h +361 -0
  1625. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorScan.h +474 -0
  1626. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorScanSycl.h +506 -0
  1627. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorShuffling.h +413 -0
  1628. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorStorage.h +143 -0
  1629. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorStriding.h +314 -0
  1630. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorTrace.h +281 -0
  1631. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorTraits.h +232 -0
  1632. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorUInt128.h +229 -0
  1633. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorVolumePatch.h +622 -0
  1634. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/TensorSymmetry/DynamicSymmetry.h +296 -0
  1635. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/TensorSymmetry/InternalHeaderCheck.h +4 -0
  1636. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/TensorSymmetry/StaticSymmetry.h +223 -0
  1637. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/TensorSymmetry/Symmetry.h +335 -0
  1638. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/TensorSymmetry/util/TemplateGroupTheory.h +492 -0
  1639. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/util/CXX11Meta.h +18 -0
  1640. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/util/CXX11Workarounds.h +85 -0
  1641. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/EulerAngles +44 -0
  1642. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/FFT +430 -0
  1643. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/IterativeSolvers +92 -0
  1644. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/KroneckerProduct +35 -0
  1645. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/LevenbergMarquardt +49 -0
  1646. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/MPRealSupport +214 -0
  1647. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/MatrixFunctions +504 -0
  1648. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/NNLS +388 -0
  1649. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/NonLinearOptimization +141 -0
  1650. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/NumericalDiff +57 -0
  1651. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/OpenGLSupport +350 -0
  1652. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/Polynomials +140 -0
  1653. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/SparseExtra +60 -0
  1654. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/SpecialFunctions +104 -0
  1655. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/Splines +36 -0
  1656. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/AutoDiff/AutoDiffJacobian.h +76 -0
  1657. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/AutoDiff/AutoDiffScalar.h +639 -0
  1658. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/AutoDiff/AutoDiffVector.h +189 -0
  1659. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/AutoDiff/CoherentPadOp.h +152 -0
  1660. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/AutoDiff/InternalHeaderCheck.h +3 -0
  1661. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/BVH/BVAlgorithms.h +291 -0
  1662. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/BVH/InternalHeaderCheck.h +3 -0
  1663. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/BVH/KdBVH.h +223 -0
  1664. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/Eigenvalues/ArpackSelfAdjointEigenSolver.h +701 -0
  1665. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/Eigenvalues/InternalHeaderCheck.h +3 -0
  1666. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/EulerAngles/CMakeLists.txt +6 -0
  1667. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/EulerAngles/EulerAngles.h +350 -0
  1668. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/EulerAngles/EulerSystem.h +284 -0
  1669. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/EulerAngles/InternalHeaderCheck.h +3 -0
  1670. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/FFT/InternalHeaderCheck.h +3 -0
  1671. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/FFT/duccfft_impl.h +71 -0
  1672. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/FFT/fftw_impl.h +216 -0
  1673. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/FFT/imklfft_impl.h +248 -0
  1674. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/FFT/kissfft_impl.h +416 -0
  1675. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/FFT/pocketfft_impl.h +67 -0
  1676. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/IterativeSolvers/BiCGSTABL.h +339 -0
  1677. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/IterativeSolvers/DGMRES.h +492 -0
  1678. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/IterativeSolvers/GMRES.h +315 -0
  1679. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/IterativeSolvers/IDRS.h +395 -0
  1680. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/IterativeSolvers/IDRSTABL.h +476 -0
  1681. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/IterativeSolvers/IncompleteLU.h +88 -0
  1682. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/IterativeSolvers/InternalHeaderCheck.h +4 -0
  1683. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/IterativeSolvers/MINRES.h +254 -0
  1684. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/IterativeSolvers/Scaling.h +172 -0
  1685. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/KroneckerProduct/InternalHeaderCheck.h +4 -0
  1686. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h +284 -0
  1687. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/LevenbergMarquardt/CopyrightMINPACK.txt +52 -0
  1688. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/LevenbergMarquardt/InternalHeaderCheck.h +4 -0
  1689. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/LevenbergMarquardt/LMcovar.h +80 -0
  1690. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/LevenbergMarquardt/LMonestep.h +187 -0
  1691. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/LevenbergMarquardt/LMpar.h +149 -0
  1692. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/LevenbergMarquardt/LMqrsolv.h +178 -0
  1693. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/LevenbergMarquardt/LevenbergMarquardt.h +362 -0
  1694. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/MatrixFunctions/InternalHeaderCheck.h +4 -0
  1695. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/MatrixFunctions/MatrixExponential.h +457 -0
  1696. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/MatrixFunctions/MatrixFunction.h +543 -0
  1697. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/MatrixFunctions/MatrixLogarithm.h +366 -0
  1698. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/MatrixFunctions/MatrixPower.h +694 -0
  1699. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/MatrixFunctions/MatrixSquareRoot.h +346 -0
  1700. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/MatrixFunctions/StemFunction.h +115 -0
  1701. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/NonLinearOptimization/HybridNonLinearSolver.h +545 -0
  1702. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/NonLinearOptimization/InternalHeaderCheck.h +4 -0
  1703. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/NonLinearOptimization/LevenbergMarquardt.h +587 -0
  1704. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/NonLinearOptimization/chkder.h +57 -0
  1705. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/NonLinearOptimization/covar.h +66 -0
  1706. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/NonLinearOptimization/dogleg.h +103 -0
  1707. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/NonLinearOptimization/fdjac1.h +73 -0
  1708. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/NonLinearOptimization/lmpar.h +265 -0
  1709. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/NonLinearOptimization/qrsolv.h +89 -0
  1710. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/NonLinearOptimization/r1mpyq.h +33 -0
  1711. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/NonLinearOptimization/r1updt.h +96 -0
  1712. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/NonLinearOptimization/rwupdt.h +47 -0
  1713. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/NumericalDiff/InternalHeaderCheck.h +3 -0
  1714. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/NumericalDiff/NumericalDiff.h +127 -0
  1715. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/Polynomials/Companion.h +252 -0
  1716. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/Polynomials/InternalHeaderCheck.h +3 -0
  1717. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/Polynomials/PolynomialSolver.h +387 -0
  1718. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/Polynomials/PolynomialUtils.h +144 -0
  1719. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/SparseExtra/BlockSparseMatrix.h +974 -0
  1720. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/SparseExtra/InternalHeaderCheck.h +3 -0
  1721. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/SparseExtra/MarketIO.h +366 -0
  1722. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/SparseExtra/MatrixMarketIterator.h +220 -0
  1723. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/SparseExtra/RandomSetter.h +303 -0
  1724. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/SparseExtra/SparseInverse.h +232 -0
  1725. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsArrayAPI.h +276 -0
  1726. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsBFloat16.h +71 -0
  1727. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsFunctors.h +323 -0
  1728. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsHalf.h +69 -0
  1729. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsImpl.h +1638 -0
  1730. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsPacketMath.h +108 -0
  1731. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/SpecialFunctions/HipVectorCompatibility.h +71 -0
  1732. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/SpecialFunctions/InternalHeaderCheck.h +4 -0
  1733. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsArrayAPI.h +159 -0
  1734. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsBFloat16.h +73 -0
  1735. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsFunctors.h +326 -0
  1736. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsHalf.h +73 -0
  1737. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsImpl.h +2073 -0
  1738. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsPacketMath.h +112 -0
  1739. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/SpecialFunctions/arch/AVX/BesselFunctions.h +46 -0
  1740. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/SpecialFunctions/arch/AVX/SpecialFunctions.h +16 -0
  1741. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/SpecialFunctions/arch/AVX512/BesselFunctions.h +46 -0
  1742. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/SpecialFunctions/arch/AVX512/SpecialFunctions.h +16 -0
  1743. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/SpecialFunctions/arch/GPU/SpecialFunctions.h +317 -0
  1744. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/SpecialFunctions/arch/NEON/BesselFunctions.h +54 -0
  1745. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/SpecialFunctions/arch/NEON/SpecialFunctions.h +34 -0
  1746. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/Splines/InternalHeaderCheck.h +3 -0
  1747. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/Splines/Spline.h +479 -0
  1748. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/Splines/SplineFitting.h +393 -0
  1749. pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/Splines/SplineFwd.h +109 -0
  1750. pyaac-0.1.0/include/eigen-5.0.0/unsupported/README.txt +50 -0
  1751. pyaac-0.1.0/include/eigen-5.0.0/unsupported/bench/bench_svd.cpp +111 -0
  1752. pyaac-0.1.0/include/eigen-5.0.0/unsupported/doc/CMakeLists.txt +4 -0
  1753. pyaac-0.1.0/include/eigen-5.0.0/unsupported/doc/Overview.dox +31 -0
  1754. pyaac-0.1.0/include/eigen-5.0.0/unsupported/doc/SYCL.dox +9 -0
  1755. pyaac-0.1.0/include/eigen-5.0.0/unsupported/doc/eigendoxy_layout.xml.in +269 -0
  1756. pyaac-0.1.0/include/eigen-5.0.0/unsupported/doc/examples/BVH_Example.cpp +62 -0
  1757. pyaac-0.1.0/include/eigen-5.0.0/unsupported/doc/examples/CMakeLists.txt +23 -0
  1758. pyaac-0.1.0/include/eigen-5.0.0/unsupported/doc/examples/EulerAngles.cpp +44 -0
  1759. pyaac-0.1.0/include/eigen-5.0.0/unsupported/doc/examples/FFT.cpp +103 -0
  1760. pyaac-0.1.0/include/eigen-5.0.0/unsupported/doc/examples/MatrixExponential.cpp +13 -0
  1761. pyaac-0.1.0/include/eigen-5.0.0/unsupported/doc/examples/MatrixFunction.cpp +16 -0
  1762. pyaac-0.1.0/include/eigen-5.0.0/unsupported/doc/examples/MatrixLogarithm.cpp +12 -0
  1763. pyaac-0.1.0/include/eigen-5.0.0/unsupported/doc/examples/MatrixPower.cpp +16 -0
  1764. pyaac-0.1.0/include/eigen-5.0.0/unsupported/doc/examples/MatrixPower_optimal.cpp +25 -0
  1765. pyaac-0.1.0/include/eigen-5.0.0/unsupported/doc/examples/MatrixSine.cpp +19 -0
  1766. pyaac-0.1.0/include/eigen-5.0.0/unsupported/doc/examples/MatrixSinh.cpp +19 -0
  1767. pyaac-0.1.0/include/eigen-5.0.0/unsupported/doc/examples/MatrixSquareRoot.cpp +14 -0
  1768. pyaac-0.1.0/include/eigen-5.0.0/unsupported/doc/examples/PolynomialSolver1.cpp +52 -0
  1769. pyaac-0.1.0/include/eigen-5.0.0/unsupported/doc/examples/PolynomialUtils1.cpp +22 -0
  1770. pyaac-0.1.0/include/eigen-5.0.0/unsupported/doc/examples/SYCL/CMakeLists.txt +31 -0
  1771. pyaac-0.1.0/include/eigen-5.0.0/unsupported/doc/examples/SYCL/CwiseMul.cpp +63 -0
  1772. pyaac-0.1.0/include/eigen-5.0.0/unsupported/doc/snippets/CMakeLists.txt +26 -0
  1773. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/BVH.cpp +247 -0
  1774. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/CMakeLists.txt +359 -0
  1775. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/EulerAngles.cpp +282 -0
  1776. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/FFT.cpp +2 -0
  1777. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/FFTW.cpp +2 -0
  1778. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/NNLS.cpp +471 -0
  1779. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/NonLinearOptimization.cpp +1879 -0
  1780. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/NumericalDiff.cpp +102 -0
  1781. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/alignedvector3.cpp +86 -0
  1782. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/autodiff.cpp +348 -0
  1783. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/autodiff_scalar.cpp +97 -0
  1784. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/bessel_functions.cpp +275 -0
  1785. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/bicgstabl.cpp +30 -0
  1786. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_argmax.cpp +289 -0
  1787. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_argmax_gpu.cu +270 -0
  1788. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_argmax_sycl.cpp +258 -0
  1789. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_assign.cpp +359 -0
  1790. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_block_access.cpp +523 -0
  1791. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_block_eval.cpp +797 -0
  1792. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_block_io.cpp +432 -0
  1793. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_broadcast_sycl.cpp +140 -0
  1794. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_broadcasting.cpp +312 -0
  1795. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_builtins_sycl.cpp +509 -0
  1796. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_cast_float16_gpu.cu +73 -0
  1797. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_casts.cpp +87 -0
  1798. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_chipping.cpp +419 -0
  1799. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_chipping_sycl.cpp +612 -0
  1800. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_comparisons.cpp +192 -0
  1801. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_complex_cwise_ops_gpu.cu +90 -0
  1802. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_complex_gpu.cu +176 -0
  1803. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_concatenation.cpp +128 -0
  1804. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_concatenation_sycl.cpp +191 -0
  1805. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_const.cpp +56 -0
  1806. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_contract_gpu.cu +210 -0
  1807. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_contract_sycl.cpp +846 -0
  1808. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_contraction.cpp +567 -0
  1809. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_convolution.cpp +145 -0
  1810. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_convolution_sycl.cpp +458 -0
  1811. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_custom_index.cpp +83 -0
  1812. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_custom_op.cpp +102 -0
  1813. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_custom_op_sycl.cpp +170 -0
  1814. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_device.cu +436 -0
  1815. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_device_sycl.cpp +90 -0
  1816. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_dimension.cpp +82 -0
  1817. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_empty.cpp +35 -0
  1818. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_executor.cpp +704 -0
  1819. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_expr.cpp +474 -0
  1820. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_fft.cpp +296 -0
  1821. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_fixed_size.cpp +263 -0
  1822. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_forced_eval.cpp +75 -0
  1823. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_forced_eval_sycl.cpp +78 -0
  1824. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_generator.cpp +82 -0
  1825. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_generator_sycl.cpp +140 -0
  1826. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_gpu.cu +1561 -0
  1827. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_ifft.cpp +157 -0
  1828. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_image_op_sycl.cpp +100 -0
  1829. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_image_patch.cpp +811 -0
  1830. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_image_patch_sycl.cpp +1155 -0
  1831. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_index_list.cpp +424 -0
  1832. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_inflation.cpp +75 -0
  1833. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_inflation_sycl.cpp +130 -0
  1834. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_intdiv.cpp +135 -0
  1835. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_io.cpp +152 -0
  1836. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_layout_swap.cpp +56 -0
  1837. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_layout_swap_sycl.cpp +120 -0
  1838. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_lvalue.cpp +36 -0
  1839. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_map.cpp +322 -0
  1840. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_math.cpp +42 -0
  1841. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_math_sycl.cpp +102 -0
  1842. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_mixed_indices.cpp +53 -0
  1843. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_morphing.cpp +551 -0
  1844. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_morphing_sycl.cpp +371 -0
  1845. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_move.cpp +68 -0
  1846. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_notification.cpp +67 -0
  1847. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_of_bfloat16_gpu.cu +461 -0
  1848. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_of_complex.cpp +108 -0
  1849. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_of_const_values.cpp +98 -0
  1850. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_of_float16_gpu.cu +462 -0
  1851. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_of_float16_sycl.cpp +392 -0
  1852. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_of_strings.cpp +141 -0
  1853. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_padding.cpp +90 -0
  1854. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_padding_sycl.cpp +148 -0
  1855. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_patch.cpp +170 -0
  1856. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_patch_sycl.cpp +249 -0
  1857. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_random.cpp +80 -0
  1858. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_random_gpu.cu +78 -0
  1859. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_random_sycl.cpp +84 -0
  1860. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_reduction.cpp +520 -0
  1861. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_reduction_gpu.cu +151 -0
  1862. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_reduction_sycl.cpp +857 -0
  1863. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_ref.cpp +243 -0
  1864. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_reverse.cpp +179 -0
  1865. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_reverse_sycl.cpp +232 -0
  1866. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_roll.cpp +156 -0
  1867. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_roundings.cpp +57 -0
  1868. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_scan.cpp +108 -0
  1869. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_scan_gpu.cu +72 -0
  1870. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_scan_sycl.cpp +112 -0
  1871. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_shuffling.cpp +270 -0
  1872. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_shuffling_sycl.cpp +114 -0
  1873. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_simple.cpp +332 -0
  1874. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_striding.cpp +114 -0
  1875. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_striding_sycl.cpp +193 -0
  1876. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_sugar.cpp +78 -0
  1877. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_sycl.cpp +348 -0
  1878. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_symmetry.cpp +799 -0
  1879. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_thread_local.cpp +144 -0
  1880. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_thread_pool.cpp +776 -0
  1881. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_trace.cpp +168 -0
  1882. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_uint128.cpp +157 -0
  1883. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_volume_patch.cpp +107 -0
  1884. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_volume_patch_sycl.cpp +229 -0
  1885. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/dgmres.cpp +30 -0
  1886. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/duccfft.cpp +4 -0
  1887. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/fft_test_shared.h +311 -0
  1888. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/forward_adolc.cpp +127 -0
  1889. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/gmres.cpp +30 -0
  1890. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/idrs.cpp +26 -0
  1891. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/idrstabl.cpp +28 -0
  1892. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/kronecker_product.cpp +242 -0
  1893. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/levenberg_marquardt.cpp +1555 -0
  1894. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/matrix_exponential.cpp +128 -0
  1895. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/matrix_function.cpp +210 -0
  1896. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/matrix_functions.h +56 -0
  1897. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/matrix_power.cpp +197 -0
  1898. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/matrix_square_root.cpp +29 -0
  1899. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/minres.cpp +41 -0
  1900. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/mklfft.cpp +2 -0
  1901. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/mpreal_support.cpp +69 -0
  1902. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/openglsupport.cpp +594 -0
  1903. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/pocketfft.cpp +2 -0
  1904. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/polynomialsolver.cpp +203 -0
  1905. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/polynomialutils.cpp +102 -0
  1906. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/sparse_extra.cpp +254 -0
  1907. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/special_functions.cpp +426 -0
  1908. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/special_packetmath.cpp +160 -0
  1909. pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/splines.cpp +205 -0
  1910. pyaac-0.1.0/include/sndfile.h +885 -0
  1911. pyaac-0.1.0/lib/arm64/DOA/libDOACalc.so +0 -0
  1912. pyaac-0.1.0/lib/arm64/sndfile/libsndfile.a +0 -0
  1913. pyaac-0.1.0/lib/linux64/DOA/libDOACalc.so +0 -0
  1914. pyaac-0.1.0/lib/linux64/sndfile/libsndfile.a +0 -0
  1915. pyaac-0.1.0/lib/windows_x64/DOA/DOACalc.dll +0 -0
  1916. pyaac-0.1.0/lib/windows_x64/DOA/DOACalc.lib +0 -0
  1917. pyaac-0.1.0/lib/windows_x64/sndfile/sndfile.lib +0 -0
  1918. pyaac-0.1.0/pyproject.toml +36 -0
  1919. pyaac-0.1.0/setup.cfg +4 -0
  1920. pyaac-0.1.0/setup.py +58 -0
  1921. pyaac-0.1.0/src/pyaac/__init__.py +28 -0
  1922. pyaac-0.1.0/src/pyaac.egg-info/PKG-INFO +12 -0
  1923. pyaac-0.1.0/src/pyaac.egg-info/SOURCES.txt +1925 -0
  1924. pyaac-0.1.0/src/pyaac.egg-info/dependency_links.txt +1 -0
  1925. pyaac-0.1.0/src/pyaac.egg-info/top_level.txt +1 -0
  1926. pyaac-0.1.0/src_cpp/binding.cpp +53 -0
  1927. pyaac-0.1.0/tests/test_doa.py +33 -0
@@ -0,0 +1,123 @@
1
+ cmake_minimum_required(VERSION 3.10)
2
+ project(pyaac_core_build)
3
+
4
+ set(CMAKE_CXX_STANDARD 14)
5
+ set(CMAKE_CXX_STANDARD_REQUIRED ON)
6
+
7
+ find_package(Python COMPONENTS Interpreter Development REQUIRED)
8
+ execute_process(
9
+ COMMAND python3 -c "import pybind11; print(pybind11.get_cmake_dir())"
10
+ OUTPUT_VARIABLE PYBIND11_PATH
11
+ OUTPUT_STRIP_TRAILING_WHITESPACE
12
+ )
13
+ list(APPEND CMAKE_PREFIX_PATH "${PYBIND11_PATH}")
14
+ find_package(pybind11 REQUIRED)
15
+
16
+ set(CMAKE_DEBUG_POSTFIX "")
17
+ set(CMAKE_RELEASE_POSTFIX "")
18
+
19
+ if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES)
20
+ set(CMAKE_BUILD_TYPE Release CACHE STRING "Choose the type of build." FORCE)
21
+ endif()
22
+
23
+ # 跨平台优化选项
24
+ if(WIN32)
25
+ add_definitions(-DNOMINMAX -DDOACALC_EXPORTS)
26
+ add_definitions(-DNOMINMAX)
27
+ set(CMAKE_EXE_LINKER_FLAGS_RELEASE "${CMAKE_EXE_LINKER_FLAGS_RELEASE} /LTCG")
28
+ else()
29
+ # Linux / Jetson ARM64 高性能参数
30
+ set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -O3 -Ofast -mcpu=native -mtune=native")
31
+ set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -ffast-math -funroll-loops -fomit-frame-pointer")
32
+ set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -flto -fno-stack-protector")
33
+ endif()
34
+
35
+ # ==========================
36
+ # 头文件路径(全平台通用)
37
+ # ==========================
38
+ include_directories(
39
+ ${PROJECT_SOURCE_DIR}
40
+ ${PROJECT_SOURCE_DIR}/include
41
+ ${PROJECT_SOURCE_DIR}/include/eigen-5.0.0
42
+ )
43
+
44
+ # ==========================
45
+ # 自动判断平台
46
+ # ==========================
47
+ if(WIN32)
48
+ # Windows x64
49
+ link_directories(
50
+ ${PROJECT_SOURCE_DIR}/lib/windows_x64/sndfile
51
+ ${PROJECT_SOURCE_DIR}/lib/windows_x64/DOA
52
+ )
53
+ elseif(CMAKE_SYSTEM_PROCESSOR MATCHES "aarch64")
54
+ # ARM64
55
+ link_directories(
56
+ ${PROJECT_SOURCE_DIR}/lib/arm64/sndfile
57
+ ${PROJECT_SOURCE_DIR}/lib/arm64/DOA
58
+ )
59
+ else()
60
+ # Linux x86_64
61
+ link_directories(
62
+ ${PROJECT_SOURCE_DIR}/lib/linux64/sndfile
63
+ ${PROJECT_SOURCE_DIR}/lib/linux64/DOA
64
+ )
65
+ endif()
66
+
67
+ pybind11_add_module(pyaac_core src_cpp/binding.cpp)
68
+
69
+ if(WIN32)
70
+ target_link_libraries(pyaac_core PRIVATE
71
+ DOACalc.lib # 你的 DOA 算法静态库
72
+ sndfile.lib # 音频读写库
73
+ )
74
+ else()
75
+ target_link_libraries(pyaac_core PRIVATE
76
+ DOACalc # Linux 静态库自动补全 libDOACalc.a
77
+ sndfile # 自动补全 libsndfile.a
78
+ -lm # 数学库
79
+ -pthread # 线程库
80
+ )
81
+ endif()
82
+
83
+ if(UNIX)
84
+ set_target_properties(pyaac_core PROPERTIES
85
+ INSTALL_RPATH "$ORIGIN"
86
+ BUILD_WITH_INSTALL_RPATH TRUE
87
+ )
88
+ endif()
89
+
90
+ set(PROJECT_OUTPUT_DIR "${PROJECT_BINARY_DIR}")
91
+
92
+ foreach(OUTPUTCONFIG ${CMAKE_CONFIGURATION_TYPES})
93
+ string(TOUPPER ${OUTPUTCONFIG} UPPERCONFIG)
94
+ set_target_properties(pyaac_core PROPERTIES
95
+ LIBRARY_OUTPUT_DIRECTORY_${UPPERCONFIG} "${PROJECT_OUTPUT_DIR}"
96
+ RUNTIME_OUTPUT_DIRECTORY_${UPPERCONFIG} "${PROJECT_OUTPUT_DIR}"
97
+ )
98
+ endforeach()
99
+
100
+ set_target_properties(pyaac_core PROPERTIES
101
+ LIBRARY_OUTPUT_DIRECTORY "${PROJECT_OUTPUT_DIR}"
102
+ RUNTIME_OUTPUT_DIRECTORY "${PROJECT_OUTPUT_DIR}"
103
+ )
104
+
105
+ if(WIN32)
106
+ add_custom_command(TARGET pyaac_core POST_BUILD
107
+ COMMAND ${CMAKE_COMMAND} -E copy
108
+ "${PROJECT_SOURCE_DIR}/lib/windows_x64/DOA/DOACalc.dll"
109
+ "${PROJECT_OUTPUT_DIR}"
110
+ )
111
+ elseif(CMAKE_SYSTEM_PROCESSOR MATCHES "aarch64")
112
+ add_custom_command(TARGET pyaac_core POST_BUILD
113
+ COMMAND ${CMAKE_COMMAND} -E copy
114
+ "${PROJECT_SOURCE_DIR}/lib/arm64/DOA/libDOACalc.so"
115
+ "${PROJECT_OUTPUT_DIR}"
116
+ )
117
+ else()
118
+ add_custom_command(TARGET pyaac_core POST_BUILD
119
+ COMMAND ${CMAKE_COMMAND} -E copy
120
+ "${PROJECT_SOURCE_DIR}/lib/linux64/DOA/libDOACalc.so"
121
+ "${PROJECT_OUTPUT_DIR}"
122
+ )
123
+ endif()
@@ -0,0 +1,4 @@
1
+ include CMakeLists.txt
2
+ recursive-include src_cpp *.cpp
3
+ recursive-include include *
4
+ recursive-include lib *
pyaac-0.1.0/PKG-INFO ADDED
@@ -0,0 +1,12 @@
1
+ Metadata-Version: 2.4
2
+ Name: pyaac
3
+ Version: 0.1.0
4
+ Summary: Wrapper for AAC SDK
5
+ Author-email: HSIAOLIN <sjzshmh@163.com>
6
+ License-Expression: MIT
7
+ Keywords: AAC,SDK,DOA
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: Topic :: Software Development :: Libraries
10
+ Classifier: Operating System :: OS Independent
11
+ Requires-Python: >=3.10
12
+ Description-Content-Type: text/markdown
@@ -0,0 +1,81 @@
1
+ /**
2
+ * @file DOACalculator.h
3
+ * @brief DOA(波达方向)计算核心类接口定义
4
+ * @author aac
5
+ * @date 2026
6
+ */
7
+
8
+ #ifndef DOACALCULATOR_H
9
+ #define DOACALCULATOR_H
10
+
11
+ #if defined(_WIN32) && defined(DOA_EXPORT)
12
+ #define DOA_API __declspec(dllexport)
13
+ #else
14
+ #define DOA_API
15
+ #endif
16
+
17
+ // 第三方库依赖
18
+ #include <Eigen/Dense>
19
+ #include <vector>
20
+ #include <utility>
21
+
22
+ /**
23
+ * @namespace Eigen
24
+ * @brief 使用Eigen矩阵库
25
+ */
26
+ using namespace Eigen;
27
+
28
+ /**
29
+ * @namespace std
30
+ * @brief 使用标准模板库
31
+ */
32
+ using namespace std;
33
+
34
+ /**
35
+ * @class DOACalculator
36
+ * @brief DOA 计算核心类
37
+ * @details 提供设备初始化、参数配置、DOA角度计算等对外接口
38
+ */
39
+ #pragma pack(push, 8)
40
+ class DOA_API DOACalculator
41
+ {
42
+ public:
43
+ /**
44
+ * @brief 构造函数
45
+ * @details 自动进行设备校验与初始化
46
+ */
47
+ DOACalculator();
48
+
49
+ /**
50
+ * @brief 设置DOA计算参数
51
+ * @param sample_rate 采样率 (Hz)
52
+ * @param frame_len 每一帧数据长度
53
+ * @param fft_len FFT变换长度
54
+ * @param source_num 目标声源数量
55
+ * @param n_oneframefixed 固定帧长参数
56
+ * @param angle_interval 角度扫描间隔
57
+ */
58
+ void setDOAParams(
59
+ int sample_rate,
60
+ int frame_len,
61
+ int fft_len,
62
+ int source_num,
63
+ int n_oneframefixed,
64
+ int angle_interval
65
+ );
66
+
67
+ /**
68
+ * @brief 执行DOA角度计算
69
+ * @param mic_signals 麦克风阵列输入数据矩阵
70
+ * @return int 计算得到的主能量角度值
71
+ */
72
+ int calculateDOA(const MatrixXd& mic_signals);
73
+
74
+ /**
75
+ * @brief 获取设备初始化状态
76
+ * @return bool 初始化成功返回true,失败返回false
77
+ */
78
+ bool isInitialized() const;
79
+ };
80
+ #pragma pack(pop)
81
+ #endif // DOACALCULATOR_H
@@ -0,0 +1,19 @@
1
+ ---
2
+ BasedOnStyle: Google
3
+ ColumnLimit: 120
4
+ ---
5
+ Language: Cpp
6
+ BasedOnStyle: Google
7
+ ColumnLimit: 120
8
+ StatementMacros:
9
+ - EIGEN_STATIC_ASSERT
10
+ - EIGEN_INITIALIZE_COEFFS_IF_THAT_OPTION_IS_ENABLED
11
+ - EIGEN_INTERNAL_DENSE_STORAGE_CTOR_PLUGIN
12
+ SortIncludes: false
13
+ AttributeMacros:
14
+ - EIGEN_STRONG_INLINE
15
+ - EIGEN_ALWAYS_INLINE
16
+ - EIGEN_DEVICE_FUNC
17
+ - EIGEN_DONT_INLINE
18
+ - EIGEN_DEPRECATED
19
+ - EIGEN_UNUSED
@@ -0,0 +1,4 @@
1
+ # First major clang-format MR (https://gitlab.com/libeigen/eigen/-/merge_requests/1429).
2
+ f38e16c193d489c278c189bc06b448a94adb45fb
3
+ # Formatting of tests, examples, benchmarks, et cetera (https://gitlab.com/libeigen/eigen/-/merge_requests/1432).
4
+ 46e9cdb7fea25d7f7aef4332b9c3ead3857e213d
@@ -0,0 +1,3 @@
1
+ *.sh eol=lf
2
+ debug/msvc/*.dat eol=crlf
3
+ debug/msvc/*.natvis eol=crlf
@@ -0,0 +1,41 @@
1
+ qrc_*cxx
2
+ *.orig
3
+ *.pyc
4
+ *.diff
5
+ diff
6
+ *.save
7
+ save
8
+ *.old
9
+ *.gmo
10
+ *.qm
11
+ core
12
+ core.*
13
+ *.bak
14
+ *~
15
+ *.build*
16
+ *.moc.*
17
+ *.moc
18
+ ui_*
19
+ CMakeCache.txt
20
+ tags
21
+ .*.swp
22
+ activity.png
23
+ *.out
24
+ *.php*
25
+ *.log
26
+ *.orig
27
+ *.rej
28
+ log
29
+ patch
30
+ *.patch
31
+ a
32
+ a.*
33
+ lapack/testing
34
+ lapack/reference
35
+ .*project
36
+ .settings
37
+ Makefile
38
+ !ci/build.gitlab-ci.yml
39
+ !scripts/buildtests.in
40
+ !Eigen/Core
41
+ !Eigen/src/Core
@@ -0,0 +1,69 @@
1
+ <!--
2
+ Please read this!
3
+
4
+ Before opening a new issue, make sure to search for keywords in the issues
5
+ filtered by "bug::confirmed" or "bug::unconfirmed" and "bugzilla" label:
6
+
7
+ - https://gitlab.com/libeigen/eigen/-/issues?scope=all&utf8=%E2%9C%93&state=opened&label_name[]=bug%3A%3Aconfirmed
8
+ - https://gitlab.com/libeigen/eigen/-/issues?scope=all&utf8=%E2%9C%93&state=opened&label_name[]=bug%3A%3Aunconfirmed
9
+ - https://gitlab.com/libeigen/eigen/-/issues?scope=all&utf8=%E2%9C%93&state=opened&label_name[]=bugzilla
10
+
11
+ and verify the issue you're about to submit isn't a duplicate. -->
12
+
13
+ ### Summary
14
+ <!-- Summarize the bug encountered concisely. -->
15
+
16
+ ### Environment
17
+ <!-- Please provide your development environment here -->
18
+ - **Operating System** : Windows/Linux
19
+ - **Architecture** : x64/Arm64/PowerPC ...
20
+ - **Eigen Version** : 3.3.9
21
+ - **Compiler Version** : Gcc7.0
22
+ - **Compile Flags** : -O3 -march=native
23
+ - **Vector Extension** : SSE/AVX/NEON ...
24
+
25
+ ### Minimal Example
26
+ <!-- If possible, please create a minimal example here that exhibits the problematic behavior.
27
+ You can also link to [godbolt](https://godbolt.org). But please note that you need to click
28
+ the "Share" button in the top right-hand corner of the godbolt page where you reproduce the sample
29
+ code to get the share link instead of in your browser address bar.
30
+
31
+ You can read [the guidelines on stackoverflow](https://stackoverflow.com/help/minimal-reproducible-example)
32
+ on how to create a good minimal example. -->
33
+
34
+ ```cpp
35
+ //show your code here
36
+ ```
37
+
38
+ ### Steps to reproduce
39
+ <!-- Describe how one can reproduce the issue - this is very important. Please use an ordered list. -->
40
+
41
+ 1. first step
42
+ 2. second step
43
+ 3. ...
44
+
45
+ ### What is the current *bug* behavior?
46
+ <!-- Describe what actually happens. -->
47
+
48
+ ### What is the expected *correct* behavior?
49
+ <!-- Describe what you should see instead. -->
50
+
51
+ ### Relevant logs
52
+ <!-- Add relevant code snippets or program output within blocks marked by " ``` " -->
53
+
54
+ <!-- OPTIONAL: remove this section if you are not reporting a compilation warning issue.-->
55
+ ### Warning Messages
56
+ <!-- Show us the warning messages you got! -->
57
+
58
+ <!-- OPTIONAL: remove this section if you are not reporting a performance issue. -->
59
+ ### Benchmark scripts and results
60
+ <!-- Please share any benchmark scripts - either standalone, or using [Google Benchmark](https://github.com/google/benchmark). -->
61
+
62
+ ### Anything else that might help
63
+ <!-- It will be better to provide us more information to help narrow down the cause.
64
+ Including but not limited to the following:
65
+ - lines of code that might help us diagnose the problem.
66
+ - potential ways to address the issue.
67
+ - last known working/first broken version (release number or commit hash). -->
68
+
69
+ - [ ] Have a plan to fix this issue.
@@ -0,0 +1,7 @@
1
+ ### Describe the feature you would like to be implemented.
2
+
3
+ ### Would such a feature be useful for other users? Why?
4
+
5
+ ### Any hints on how to implement the requested feature?
6
+
7
+ ### Additional resources
@@ -0,0 +1,26 @@
1
+ <!--
2
+ Thanks for contributing a merge request! Please name and fully describe your MR as you would for a commit message.
3
+ If the MR fixes an issue, please include "Fixes #issue" in the commit message and the MR description.
4
+
5
+ In addition, we recommend that first-time contributors read our [contribution guidelines](https://eigen.tuxfamily.org/index.php?title=Contributing_to_Eigen) and [git page](https://eigen.tuxfamily.org/index.php?title=Git), which will help you submit a more standardized MR.
6
+
7
+ Before submitting the MR, you also need to complete the following checks:
8
+ - Make one PR per feature/bugfix (don't mix multiple changes into one PR). Avoid committing unrelated changes.
9
+ - Rebase before committing
10
+ - For code changes, run the test suite (at least the tests that are likely affected by the change).
11
+ See our [test guidelines](https://eigen.tuxfamily.org/index.php?title=Tests).
12
+ - If possible, add a test (both for bug-fixes as well as new features)
13
+ - Make sure new features are documented
14
+
15
+ Note that we are a team of volunteers; we appreciate your patience during the review process.
16
+
17
+ Again, thanks for contributing! -->
18
+
19
+ ### Reference issue
20
+ <!-- You can link to a specific issue using the gitlab syntax #<issue number> -->
21
+
22
+ ### What does this implement/fix?
23
+ <!--Please explain your changes.-->
24
+
25
+ ### Additional information
26
+ <!--Any additional information you think is important.-->
@@ -0,0 +1,34 @@
1
+ # This file is part of Eigen, a lightweight C++ template library
2
+ # for linear algebra.
3
+ #
4
+ # Copyright (C) 2023, The Eigen Authors
5
+ #
6
+ # This Source Code Form is subject to the terms of the Mozilla
7
+ # Public License v. 2.0. If a copy of the MPL was not distributed
8
+ # with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
9
+
10
+ stages:
11
+ - checkformat
12
+ - build
13
+ - test
14
+ - deploy
15
+
16
+ variables:
17
+ # CMake build directory.
18
+ EIGEN_CI_BUILDDIR: .build
19
+ # Specify the CMake build target.
20
+ EIGEN_CI_BUILD_TARGET: ""
21
+ # If a test regex is specified, that will be selected.
22
+ # Otherwise, we will try a label if specified.
23
+ EIGEN_CI_CTEST_REGEX: ""
24
+ EIGEN_CI_CTEST_LABEL: ""
25
+ EIGEN_CI_CTEST_ARGS: ""
26
+
27
+ include:
28
+ - "/ci/checkformat.gitlab-ci.yml"
29
+ - "/ci/common.gitlab-ci.yml"
30
+ - "/ci/build.linux.gitlab-ci.yml"
31
+ - "/ci/build.windows.gitlab-ci.yml"
32
+ - "/ci/test.linux.gitlab-ci.yml"
33
+ - "/ci/test.windows.gitlab-ci.yml"
34
+ - "/ci/deploy.gitlab-ci.yml"