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.
- pyaac-0.1.0/CMakeLists.txt +123 -0
- pyaac-0.1.0/MANIFEST.in +4 -0
- pyaac-0.1.0/PKG-INFO +12 -0
- pyaac-0.1.0/include/DOACalculator.h +81 -0
- pyaac-0.1.0/include/eigen-5.0.0/.clang-format +19 -0
- pyaac-0.1.0/include/eigen-5.0.0/.git-blame-ignore-revs +4 -0
- pyaac-0.1.0/include/eigen-5.0.0/.gitattributes +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/.gitignore +41 -0
- pyaac-0.1.0/include/eigen-5.0.0/.gitlab/issue_templates/Bug Report.md +69 -0
- pyaac-0.1.0/include/eigen-5.0.0/.gitlab/issue_templates/Feature Request.md +7 -0
- pyaac-0.1.0/include/eigen-5.0.0/.gitlab/merge_request_templates/Merge Request Template.md +26 -0
- pyaac-0.1.0/include/eigen-5.0.0/.gitlab-ci.yml +34 -0
- pyaac-0.1.0/include/eigen-5.0.0/CHANGELOG.md +1905 -0
- pyaac-0.1.0/include/eigen-5.0.0/CMakeLists.txt +806 -0
- pyaac-0.1.0/include/eigen-5.0.0/COPYING.APACHE +203 -0
- pyaac-0.1.0/include/eigen-5.0.0/COPYING.BSD +26 -0
- pyaac-0.1.0/include/eigen-5.0.0/COPYING.MINPACK +51 -0
- pyaac-0.1.0/include/eigen-5.0.0/COPYING.MPL2 +373 -0
- pyaac-0.1.0/include/eigen-5.0.0/COPYING.README +6 -0
- pyaac-0.1.0/include/eigen-5.0.0/CTestConfig.cmake +17 -0
- pyaac-0.1.0/include/eigen-5.0.0/CTestCustom.cmake.in +4 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/AccelerateSupport +52 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/Cholesky +43 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/CholmodSupport +48 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/Core +446 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/Dense +7 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/Eigen +2 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/Eigenvalues +63 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/Geometry +59 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/Householder +31 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/IterativeLinearSolvers +52 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/Jacobi +33 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/KLUSupport +43 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/LU +46 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/MetisSupport +35 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/OrderingMethods +73 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/PaStiXSupport +51 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/PardisoSupport +38 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/QR +48 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/QtAlignedMalloc +32 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/SPQRSupport +41 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/SVD +56 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/Sparse +33 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/SparseCholesky +40 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/SparseCore +70 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/SparseLU +50 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/SparseQR +38 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/StdDeque +30 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/StdList +29 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/StdVector +30 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/SuperLUSupport +70 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/ThreadPool +80 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/UmfPackSupport +42 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/Version +14 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/AccelerateSupport/AccelerateSupport.h +423 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/AccelerateSupport/InternalHeaderCheck.h +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Cholesky/InternalHeaderCheck.h +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Cholesky/LDLT.h +649 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Cholesky/LLT.h +514 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Cholesky/LLT_LAPACKE.h +124 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/CholmodSupport/CholmodSupport.h +738 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/CholmodSupport/InternalHeaderCheck.h +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/ArithmeticSequence.h +239 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/Array.h +376 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/ArrayBase.h +213 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/ArrayWrapper.h +165 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/Assign.h +80 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/AssignEvaluator.h +1057 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/Assign_MKL.h +183 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/BandMatrix.h +338 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/Block.h +429 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/CommaInitializer.h +149 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/ConditionEstimator.h +173 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/CoreEvaluators.h +2018 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/CoreIterators.h +141 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/CwiseBinaryOp.h +166 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/CwiseNullaryOp.h +975 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/CwiseTernaryOp.h +171 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/CwiseUnaryOp.h +91 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/CwiseUnaryView.h +167 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/DenseBase.h +673 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/DenseCoeffsBase.h +568 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/DenseStorage.h +578 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/DeviceWrapper.h +153 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/Diagonal.h +219 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/DiagonalMatrix.h +420 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/DiagonalProduct.h +30 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/Dot.h +268 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/EigenBase.h +149 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/Fill.h +140 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/FindCoeff.h +464 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/ForceAlignedAccess.h +127 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/Fuzzy.h +132 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/GeneralProduct.h +519 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/GenericPacketMath.h +1702 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/GlobalFunctions.h +230 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/IO.h +233 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/IndexedView.h +321 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/InnerProduct.h +254 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/InternalHeaderCheck.h +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/Inverse.h +108 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/Map.h +153 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/MapBase.h +283 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/MathFunctions.h +2105 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/MathFunctionsImpl.h +263 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/Matrix.h +534 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/MatrixBase.h +545 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/NestByValue.h +91 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/NoAlias.h +102 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/NumTraits.h +335 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/PartialReduxEvaluator.h +253 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/PermutationMatrix.h +552 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/PlainObjectBase.h +1014 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/Product.h +307 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/ProductEvaluators.h +1287 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/Random.h +207 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/RandomImpl.h +262 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/RealView.h +250 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/Redux.h +535 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/Ref.h +383 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/Replicate.h +130 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/Reshaped.h +398 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/ReturnByValue.h +111 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/Reverse.h +202 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/Select.h +92 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/SelfAdjointView.h +329 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/SelfCwiseBinaryOp.h +50 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/SkewSymmetricMatrix3.h +382 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/Solve.h +174 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/SolveTriangular.h +237 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/SolverBase.h +167 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/StableNorm.h +217 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/StlIterators.h +619 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/Stride.h +114 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/Swap.h +99 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/Transpose.h +427 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/Transpositions.h +323 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/TriangularMatrix.h +900 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/VectorBlock.h +83 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/VectorwiseOp.h +733 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/Visitor.h +537 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/AVX/Complex.h +565 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/AVX/MathFunctions.h +130 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/AVX/PacketMath.h +3081 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/AVX/Reductions.h +353 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/AVX/TypeCasting.h +308 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/AVX512/Complex.h +472 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/AVX512/GemmKernel.h +1245 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/AVX512/MathFunctions.h +141 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/AVX512/MathFunctionsFP16.h +75 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/AVX512/PacketMath.h +3146 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/AVX512/PacketMathFP16.h +1413 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/AVX512/Reductions.h +297 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/AVX512/TrsmKernel.h +1167 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/AVX512/TrsmUnrolls.inc +1219 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/AVX512/TypeCasting.h +277 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/AVX512/TypeCastingFP16.h +130 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/AltiVec/Complex.h +653 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/AltiVec/MathFunctions.h +81 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/AltiVec/MatrixProduct.h +3686 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/AltiVec/MatrixProductCommon.h +205 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/AltiVec/MatrixProductMMA.h +901 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/AltiVec/MatrixProductMMAbfloat16.h +742 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/AltiVec/MatrixVectorProduct.inc +2818 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/AltiVec/PacketMath.h +3729 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/AltiVec/TypeCasting.h +153 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/Default/BFloat16.h +866 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/Default/ConjHelper.h +128 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/Default/GenericPacketMathFunctions.h +2634 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/Default/GenericPacketMathFunctionsFwd.h +227 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/Default/Half.h +1091 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/Default/Settings.h +47 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/GPU/Complex.h +244 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/GPU/MathFunctions.h +104 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/GPU/PacketMath.h +1712 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/GPU/Tuple.h +268 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/GPU/TypeCasting.h +77 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/HIP/hcc/math_constants.h +23 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/HVX/PacketMath.h +1088 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/LSX/Complex.h +520 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/LSX/GeneralBlockPanelKernel.h +23 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/LSX/MathFunctions.h +43 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/LSX/PacketMath.h +2866 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/LSX/TypeCasting.h +526 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/MSA/Complex.h +620 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/MSA/MathFunctions.h +379 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/MSA/PacketMath.h +1237 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/NEON/Complex.h +732 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/NEON/GeneralBlockPanelKernel.h +243 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/NEON/MathFunctions.h +68 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/NEON/PacketMath.h +6130 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/NEON/TypeCasting.h +1642 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/NEON/UnaryFunctors.h +57 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/SSE/Complex.h +503 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/SSE/MathFunctions.h +88 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/SSE/PacketMath.h +2384 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/SSE/Reductions.h +324 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/SSE/TypeCasting.h +230 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/SVE/MathFunctions.h +48 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/SVE/PacketMath.h +674 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/SVE/TypeCasting.h +52 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/SYCL/InteropHeaders.h +227 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/SYCL/MathFunctions.h +303 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/SYCL/PacketMath.h +576 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/SYCL/TypeCasting.h +83 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/ZVector/Complex.h +570 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/ZVector/MathFunctions.h +244 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/arch/ZVector/PacketMath.h +1413 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/functors/AssignmentFunctors.h +174 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/functors/BinaryFunctors.h +747 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/functors/NullaryFunctors.h +274 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/functors/StlFunctors.h +149 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/functors/TernaryFunctors.h +52 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/functors/UnaryFunctors.h +1420 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/products/GeneralBlockPanelKernel.h +3153 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/products/GeneralMatrixMatrix.h +459 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h +330 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/products/GeneralMatrixMatrixTriangular_BLAS.h +148 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/products/GeneralMatrixMatrix_BLAS.h +205 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/products/GeneralMatrixVector.h +473 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/products/GeneralMatrixVector_BLAS.h +139 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/products/Parallelizer.h +282 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/products/SelfadjointMatrixMatrix.h +483 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/products/SelfadjointMatrixMatrix_BLAS.h +277 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/products/SelfadjointMatrixVector.h +253 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/products/SelfadjointMatrixVector_BLAS.h +115 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/products/SelfadjointProduct.h +133 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/products/SelfadjointRank2Update.h +95 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/products/TriangularMatrixMatrix.h +397 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/products/TriangularMatrixMatrix_BLAS.h +325 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/products/TriangularMatrixVector.h +347 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/products/TriangularMatrixVector_BLAS.h +275 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/products/TriangularSolverMatrix.h +388 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/products/TriangularSolverMatrix_BLAS.h +166 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/products/TriangularSolverVector.h +122 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/util/Assert.h +158 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/util/BlasUtil.h +622 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/util/ConfigureVectorization.h +543 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/util/Constants.h +598 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/util/DisableStupidWarnings.h +146 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/util/EmulateArray.h +270 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/util/ForwardDeclarations.h +524 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/util/GpuHipCudaDefines.inc +101 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/util/GpuHipCudaUndefines.inc +45 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/util/IndexedViewHelper.h +487 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/util/IntegralConstant.h +279 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/util/MKL_support.h +139 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/util/Macros.h +1326 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/util/MaxSizeVector.h +139 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/util/Memory.h +1361 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/util/Meta.h +760 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/util/MoreMeta.h +638 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/util/ReenableStupidWarnings.h +44 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/util/ReshapedHelper.h +51 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/util/Serializer.h +209 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/util/StaticAssert.h +105 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/util/SymbolicIndex.h +445 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Core/util/XprHelper.h +1093 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Eigenvalues/ComplexEigenSolver.h +315 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Eigenvalues/ComplexSchur.h +442 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Eigenvalues/ComplexSchur_LAPACKE.h +95 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Eigenvalues/EigenSolver.h +579 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Eigenvalues/GeneralizedEigenSolver.h +402 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Eigenvalues/GeneralizedSelfAdjointEigenSolver.h +212 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Eigenvalues/HessenbergDecomposition.h +356 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Eigenvalues/InternalHeaderCheck.h +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Eigenvalues/MatrixBaseEigenvalues.h +142 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Eigenvalues/RealQZ.h +587 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Eigenvalues/RealSchur.h +519 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Eigenvalues/RealSchur_LAPACKE.h +83 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h +850 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Eigenvalues/SelfAdjointEigenSolver_LAPACKE.h +90 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Eigenvalues/Tridiagonalization.h +529 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Geometry/AlignedBox.h +485 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Geometry/AngleAxis.h +245 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Geometry/EulerAngles.h +203 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Geometry/Homogeneous.h +453 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Geometry/Hyperplane.h +273 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Geometry/InternalHeaderCheck.h +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Geometry/OrthoMethods.h +257 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Geometry/ParametrizedLine.h +232 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Geometry/Quaternion.h +930 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Geometry/Rotation2D.h +201 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Geometry/RotationBase.h +209 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Geometry/Scaling.h +195 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Geometry/Transform.h +1485 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Geometry/Translation.h +204 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Geometry/Umeyama.h +161 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Geometry/arch/Geometry_SIMD.h +154 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Householder/BlockHouseholder.h +115 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Householder/Householder.h +155 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Householder/HouseholderSequence.h +504 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Householder/InternalHeaderCheck.h +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/IterativeLinearSolvers/BasicPreconditioners.h +213 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/IterativeLinearSolvers/BiCGSTAB.h +217 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/IterativeLinearSolvers/ConjugateGradient.h +217 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/IterativeLinearSolvers/IncompleteCholesky.h +402 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/IterativeLinearSolvers/IncompleteLUT.h +449 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/IterativeLinearSolvers/InternalHeaderCheck.h +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/IterativeLinearSolvers/IterativeSolverBase.h +395 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/IterativeLinearSolvers/LeastSquareConjugateGradient.h +193 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/IterativeLinearSolvers/SolveWithGuess.h +111 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Jacobi/InternalHeaderCheck.h +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/Jacobi/Jacobi.h +427 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/KLUSupport/InternalHeaderCheck.h +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/KLUSupport/KLUSupport.h +339 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/LU/Determinant.h +98 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/LU/FullPivLU.h +826 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/LU/InternalHeaderCheck.h +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/LU/InverseImpl.h +353 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/LU/PartialPivLU.h +586 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/LU/PartialPivLU_LAPACKE.h +97 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/LU/arch/InverseSize4.h +353 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/MetisSupport/InternalHeaderCheck.h +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/MetisSupport/MetisSupport.h +125 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/OrderingMethods/Amd.h +413 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/OrderingMethods/Eigen_Colamd.h +1690 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/OrderingMethods/InternalHeaderCheck.h +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/OrderingMethods/Ordering.h +146 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/PaStiXSupport/InternalHeaderCheck.h +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/PaStiXSupport/PaStiXSupport.h +632 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/PardisoSupport/InternalHeaderCheck.h +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/PardisoSupport/PardisoSupport.h +499 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/QR/ColPivHouseholderQR.h +674 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/QR/ColPivHouseholderQR_LAPACKE.h +161 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/QR/CompleteOrthogonalDecomposition.h +648 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/QR/FullPivHouseholderQR.h +733 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/QR/HouseholderQR.h +543 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/QR/HouseholderQR_LAPACKE.h +77 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/QR/InternalHeaderCheck.h +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SPQRSupport/InternalHeaderCheck.h +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SPQRSupport/SuiteSparseQRSupport.h +315 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SVD/BDCSVD.h +1470 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SVD/BDCSVD_LAPACKE.h +174 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SVD/InternalHeaderCheck.h +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SVD/JacobiSVD.h +827 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SVD/JacobiSVD_LAPACKE.h +127 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SVD/SVDBase.h +436 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SVD/UpperBidiagonalization.h +379 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseCholesky/InternalHeaderCheck.h +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseCholesky/SimplicialCholesky.h +863 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseCholesky/SimplicialCholesky_impl.h +388 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseCore/AmbiVector.h +329 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseCore/CompressedStorage.h +206 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseCore/ConservativeSparseSparseProduct.h +308 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseCore/InternalHeaderCheck.h +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseCore/SparseAssign.h +279 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseCore/SparseBlock.h +534 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseCore/SparseColEtree.h +194 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseCore/SparseCompressedBase.h +591 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseCore/SparseCwiseBinaryOp.h +938 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseCore/SparseCwiseUnaryOp.h +142 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseCore/SparseDenseProduct.h +314 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseCore/SparseDiagonalProduct.h +138 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseCore/SparseDot.h +100 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseCore/SparseFuzzy.h +31 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseCore/SparseMap.h +295 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseCore/SparseMatrix.h +1876 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseCore/SparseMatrixBase.h +451 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseCore/SparsePermutation.h +249 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseCore/SparseProduct.h +178 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseCore/SparseRedux.h +47 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseCore/SparseRef.h +370 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseCore/SparseSelfAdjointView.h +613 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseCore/SparseSolverBase.h +115 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseCore/SparseSparseProductWithPruning.h +184 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseCore/SparseTranspose.h +83 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseCore/SparseTriangularView.h +177 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseCore/SparseUtil.h +209 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseCore/SparseVector.h +532 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseCore/SparseView.h +225 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseCore/TriangularSolver.h +274 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseLU/InternalHeaderCheck.h +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseLU/SparseLU.h +969 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseLU/SparseLUImpl.h +79 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseLU/SparseLU_Memory.h +210 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseLU/SparseLU_Structs.h +113 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseLU/SparseLU_SupernodalMatrix.h +319 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseLU/SparseLU_Utils.h +75 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseLU/SparseLU_column_bmod.h +177 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseLU/SparseLU_column_dfs.h +168 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseLU/SparseLU_copy_to_ucol.h +106 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseLU/SparseLU_heap_relax_snode.h +114 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseLU/SparseLU_kernel_bmod.h +133 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseLU/SparseLU_panel_bmod.h +215 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseLU/SparseLU_panel_dfs.h +235 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseLU/SparseLU_pivotL.h +136 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseLU/SparseLU_pruneL.h +130 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseLU/SparseLU_relax_snode.h +81 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseQR/InternalHeaderCheck.h +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SparseQR/SparseQR.h +706 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/StlSupport/StdDeque.h +51 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/StlSupport/StdList.h +50 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/StlSupport/StdVector.h +51 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/StlSupport/details.h +82 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SuperLUSupport/InternalHeaderCheck.h +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/SuperLUSupport/SuperLUSupport.h +927 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/ThreadPool/Barrier.h +70 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/ThreadPool/CoreThreadPoolDevice.h +336 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/ThreadPool/EventCount.h +241 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/ThreadPool/ForkJoin.h +140 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/ThreadPool/InternalHeaderCheck.h +4 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/ThreadPool/NonBlockingThreadPool.h +587 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/ThreadPool/RunQueue.h +230 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/ThreadPool/ThreadCancel.h +21 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/ThreadPool/ThreadEnvironment.h +43 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/ThreadPool/ThreadLocal.h +289 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/ThreadPool/ThreadPoolInterface.h +50 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/ThreadPool/ThreadYield.h +16 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/UmfPackSupport/InternalHeaderCheck.h +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/UmfPackSupport/UmfPackSupport.h +606 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/misc/Image.h +80 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/misc/InternalHeaderCheck.h +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/misc/Kernel.h +77 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/misc/RealSvd2x2.h +53 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/misc/blas.h +97 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/misc/lapacke.h +10085 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/misc/lapacke_helpers.h +163 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/misc/lapacke_mangling.h +16 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/plugins/ArrayCwiseBinaryOps.inc +344 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/plugins/ArrayCwiseUnaryOps.inc +544 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/plugins/BlockMethods.inc +1370 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/plugins/CommonCwiseBinaryOps.inc +116 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/plugins/CommonCwiseUnaryOps.inc +167 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/plugins/IndexedViewMethods.inc +192 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/plugins/InternalHeaderCheck.inc +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/plugins/MatrixCwiseBinaryOps.inc +331 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/plugins/MatrixCwiseUnaryOps.inc +118 -0
- pyaac-0.1.0/include/eigen-5.0.0/Eigen/src/plugins/ReshapedMethods.inc +133 -0
- pyaac-0.1.0/include/eigen-5.0.0/INSTALL +35 -0
- pyaac-0.1.0/include/eigen-5.0.0/LICENSE +373 -0
- pyaac-0.1.0/include/eigen-5.0.0/README.md +5 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/BenchSparseUtil.h +129 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/BenchTimer.h +176 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/BenchUtil.h +86 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/README.txt +55 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/analyze-blocking-sizes.cpp +772 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/basicbench.cxxlist +28 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/basicbenchmark.cpp +34 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/basicbenchmark.h +54 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/benchBlasGemm.cpp +199 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/benchCholesky.cpp +124 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/benchEigenSolver.cpp +192 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/benchFFT.cpp +117 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/benchGeometry.cpp +120 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/benchVecAdd.cpp +131 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/bench_gemm.cpp +393 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/bench_move_semantics.cpp +52 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/bench_multi_compilers.sh +28 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/bench_norm.cpp +342 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/bench_reverse.cpp +76 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/bench_sum.cpp +16 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/bench_unrolling +12 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/benchmark-blocking-sizes.cpp +617 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/benchmark.cpp +36 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/benchmarkSlice.cpp +36 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/benchmarkX.cpp +34 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/benchmarkXcwise.cpp +32 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/benchmark_suite +18 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/CMakeLists.txt +107 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/COPYING +340 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/README +154 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/actions/action_aat_product.hh +118 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/actions/action_ata_product.hh +118 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/actions/action_atv_product.hh +120 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/actions/action_axpby.hh +116 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/actions/action_axpy.hh +124 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/actions/action_cholesky.hh +110 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/actions/action_ger.hh +114 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/actions/action_hessenberg.hh +200 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/actions/action_lu_decomp.hh +108 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/actions/action_lu_solve.hh +120 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/actions/action_matrix_matrix_product.hh +124 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/actions/action_matrix_matrix_product_bis.hh +131 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/actions/action_matrix_vector_product.hh +129 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/actions/action_partial_lu.hh +108 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/actions/action_rot.hh +104 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/actions/action_symv.hh +121 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/actions/action_syr2.hh +118 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/actions/action_trisolve.hh +119 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/actions/action_trisolve_matrix.hh +139 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/actions/action_trmm.hh +139 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/actions/basic_actions.hh +20 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/cmake/FindACML.cmake +51 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/cmake/FindATLAS.cmake +31 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/cmake/FindBLAZE.cmake +31 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/cmake/FindBlitz.cmake +40 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/cmake/FindCBLAS.cmake +35 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/cmake/FindGMM.cmake +17 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/cmake/FindMKL.cmake +65 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/cmake/FindMTL4.cmake +31 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/cmake/FindOPENBLAS.cmake +17 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/cmake/FindPackageHandleStandardArgs.cmake +60 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/cmake/FindTvmet.cmake +32 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/cmake/MacroOptionalAddSubdirectory.cmake +31 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/data/CMakeLists.txt +32 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/data/action_settings.txt +19 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/data/gnuplot_common_settings.hh +87 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/data/go_mean +58 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/data/mean.cxx +165 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/data/mk_gnuplot_script.sh +68 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/data/mk_mean_script.sh +52 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/data/mk_new_gnuplot.sh +54 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/data/perlib_plot_settings.txt +16 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/data/regularize.cxx +113 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/data/smooth.cxx +165 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/data/smooth_all.sh +68 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/generic_bench/bench.hh +149 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/generic_bench/bench_parameter.hh +53 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/generic_bench/btl.hh +205 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/generic_bench/init/init_function.hh +35 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/generic_bench/init/init_matrix.hh +61 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/generic_bench/init/init_vector.hh +36 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/generic_bench/static/bench_static.hh +61 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/generic_bench/static/intel_bench_fixed_size.hh +60 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/generic_bench/static/static_size_generator.hh +52 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/generic_bench/timers/STL_perf_analyzer.hh +70 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/generic_bench/timers/STL_timer.hh +75 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/generic_bench/timers/mixed_perf_analyzer.hh +58 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/generic_bench/timers/portable_perf_analyzer.hh +89 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/generic_bench/timers/portable_perf_analyzer_old.hh +110 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/generic_bench/timers/portable_timer.hh +143 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/generic_bench/timers/x86_perf_analyzer.hh +91 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/generic_bench/timers/x86_timer.hh +176 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/generic_bench/utils/size_lin_log.hh +56 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/generic_bench/utils/size_log.hh +50 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/generic_bench/utils/utilities.h +128 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/generic_bench/utils/xy_file.hh +71 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/BLAS/CMakeLists.txt +47 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/BLAS/blas.h +545 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/BLAS/blas_interface.hh +79 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/BLAS/blas_interface_impl.hh +139 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/BLAS/c_interface_base.h +61 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/BLAS/main.cpp +69 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/STL/CMakeLists.txt +2 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/STL/STL_interface.hh +202 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/STL/main.cpp +39 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/blaze/CMakeLists.txt +13 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/blaze/blaze_interface.hh +126 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/blaze/main.cpp +36 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/blitz/CMakeLists.txt +17 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/blitz/blitz_LU_solve_interface.hh +160 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/blitz/blitz_interface.hh +137 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/blitz/btl_blitz.cpp +47 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/blitz/btl_tiny_blitz.cpp +35 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/blitz/tiny_blitz_interface.hh +91 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/eigen2/CMakeLists.txt +19 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/eigen2/btl_tiny_eigen2.cpp +42 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/eigen2/eigen2_interface.hh +159 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/eigen2/main_adv.cpp +41 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/eigen2/main_linear.cpp +30 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/eigen2/main_matmat.cpp +32 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/eigen2/main_vecmat.cpp +33 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/eigen3/CMakeLists.txt +65 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/eigen3/btl_tiny_eigen3.cpp +42 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/eigen3/eigen3_interface.hh +224 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/eigen3/main_adv.cpp +41 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/eigen3/main_linear.cpp +31 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/eigen3/main_matmat.cpp +32 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/eigen3/main_vecmat.cpp +33 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/gmm/CMakeLists.txt +6 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/gmm/gmm_LU_solve_interface.hh +160 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/gmm/gmm_interface.hh +123 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/gmm/main.cpp +47 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/mtl4/.kdbgrc.main +12 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/mtl4/CMakeLists.txt +6 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/mtl4/main.cpp +42 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/mtl4/mtl4_LU_solve_interface.hh +160 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/mtl4/mtl4_interface.hh +124 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/tensors/CMakeLists.txt +44 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/tensors/main_linear.cpp +22 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/tensors/main_matmat.cpp +20 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/tensors/main_vecmat.cpp +20 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/tensors/tensor_interface.hh +98 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/tvmet/CMakeLists.txt +6 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/tvmet/main.cpp +37 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/tvmet/tvmet_interface.hh +86 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/ublas/CMakeLists.txt +7 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/ublas/main.cpp +41 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/btl/libs/ublas/ublas_interface.hh +125 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/check_cache_queries.cpp +97 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/dense_solvers.cpp +172 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/eig33.cpp +189 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/geometry.cpp +120 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/perf_monitoring/changesets.txt +95 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/perf_monitoring/gemm.cpp +5 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/perf_monitoring/gemm_common.h +61 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/perf_monitoring/gemm_settings.txt +15 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/perf_monitoring/gemm_square_settings.txt +11 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/perf_monitoring/gemv.cpp +5 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/perf_monitoring/gemv_common.h +63 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/perf_monitoring/gemv_settings.txt +11 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/perf_monitoring/gemv_square_settings.txt +13 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/perf_monitoring/gemvt.cpp +5 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/perf_monitoring/lazy_gemm.cpp +115 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/perf_monitoring/lazy_gemm_settings.txt +15 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/perf_monitoring/llt.cpp +10 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/perf_monitoring/make_plot.sh +112 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/perf_monitoring/resources/chart_footer.html +41 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/perf_monitoring/resources/chart_header.html +45 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/perf_monitoring/resources/footer.html +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/perf_monitoring/resources/header.html +42 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/perf_monitoring/resources/s1.js +1 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/perf_monitoring/resources/s2.js +1 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/perf_monitoring/run.sh +183 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/perf_monitoring/runall.sh +72 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/perf_monitoring/trmv_lo.cpp +5 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/perf_monitoring/trmv_lot.cpp +7 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/perf_monitoring/trmv_up.cpp +5 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/perf_monitoring/trmv_upt.cpp +7 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/product_threshold.cpp +164 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/quat_slerp.cpp +220 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/quatmul.cpp +44 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/sparse_cholesky.cpp +215 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/sparse_dense_product.cpp +185 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/sparse_lu.cpp +131 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/sparse_product.cpp +310 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/sparse_randomsetter.cpp +125 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/sparse_setter.cpp +440 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/sparse_transpose.cpp +108 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/sparse_trisolver.cpp +215 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/spbench/CMakeLists.txt +92 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/spbench/sp_solver.cpp +129 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/spbench/spbench.dtd +31 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/spbench/spbenchsolver.cpp +82 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/spbench/spbenchsolver.h +565 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/spbench/spbenchstyle.h +93 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/spbench/test_sparseLU.cpp +94 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/spmv.cpp +216 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/tensors/README +26 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/tensors/benchmark.h +45 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/tensors/benchmark_main.cc +231 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/tensors/contraction_benchmarks_cpu.cc +37 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/tensors/eigen_sycl_bench.sh +29 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/tensors/eigen_sycl_bench_contract.sh +7 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/tensors/tensor_benchmarks.h +531 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/tensors/tensor_benchmarks_cpu.cc +165 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/tensors/tensor_benchmarks_fp16_gpu.cu +74 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/tensors/tensor_benchmarks_gpu.cu +72 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/tensors/tensor_benchmarks_sycl.cc +139 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/tensors/tensor_contract_sycl_bench.cc +322 -0
- pyaac-0.1.0/include/eigen-5.0.0/bench/vdw_new.cpp +50 -0
- pyaac-0.1.0/include/eigen-5.0.0/blas/BandTriangularSolver.h +84 -0
- pyaac-0.1.0/include/eigen-5.0.0/blas/CMakeLists.txt +46 -0
- pyaac-0.1.0/include/eigen-5.0.0/blas/GeneralRank1Update.h +42 -0
- pyaac-0.1.0/include/eigen-5.0.0/blas/PackedSelfadjointProduct.h +52 -0
- pyaac-0.1.0/include/eigen-5.0.0/blas/PackedTriangularMatrixVector.h +82 -0
- pyaac-0.1.0/include/eigen-5.0.0/blas/PackedTriangularSolverVector.h +76 -0
- pyaac-0.1.0/include/eigen-5.0.0/blas/README.txt +6 -0
- pyaac-0.1.0/include/eigen-5.0.0/blas/Rank2Update.h +56 -0
- pyaac-0.1.0/include/eigen-5.0.0/blas/blas.h +484 -0
- pyaac-0.1.0/include/eigen-5.0.0/blas/common.h +153 -0
- pyaac-0.1.0/include/eigen-5.0.0/blas/complex_double.cpp +20 -0
- pyaac-0.1.0/include/eigen-5.0.0/blas/complex_single.cpp +20 -0
- pyaac-0.1.0/include/eigen-5.0.0/blas/double.cpp +43 -0
- pyaac-0.1.0/include/eigen-5.0.0/blas/f2c/chbmv.c +456 -0
- pyaac-0.1.0/include/eigen-5.0.0/blas/f2c/chpmv.c +407 -0
- pyaac-0.1.0/include/eigen-5.0.0/blas/f2c/complexdots.c +73 -0
- pyaac-0.1.0/include/eigen-5.0.0/blas/f2c/ctbmv.c +586 -0
- pyaac-0.1.0/include/eigen-5.0.0/blas/f2c/datatypes.h +27 -0
- pyaac-0.1.0/include/eigen-5.0.0/blas/f2c/drotm.c +213 -0
- pyaac-0.1.0/include/eigen-5.0.0/blas/f2c/drotmg.c +293 -0
- pyaac-0.1.0/include/eigen-5.0.0/blas/f2c/dsbmv.c +356 -0
- pyaac-0.1.0/include/eigen-5.0.0/blas/f2c/dspmv.c +308 -0
- pyaac-0.1.0/include/eigen-5.0.0/blas/f2c/dtbmv.c +417 -0
- pyaac-0.1.0/include/eigen-5.0.0/blas/f2c/lsame.c +109 -0
- pyaac-0.1.0/include/eigen-5.0.0/blas/f2c/srotm.c +212 -0
- pyaac-0.1.0/include/eigen-5.0.0/blas/f2c/srotmg.c +293 -0
- pyaac-0.1.0/include/eigen-5.0.0/blas/f2c/ssbmv.c +359 -0
- pyaac-0.1.0/include/eigen-5.0.0/blas/f2c/sspmv.c +308 -0
- pyaac-0.1.0/include/eigen-5.0.0/blas/f2c/stbmv.c +417 -0
- pyaac-0.1.0/include/eigen-5.0.0/blas/f2c/zhbmv.c +456 -0
- pyaac-0.1.0/include/eigen-5.0.0/blas/f2c/zhpmv.c +407 -0
- pyaac-0.1.0/include/eigen-5.0.0/blas/f2c/ztbmv.c +586 -0
- pyaac-0.1.0/include/eigen-5.0.0/blas/level1_cplx_impl.h +159 -0
- pyaac-0.1.0/include/eigen-5.0.0/blas/level1_impl.h +133 -0
- pyaac-0.1.0/include/eigen-5.0.0/blas/level1_real_impl.h +130 -0
- pyaac-0.1.0/include/eigen-5.0.0/blas/level2_cplx_impl.h +362 -0
- pyaac-0.1.0/include/eigen-5.0.0/blas/level2_impl.h +616 -0
- pyaac-0.1.0/include/eigen-5.0.0/blas/level2_real_impl.h +313 -0
- pyaac-0.1.0/include/eigen-5.0.0/blas/level3_impl.h +985 -0
- pyaac-0.1.0/include/eigen-5.0.0/blas/single.cpp +23 -0
- pyaac-0.1.0/include/eigen-5.0.0/blas/testing/CMakeLists.txt +52 -0
- pyaac-0.1.0/include/eigen-5.0.0/blas/testing/cblat1.f +724 -0
- pyaac-0.1.0/include/eigen-5.0.0/blas/testing/cblat2.dat +35 -0
- pyaac-0.1.0/include/eigen-5.0.0/blas/testing/cblat2.f +3279 -0
- pyaac-0.1.0/include/eigen-5.0.0/blas/testing/cblat3.dat +23 -0
- pyaac-0.1.0/include/eigen-5.0.0/blas/testing/cblat3.f +3492 -0
- pyaac-0.1.0/include/eigen-5.0.0/blas/testing/dblat1.f +1065 -0
- pyaac-0.1.0/include/eigen-5.0.0/blas/testing/dblat2.dat +34 -0
- pyaac-0.1.0/include/eigen-5.0.0/blas/testing/dblat2.f +3176 -0
- pyaac-0.1.0/include/eigen-5.0.0/blas/testing/dblat3.dat +20 -0
- pyaac-0.1.0/include/eigen-5.0.0/blas/testing/dblat3.f +2873 -0
- pyaac-0.1.0/include/eigen-5.0.0/blas/testing/runblastest.sh +45 -0
- pyaac-0.1.0/include/eigen-5.0.0/blas/testing/sblat1.f +1021 -0
- pyaac-0.1.0/include/eigen-5.0.0/blas/testing/sblat2.dat +34 -0
- pyaac-0.1.0/include/eigen-5.0.0/blas/testing/sblat2.f +3176 -0
- pyaac-0.1.0/include/eigen-5.0.0/blas/testing/sblat3.dat +20 -0
- pyaac-0.1.0/include/eigen-5.0.0/blas/testing/sblat3.f +2873 -0
- pyaac-0.1.0/include/eigen-5.0.0/blas/testing/zblat1.f +724 -0
- pyaac-0.1.0/include/eigen-5.0.0/blas/testing/zblat2.dat +35 -0
- pyaac-0.1.0/include/eigen-5.0.0/blas/testing/zblat2.f +3287 -0
- pyaac-0.1.0/include/eigen-5.0.0/blas/testing/zblat3.dat +23 -0
- pyaac-0.1.0/include/eigen-5.0.0/blas/testing/zblat3.f +3502 -0
- pyaac-0.1.0/include/eigen-5.0.0/blas/xerbla.cpp +18 -0
- pyaac-0.1.0/include/eigen-5.0.0/ci/CTest2JUnit.xsl +120 -0
- pyaac-0.1.0/include/eigen-5.0.0/ci/README.md +12 -0
- pyaac-0.1.0/include/eigen-5.0.0/ci/build.linux.gitlab-ci.yml +350 -0
- pyaac-0.1.0/include/eigen-5.0.0/ci/build.windows.gitlab-ci.yml +110 -0
- pyaac-0.1.0/include/eigen-5.0.0/ci/checkformat.gitlab-ci.yml +10 -0
- pyaac-0.1.0/include/eigen-5.0.0/ci/common.gitlab-ci.yml +40 -0
- pyaac-0.1.0/include/eigen-5.0.0/ci/deploy.gitlab-ci.yml +41 -0
- pyaac-0.1.0/include/eigen-5.0.0/ci/scripts/build.linux.script.sh +31 -0
- pyaac-0.1.0/include/eigen-5.0.0/ci/scripts/build.windows.script.ps1 +44 -0
- pyaac-0.1.0/include/eigen-5.0.0/ci/scripts/build_and_install_doxygen.sh +6 -0
- pyaac-0.1.0/include/eigen-5.0.0/ci/scripts/common.linux.before_script.sh +46 -0
- pyaac-0.1.0/include/eigen-5.0.0/ci/scripts/common.windows.before_script.ps1 +8 -0
- pyaac-0.1.0/include/eigen-5.0.0/ci/scripts/test.linux.after_script.sh +19 -0
- pyaac-0.1.0/include/eigen-5.0.0/ci/scripts/test.linux.script.sh +31 -0
- pyaac-0.1.0/include/eigen-5.0.0/ci/scripts/test.windows.after_script.ps1 +17 -0
- pyaac-0.1.0/include/eigen-5.0.0/ci/scripts/test.windows.script.ps1 +30 -0
- pyaac-0.1.0/include/eigen-5.0.0/ci/scripts/vars.linux.sh +14 -0
- pyaac-0.1.0/include/eigen-5.0.0/ci/scripts/vars.windows.ps1 +11 -0
- pyaac-0.1.0/include/eigen-5.0.0/ci/test.linux.gitlab-ci.yml +452 -0
- pyaac-0.1.0/include/eigen-5.0.0/ci/test.windows.gitlab-ci.yml +109 -0
- pyaac-0.1.0/include/eigen-5.0.0/cmake/ComputeCppCompilerChecks.cmake +50 -0
- pyaac-0.1.0/include/eigen-5.0.0/cmake/ComputeCppIRMap.cmake +18 -0
- pyaac-0.1.0/include/eigen-5.0.0/cmake/Eigen3Config.cmake.in +8 -0
- pyaac-0.1.0/include/eigen-5.0.0/cmake/Eigen3ConfigVersion.cmake.in +91 -0
- pyaac-0.1.0/include/eigen-5.0.0/cmake/EigenConfigureTesting.cmake +74 -0
- pyaac-0.1.0/include/eigen-5.0.0/cmake/EigenSmokeTestList.cmake +136 -0
- pyaac-0.1.0/include/eigen-5.0.0/cmake/EigenTesting.cmake +768 -0
- pyaac-0.1.0/include/eigen-5.0.0/cmake/EigenUninstall.cmake +40 -0
- pyaac-0.1.0/include/eigen-5.0.0/cmake/FindAccelerate.cmake +28 -0
- pyaac-0.1.0/include/eigen-5.0.0/cmake/FindAdolc.cmake +20 -0
- pyaac-0.1.0/include/eigen-5.0.0/cmake/FindBLASEXT.cmake +384 -0
- pyaac-0.1.0/include/eigen-5.0.0/cmake/FindCHOLMOD.cmake +89 -0
- pyaac-0.1.0/include/eigen-5.0.0/cmake/FindCLANG_FORMAT.cmake +61 -0
- pyaac-0.1.0/include/eigen-5.0.0/cmake/FindComputeCpp.cmake +455 -0
- pyaac-0.1.0/include/eigen-5.0.0/cmake/FindDPCPP.cmake +62 -0
- pyaac-0.1.0/include/eigen-5.0.0/cmake/FindFFTW.cmake +120 -0
- pyaac-0.1.0/include/eigen-5.0.0/cmake/FindGMP.cmake +21 -0
- pyaac-0.1.0/include/eigen-5.0.0/cmake/FindGoogleHash.cmake +23 -0
- pyaac-0.1.0/include/eigen-5.0.0/cmake/FindHWLOC.cmake +332 -0
- pyaac-0.1.0/include/eigen-5.0.0/cmake/FindKLU.cmake +48 -0
- pyaac-0.1.0/include/eigen-5.0.0/cmake/FindMPFR.cmake +83 -0
- pyaac-0.1.0/include/eigen-5.0.0/cmake/FindMPREAL.cmake +103 -0
- pyaac-0.1.0/include/eigen-5.0.0/cmake/FindMetis.cmake +265 -0
- pyaac-0.1.0/include/eigen-5.0.0/cmake/FindPASTIX.cmake +704 -0
- pyaac-0.1.0/include/eigen-5.0.0/cmake/FindPTSCOTCH.cmake +422 -0
- pyaac-0.1.0/include/eigen-5.0.0/cmake/FindSCOTCH.cmake +370 -0
- pyaac-0.1.0/include/eigen-5.0.0/cmake/FindSPQR.cmake +41 -0
- pyaac-0.1.0/include/eigen-5.0.0/cmake/FindStandardMathLibrary.cmake +70 -0
- pyaac-0.1.0/include/eigen-5.0.0/cmake/FindSuperLU.cmake +97 -0
- pyaac-0.1.0/include/eigen-5.0.0/cmake/FindTriSYCL.cmake +173 -0
- pyaac-0.1.0/include/eigen-5.0.0/cmake/FindUMFPACK.cmake +53 -0
- pyaac-0.1.0/include/eigen-5.0.0/cmake/RegexUtils.cmake +19 -0
- pyaac-0.1.0/include/eigen-5.0.0/cmake/SyclConfigureTesting.cmake +64 -0
- pyaac-0.1.0/include/eigen-5.0.0/cmake/Version.in +14 -0
- pyaac-0.1.0/include/eigen-5.0.0/debug/gdb/__init__.py +1 -0
- pyaac-0.1.0/include/eigen-5.0.0/debug/gdb/printers.py +338 -0
- pyaac-0.1.0/include/eigen-5.0.0/debug/lldb/eigenlldb.py +234 -0
- pyaac-0.1.0/include/eigen-5.0.0/debug/msvc/eigen.natvis +235 -0
- pyaac-0.1.0/include/eigen-5.0.0/debug/msvc/eigen_autoexp_part.dat +295 -0
- pyaac-0.1.0/include/eigen-5.0.0/demos/CMakeLists.txt +13 -0
- pyaac-0.1.0/include/eigen-5.0.0/demos/mandelbrot/CMakeLists.txt +21 -0
- pyaac-0.1.0/include/eigen-5.0.0/demos/mandelbrot/README +10 -0
- pyaac-0.1.0/include/eigen-5.0.0/demos/mandelbrot/mandelbrot.cpp +196 -0
- pyaac-0.1.0/include/eigen-5.0.0/demos/mandelbrot/mandelbrot.h +67 -0
- pyaac-0.1.0/include/eigen-5.0.0/demos/mix_eigen_and_c/README +9 -0
- pyaac-0.1.0/include/eigen-5.0.0/demos/mix_eigen_and_c/binary_library.cpp +103 -0
- pyaac-0.1.0/include/eigen-5.0.0/demos/mix_eigen_and_c/binary_library.h +55 -0
- pyaac-0.1.0/include/eigen-5.0.0/demos/mix_eigen_and_c/example.c +61 -0
- pyaac-0.1.0/include/eigen-5.0.0/demos/opengl/CMakeLists.txt +28 -0
- pyaac-0.1.0/include/eigen-5.0.0/demos/opengl/README +13 -0
- pyaac-0.1.0/include/eigen-5.0.0/demos/opengl/camera.cpp +219 -0
- pyaac-0.1.0/include/eigen-5.0.0/demos/opengl/camera.h +111 -0
- pyaac-0.1.0/include/eigen-5.0.0/demos/opengl/gpuhelper.cpp +127 -0
- pyaac-0.1.0/include/eigen-5.0.0/demos/opengl/gpuhelper.h +187 -0
- pyaac-0.1.0/include/eigen-5.0.0/demos/opengl/icosphere.cpp +105 -0
- pyaac-0.1.0/include/eigen-5.0.0/demos/opengl/icosphere.h +30 -0
- pyaac-0.1.0/include/eigen-5.0.0/demos/opengl/quaternion_demo.cpp +587 -0
- pyaac-0.1.0/include/eigen-5.0.0/demos/opengl/quaternion_demo.h +100 -0
- pyaac-0.1.0/include/eigen-5.0.0/demos/opengl/trackball.cpp +51 -0
- pyaac-0.1.0/include/eigen-5.0.0/demos/opengl/trackball.h +41 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/AsciiQuickReference.txt +228 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/B01_Experimental.dox +52 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/CMakeLists.txt +122 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/ClassHierarchy.dox +129 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/CoeffwiseMathFunctionsTable.dox +613 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/CustomizingEigen_CustomScalar.dox +121 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/CustomizingEigen_InheritingMatrix.dox +34 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/CustomizingEigen_NullaryExpr.dox +86 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/CustomizingEigen_Plugins.dox +69 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/DenseDecompositionBenchmark.dox +42 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/Doxyfile.in +178 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/Eigen_Silly_Professor_64x64.png +0 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/FixedSizeVectorizable.dox +38 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/FunctionsTakingEigenTypes.dox +217 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/HiPerformance.dox +128 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/InplaceDecomposition.dox +115 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/InsideEigenExample.dox +500 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/LeastSquares.dox +75 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/Manual.dox +191 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/MatrixfreeSolverExample.dox +20 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/NewExpressionType.dox +143 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/Overview.dox +32 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/PassingByValue.dox +40 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/Pitfalls.dox +149 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/PreprocessorDirectives.dox +165 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/QuickReference.dox +808 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/QuickStartGuide.dox +100 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/SparseLinearSystems.dox +228 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/SparseQuickReference.dox +273 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/StlContainers.dox +73 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/StorageOrders.dox +86 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/StructHavingEigenMembers.dox +203 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/TemplateKeyword.dox +133 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/TopicAliasing.dox +237 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/TopicAssertions.dox +108 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/TopicCMakeGuide.dox +65 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/TopicEigenExpressionTemplates.dox +12 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/TopicLazyEvaluation.dox +97 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/TopicLinearAlgebraDecompositions.dox +287 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/TopicMultithreading.dox +67 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/TopicResizing.dox +11 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/TopicScalarTypes.dox +12 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/TopicVectorization.dox +9 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/TutorialAdvancedInitialization.dox +162 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/TutorialArrayClass.dox +192 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/TutorialBlockOperations.dox +242 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/TutorialGeometry.dox +242 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/TutorialLinearAlgebra.dox +299 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/TutorialMapClass.dox +86 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/TutorialMatrixArithmetic.dox +214 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/TutorialMatrixClass.dox +295 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/TutorialReductionsVisitorsBroadcasting.dox +266 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/TutorialReshape.dox +82 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/TutorialSTL.dox +66 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/TutorialSlicingIndexing.dox +245 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/TutorialSparse.dox +363 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/TutorialSparse_example_details.dox +4 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/UnalignedArrayAssert.dox +133 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/UsingBlasLapackBackends.dox +139 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/UsingIntelMKL.dox +113 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/UsingNVCC.dox +30 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/WrongStackAlignment.dox +56 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/eigendoxy.css +233 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/eigendoxy_footer.html.in +18 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/eigendoxy_header.html.in +82 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/eigendoxy_layout.xml.in +269 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/eigendoxy_tabs.css +59 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/examples/.krazy +2 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/examples/CMakeLists.txt +17 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/examples/CustomizingEigen_Inheritance.cpp +25 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/examples/Cwise_erf.cpp +7 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/examples/Cwise_erfc.cpp +7 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/examples/Cwise_lgamma.cpp +7 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/examples/DenseBase_middleCols_int.cpp +11 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/examples/DenseBase_middleRows_int.cpp +11 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/examples/DenseBase_template_int_middleCols.cpp +11 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/examples/DenseBase_template_int_middleRows.cpp +11 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/examples/QuickStart_example.cpp +13 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/examples/QuickStart_example2_dynamic.cpp +14 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/examples/QuickStart_example2_fixed.cpp +14 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/examples/TemplateKeyword_flexible.cpp +18 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/examples/TemplateKeyword_simple.cpp +18 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/examples/TutorialInplaceLU.cpp +53 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/examples/TutorialLinAlgComputeTwice.cpp +19 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/examples/TutorialLinAlgExComputeSolveError.cpp +12 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/examples/TutorialLinAlgExSolveColPivHouseholderQR.cpp +13 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/examples/TutorialLinAlgExSolveLDLT.cpp +12 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/examples/TutorialLinAlgInverseDeterminant.cpp +10 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/examples/TutorialLinAlgRankRevealing.cpp +14 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/examples/TutorialLinAlgSVDSolve.cpp +11 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/examples/TutorialLinAlgSelfAdjointEigenSolver.cpp +14 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/examples/TutorialLinAlgSetThreshold.cpp +11 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/examples/Tutorial_ArrayClass_accessors.cpp +21 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/examples/Tutorial_ArrayClass_addition.cpp +15 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/examples/Tutorial_ArrayClass_cwise_other.cpp +11 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/examples/Tutorial_ArrayClass_interop.cpp +18 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/examples/Tutorial_ArrayClass_interop_matrix.cpp +22 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/examples/Tutorial_ArrayClass_mult.cpp +10 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/examples/Tutorial_BlockOperations_block_assignment.cpp +13 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/examples/Tutorial_BlockOperations_colrow.cpp +14 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/examples/Tutorial_BlockOperations_corner.cpp +13 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/examples/Tutorial_BlockOperations_print_block.cpp +19 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/examples/Tutorial_BlockOperations_vector.cpp +13 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/examples/Tutorial_PartialLU_solve.cpp +14 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/examples/Tutorial_ReductionsVisitorsBroadcasting_broadcast_1nn.cpp +18 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/examples/Tutorial_ReductionsVisitorsBroadcasting_broadcast_simple.cpp +18 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/examples/Tutorial_ReductionsVisitorsBroadcasting_broadcast_simple_rowwise.cpp +18 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/examples/Tutorial_ReductionsVisitorsBroadcasting_colwise.cpp +10 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/examples/Tutorial_ReductionsVisitorsBroadcasting_maxnorm.cpp +16 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/examples/Tutorial_ReductionsVisitorsBroadcasting_reductions_bool.cpp +16 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/examples/Tutorial_ReductionsVisitorsBroadcasting_reductions_norm.cpp +22 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/examples/Tutorial_ReductionsVisitorsBroadcasting_reductions_operatornorm.cpp +13 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/examples/Tutorial_ReductionsVisitorsBroadcasting_rowwise.cpp +10 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/examples/Tutorial_ReductionsVisitorsBroadcasting_visitors.cpp +19 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/examples/Tutorial_simple_example_dynamic_size.cpp +21 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/examples/Tutorial_simple_example_fixed_size.cpp +11 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/examples/class_Block.cpp +20 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/examples/class_CwiseBinaryOp.cpp +17 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/examples/class_CwiseUnaryOp.cpp +18 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/examples/class_CwiseUnaryOp_ptrfun.cpp +16 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/examples/class_FixedBlock.cpp +20 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/examples/class_FixedReshaped.cpp +16 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/examples/class_FixedVectorBlock.cpp +21 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/examples/class_Reshaped.cpp +16 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/examples/class_VectorBlock.cpp +21 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/examples/function_taking_eigenbase.cpp +14 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/examples/function_taking_ref.cpp +15 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/examples/make_circulant.cpp +11 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/examples/make_circulant.cpp.entry +4 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/examples/make_circulant.cpp.evaluator +24 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/examples/make_circulant.cpp.expression +16 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/examples/make_circulant.cpp.main +7 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/examples/make_circulant.cpp.preamble +5 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/examples/make_circulant.cpp.traits +18 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/examples/make_circulant2.cpp +46 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/examples/matrixfree_cg.cpp +119 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/examples/nullary_indexing.cpp +60 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/examples/tut_arithmetic_add_sub.cpp +17 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/examples/tut_arithmetic_dot_cross.cpp +17 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/examples/tut_arithmetic_matrix_mul.cpp +16 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/examples/tut_arithmetic_redux_basic.cpp +14 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/examples/tut_arithmetic_scalar_mul_div.cpp +13 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/examples/tut_matrix_coefficient_accessors.cpp +15 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/examples/tut_matrix_resize.cpp +13 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/examples/tut_matrix_resize_fixed_size.cpp +8 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/ftv2node.png +0 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/ftv2pnode.png +0 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/.krazy +2 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/AngleAxis_mimic_euler.cpp +4 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Array_initializer_list_23_cxx11.cpp +2 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Array_initializer_list_vector_cxx11.cpp +2 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Array_variadic_ctor_cxx11.cpp +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/BiCGSTAB_simple.cpp +11 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/BiCGSTAB_step_by_step.cpp +14 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/CMakeLists.txt +32 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/ColPivHouseholderQR_solve.cpp +8 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/ComplexEigenSolver_compute.cpp +16 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/ComplexEigenSolver_eigenvalues.cpp +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/ComplexEigenSolver_eigenvectors.cpp +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/ComplexSchur_compute.cpp +6 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/ComplexSchur_matrixT.cpp +4 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/ComplexSchur_matrixU.cpp +4 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_abs.cpp +2 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_abs2.cpp +2 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_acos.cpp +2 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_arg.cpp +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_array_atan2_array.cpp +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_array_power_array.cpp +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_asin.cpp +2 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_atan.cpp +2 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_boolean_and.cpp +2 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_boolean_not.cpp +5 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_boolean_or.cpp +2 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_cbrt.cpp +2 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_ceil.cpp +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_cos.cpp +2 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_cosh.cpp +2 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_cube.cpp +2 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_equal_equal.cpp +2 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_exp.cpp +2 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_floor.cpp +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_greater.cpp +2 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_greater_equal.cpp +2 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_inverse.cpp +2 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_isFinite.cpp +5 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_isInf.cpp +5 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_isNaN.cpp +5 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_less.cpp +2 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_less_equal.cpp +2 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_log.cpp +2 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_log10.cpp +2 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_max.cpp +2 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_min.cpp +2 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_minus.cpp +2 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_minus_equal.cpp +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_not_equal.cpp +2 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_plus.cpp +2 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_plus_equal.cpp +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_pow.cpp +2 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_product.cpp +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_quotient.cpp +2 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_rint.cpp +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_round.cpp +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_scalar_power_array.cpp +2 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_sign.cpp +2 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_sin.cpp +2 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_sinh.cpp +2 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_slash_equal.cpp +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_sqrt.cpp +2 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_square.cpp +2 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_tan.cpp +2 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_tanh.cpp +2 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_times_equal.cpp +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Cwise_trunc.cpp +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/DenseBase_LinSpaced.cpp +2 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/DenseBase_LinSpacedInt.cpp +8 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/DenseBase_LinSpaced_seq_deprecated.cpp +2 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/DenseBase_setLinSpaced.cpp +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/DirectionWise_hnormalized.cpp +6 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/DirectionWise_replicate.cpp +4 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/DirectionWise_replicate_int.cpp +4 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/EigenSolver_EigenSolver_MatrixType.cpp +16 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/EigenSolver_compute.cpp +6 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/EigenSolver_eigenvalues.cpp +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/EigenSolver_eigenvectors.cpp +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/EigenSolver_pseudoEigenvectors.cpp +9 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/FullPivHouseholderQR_solve.cpp +8 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/FullPivLU_image.cpp +7 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/FullPivLU_kernel.cpp +5 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/FullPivLU_solve.cpp +9 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/GeneralizedEigenSolver.cpp +7 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/HessenbergDecomposition_compute.cpp +6 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/HessenbergDecomposition_matrixH.cpp +8 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/HessenbergDecomposition_packedMatrix.cpp +8 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/HouseholderQR_householderQ.cpp +7 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/HouseholderQR_solve.cpp +9 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/HouseholderSequence_HouseholderSequence.cpp +31 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/IOFormat.cpp +14 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/JacobiSVD_basic.cpp +9 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Jacobi_makeGivens.cpp +6 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Jacobi_makeJacobi.cpp +8 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/LLT_example.cpp +12 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/LLT_solve.cpp +7 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/LeastSquaresNormalEquations.cpp +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/LeastSquaresQR.cpp +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Map_general_stride.cpp +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Map_inner_stride.cpp +4 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Map_outer_stride.cpp +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Map_placement_new.cpp +5 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Map_simple.cpp +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_adjoint.cpp +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_all.cpp +7 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_applyOnTheLeft.cpp +5 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_applyOnTheRight.cpp +7 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_array.cpp +4 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_array_const.cpp +4 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_asDiagonal.cpp +1 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_block_int_int.cpp +5 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_block_int_int_int_int.cpp +5 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_bottomLeftCorner_int_int.cpp +6 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_bottomRightCorner_int_int.cpp +6 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_bottomRows_int.cpp +6 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_cast.cpp +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_col.cpp +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_colwise.cpp +4 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_colwise_iterator_cxx11.cpp +11 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_computeInverseAndDetWithCheck.cpp +12 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_computeInverseWithCheck.cpp +10 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_cwiseAbs.cpp +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_cwiseAbs2.cpp +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_cwiseArg.cpp +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_cwiseEqual.cpp +6 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_cwiseInverse.cpp +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_cwiseMax.cpp +2 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_cwiseMin.cpp +2 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_cwiseNotEqual.cpp +6 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_cwiseProduct.cpp +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_cwiseQuotient.cpp +2 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_cwiseSign.cpp +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_cwiseSqrt.cpp +2 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_diagonal.cpp +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_diagonal_int.cpp +5 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_diagonal_template_int.cpp +5 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_eigenvalues.cpp +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_end_int.cpp +5 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_eval.cpp +12 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_fixedBlock_int_int.cpp +5 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_hnormalized.cpp +6 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_homogeneous.cpp +7 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_identity.cpp +1 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_identity_int_int.cpp +1 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_inverse.cpp +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_isDiagonal.cpp +5 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_isIdentity.cpp +5 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_isOnes.cpp +5 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_isOrthogonal.cpp +6 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_isUnitary.cpp +5 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_isZero.cpp +5 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_leftCols_int.cpp +6 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_noalias.cpp +5 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_ones.cpp +2 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_ones_int.cpp +2 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_ones_int_int.cpp +1 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_operatorNorm.cpp +2 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_prod.cpp +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_random.cpp +1 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_random_int.cpp +1 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_random_int_int.cpp +1 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_replicate.cpp +4 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_replicate_int_int.cpp +4 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_reshaped_auto.cpp +4 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_reshaped_fixed.cpp +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_reshaped_int_int.cpp +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_reshaped_to_vector.cpp +4 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_reverse.cpp +7 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_rightCols_int.cpp +6 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_row.cpp +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_rowwise.cpp +4 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_segment_int_int.cpp +5 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_select.cpp +4 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_selfadjointView.cpp +6 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_set.cpp +10 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_setIdentity.cpp +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_setOnes.cpp +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_setRandom.cpp +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_setZero.cpp +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_start_int.cpp +5 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_template_int_bottomRows.cpp +6 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_template_int_end.cpp +5 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_template_int_int_block_int_int_int_int.cpp +5 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_template_int_int_bottomLeftCorner.cpp +6 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_template_int_int_bottomLeftCorner_int_int.cpp +6 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_template_int_int_bottomRightCorner.cpp +6 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_template_int_int_bottomRightCorner_int_int.cpp +6 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_template_int_int_topLeftCorner.cpp +6 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_template_int_int_topLeftCorner_int_int.cpp +6 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_template_int_int_topRightCorner.cpp +6 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_template_int_int_topRightCorner_int_int.cpp +6 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_template_int_leftCols.cpp +6 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_template_int_rightCols.cpp +6 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_template_int_segment.cpp +5 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_template_int_start.cpp +5 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_template_int_topRows.cpp +6 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_topLeftCorner_int_int.cpp +6 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_topRightCorner_int_int.cpp +6 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_topRows_int.cpp +6 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_transpose.cpp +7 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_triangularView.cpp +9 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_zero.cpp +2 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_zero_int.cpp +2 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/MatrixBase_zero_int_int.cpp +1 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Matrix_Map_stride.cpp +4 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Matrix_initializer_list_23_cxx11.cpp +2 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Matrix_initializer_list_vector_cxx11.cpp +2 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Matrix_resize_NoChange_int.cpp +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Matrix_resize_int.cpp +6 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Matrix_resize_int_NoChange.cpp +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Matrix_resize_int_int.cpp +9 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Matrix_setConstant_int.cpp +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Matrix_setConstant_int_int.cpp +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Matrix_setIdentity_int_int.cpp +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Matrix_setOnes_int.cpp +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Matrix_setOnes_int_int.cpp +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Matrix_setRandom_int.cpp +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Matrix_setRandom_int_int.cpp +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Matrix_setZero_int.cpp +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Matrix_setZero_int_int.cpp +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Matrix_variadic_ctor_cxx11.cpp +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/PartialPivLU_solve.cpp +7 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/PartialRedux_count.cpp +5 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/PartialRedux_maxCoeff.cpp +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/PartialRedux_minCoeff.cpp +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/PartialRedux_norm.cpp +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/PartialRedux_prod.cpp +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/PartialRedux_squaredNorm.cpp +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/PartialRedux_sum.cpp +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/RealQZ_compute.cpp +25 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/RealSchur_RealSchur_MatrixType.cpp +10 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/RealSchur_compute.cpp +6 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/SelfAdjointEigenSolver_SelfAdjointEigenSolver.cpp +7 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/SelfAdjointEigenSolver_SelfAdjointEigenSolver_MatrixType.cpp +17 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/SelfAdjointEigenSolver_SelfAdjointEigenSolver_MatrixType2.cpp +16 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/SelfAdjointEigenSolver_compute_MatrixType.cpp +7 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/SelfAdjointEigenSolver_compute_MatrixType2.cpp +9 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/SelfAdjointEigenSolver_eigenvalues.cpp +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/SelfAdjointEigenSolver_eigenvectors.cpp +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/SelfAdjointEigenSolver_operatorInverseSqrt.cpp +9 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/SelfAdjointEigenSolver_operatorSqrt.cpp +8 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/SelfAdjointView_eigenvalues.cpp +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/SelfAdjointView_operatorNorm.cpp +2 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Slicing_arrayexpr.cpp +5 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Slicing_custom_padding_cxx11.cpp +12 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Slicing_rawarray_cxx11.cpp +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Slicing_stdvector_cxx11.cpp +4 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/SparseMatrix_coeffs.cpp +9 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/TopicAliasing_block.cpp +7 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/TopicAliasing_block_correct.cpp +7 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/TopicAliasing_cwise.cpp +18 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/TopicAliasing_mult1.cpp +4 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/TopicAliasing_mult2.cpp +10 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/TopicAliasing_mult3.cpp +4 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/TopicAliasing_mult4.cpp +5 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/TopicAliasing_mult5.cpp +5 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/TopicStorageOrders_example.cpp +13 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Triangular_solve.cpp +10 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Tridiagonalization_Tridiagonalization_MatrixType.cpp +9 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Tridiagonalization_compute.cpp +9 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Tridiagonalization_decomposeInPlace.cpp +12 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Tridiagonalization_diagonal.cpp +13 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Tridiagonalization_householderCoefficients.cpp +6 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Tridiagonalization_packedMatrix.cpp +7 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Tutorial_AdvancedInitialization_Block.cpp +5 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Tutorial_AdvancedInitialization_CommaTemporary.cpp +4 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Tutorial_AdvancedInitialization_Join.cpp +11 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Tutorial_AdvancedInitialization_LinSpaced.cpp +7 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Tutorial_AdvancedInitialization_ThreeWays.cpp +19 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Tutorial_AdvancedInitialization_Zero.cpp +11 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Tutorial_Map_rowmajor.cpp +5 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Tutorial_Map_using.cpp +20 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Tutorial_ReshapeMat2Mat.cpp +5 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Tutorial_ReshapeMat2Vec.cpp +9 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Tutorial_SlicingCol.cpp +11 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Tutorial_SlicingVec.cpp +4 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Tutorial_commainit_01.cpp +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Tutorial_commainit_01b.cpp +5 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Tutorial_commainit_02.cpp +5 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Tutorial_range_for_loop_1d_cxx11.cpp +4 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Tutorial_range_for_loop_2d_cxx11.cpp +4 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Tutorial_reshaped_vs_resize_1.cpp +5 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Tutorial_reshaped_vs_resize_2.cpp +6 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Tutorial_solve_matrix_inverse.cpp +6 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Tutorial_solve_multiple_rhs.cpp +10 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Tutorial_solve_reuse_decomposition.cpp +13 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Tutorial_solve_singular.cpp +9 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Tutorial_solve_triangular.cpp +8 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Tutorial_solve_triangular_inplace.cpp +6 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Tutorial_std_sort.cpp +4 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Tutorial_std_sort_rows_cxx11.cpp +4 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/VectorwiseOp_homogeneous.cpp +8 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/Vectorwise_reverse.cpp +9 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/class_FullPivLU.cpp +15 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/compile_snippet.cpp.in +24 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/tut_arithmetic_redux_minmax.cpp +10 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/tut_arithmetic_transpose_aliasing.cpp +6 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/tut_arithmetic_transpose_conjugate.cpp +8 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/tut_arithmetic_transpose_inplace.cpp +6 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/snippets/tut_matrix_assignment_resizing.cpp +5 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/special_examples/CMakeLists.txt +31 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/special_examples/Tutorial_sparse_example.cpp +36 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/special_examples/Tutorial_sparse_example_details.cpp +42 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/special_examples/random_cpp11.cpp +12 -0
- pyaac-0.1.0/include/eigen-5.0.0/doc/tutorial.cpp +61 -0
- pyaac-0.1.0/include/eigen-5.0.0/eigen3.pc.in +9 -0
- pyaac-0.1.0/include/eigen-5.0.0/failtest/CMakeLists.txt +68 -0
- pyaac-0.1.0/include/eigen-5.0.0/failtest/bdcsvd_int.cpp +11 -0
- pyaac-0.1.0/include/eigen-5.0.0/failtest/block_nonconst_ctor_on_const_xpr_0.cpp +13 -0
- pyaac-0.1.0/include/eigen-5.0.0/failtest/block_nonconst_ctor_on_const_xpr_1.cpp +13 -0
- pyaac-0.1.0/include/eigen-5.0.0/failtest/block_nonconst_ctor_on_const_xpr_2.cpp +16 -0
- pyaac-0.1.0/include/eigen-5.0.0/failtest/block_on_const_type_actually_const_0.cpp +16 -0
- pyaac-0.1.0/include/eigen-5.0.0/failtest/block_on_const_type_actually_const_1.cpp +16 -0
- pyaac-0.1.0/include/eigen-5.0.0/failtest/colpivqr_int.cpp +13 -0
- pyaac-0.1.0/include/eigen-5.0.0/failtest/const_qualified_block_method_retval_0.cpp +16 -0
- pyaac-0.1.0/include/eigen-5.0.0/failtest/const_qualified_block_method_retval_1.cpp +16 -0
- pyaac-0.1.0/include/eigen-5.0.0/failtest/const_qualified_diagonal_method_retval.cpp +16 -0
- pyaac-0.1.0/include/eigen-5.0.0/failtest/const_qualified_transpose_method_retval.cpp +16 -0
- pyaac-0.1.0/include/eigen-5.0.0/failtest/cwiseunaryview_nonconst_ctor_on_const_xpr.cpp +13 -0
- pyaac-0.1.0/include/eigen-5.0.0/failtest/cwiseunaryview_on_const_type_actually_const.cpp +16 -0
- pyaac-0.1.0/include/eigen-5.0.0/failtest/diagonal_nonconst_ctor_on_const_xpr.cpp +13 -0
- pyaac-0.1.0/include/eigen-5.0.0/failtest/diagonal_on_const_type_actually_const.cpp +16 -0
- pyaac-0.1.0/include/eigen-5.0.0/failtest/eigensolver_cplx.cpp +11 -0
- pyaac-0.1.0/include/eigen-5.0.0/failtest/eigensolver_int.cpp +11 -0
- pyaac-0.1.0/include/eigen-5.0.0/failtest/failtest_sanity_check.cpp +5 -0
- pyaac-0.1.0/include/eigen-5.0.0/failtest/fullpivlu_int.cpp +11 -0
- pyaac-0.1.0/include/eigen-5.0.0/failtest/fullpivqr_int.cpp +13 -0
- pyaac-0.1.0/include/eigen-5.0.0/failtest/initializer_list_1.cpp +11 -0
- pyaac-0.1.0/include/eigen-5.0.0/failtest/initializer_list_2.cpp +13 -0
- pyaac-0.1.0/include/eigen-5.0.0/failtest/jacobisvd_int.cpp +11 -0
- pyaac-0.1.0/include/eigen-5.0.0/failtest/ldlt_int.cpp +11 -0
- pyaac-0.1.0/include/eigen-5.0.0/failtest/llt_int.cpp +11 -0
- pyaac-0.1.0/include/eigen-5.0.0/failtest/map_nonconst_ctor_on_const_ptr_0.cpp +13 -0
- pyaac-0.1.0/include/eigen-5.0.0/failtest/map_nonconst_ctor_on_const_ptr_1.cpp +13 -0
- pyaac-0.1.0/include/eigen-5.0.0/failtest/map_nonconst_ctor_on_const_ptr_2.cpp +13 -0
- pyaac-0.1.0/include/eigen-5.0.0/failtest/map_nonconst_ctor_on_const_ptr_3.cpp +15 -0
- pyaac-0.1.0/include/eigen-5.0.0/failtest/map_nonconst_ctor_on_const_ptr_4.cpp +15 -0
- pyaac-0.1.0/include/eigen-5.0.0/failtest/map_on_const_type_actually_const_0.cpp +13 -0
- pyaac-0.1.0/include/eigen-5.0.0/failtest/map_on_const_type_actually_const_1.cpp +13 -0
- pyaac-0.1.0/include/eigen-5.0.0/failtest/partialpivlu_int.cpp +11 -0
- pyaac-0.1.0/include/eigen-5.0.0/failtest/qr_int.cpp +11 -0
- pyaac-0.1.0/include/eigen-5.0.0/failtest/ref_1.cpp +17 -0
- pyaac-0.1.0/include/eigen-5.0.0/failtest/ref_2.cpp +14 -0
- pyaac-0.1.0/include/eigen-5.0.0/failtest/ref_3.cpp +14 -0
- pyaac-0.1.0/include/eigen-5.0.0/failtest/ref_4.cpp +14 -0
- pyaac-0.1.0/include/eigen-5.0.0/failtest/ref_5.cpp +15 -0
- pyaac-0.1.0/include/eigen-5.0.0/failtest/ref_6.cpp +15 -0
- pyaac-0.1.0/include/eigen-5.0.0/failtest/ref_7.cpp +16 -0
- pyaac-0.1.0/include/eigen-5.0.0/failtest/selfadjointview_nonconst_ctor_on_const_xpr.cpp +13 -0
- pyaac-0.1.0/include/eigen-5.0.0/failtest/selfadjointview_on_const_type_actually_const.cpp +16 -0
- pyaac-0.1.0/include/eigen-5.0.0/failtest/sparse_ref_1.cpp +17 -0
- pyaac-0.1.0/include/eigen-5.0.0/failtest/sparse_ref_2.cpp +14 -0
- pyaac-0.1.0/include/eigen-5.0.0/failtest/sparse_ref_3.cpp +14 -0
- pyaac-0.1.0/include/eigen-5.0.0/failtest/sparse_ref_4.cpp +14 -0
- pyaac-0.1.0/include/eigen-5.0.0/failtest/sparse_ref_5.cpp +15 -0
- pyaac-0.1.0/include/eigen-5.0.0/failtest/sparse_storage_mismatch.cpp +15 -0
- pyaac-0.1.0/include/eigen-5.0.0/failtest/swap_1.cpp +13 -0
- pyaac-0.1.0/include/eigen-5.0.0/failtest/swap_2.cpp +13 -0
- pyaac-0.1.0/include/eigen-5.0.0/failtest/ternary_1.cpp +12 -0
- pyaac-0.1.0/include/eigen-5.0.0/failtest/ternary_2.cpp +12 -0
- pyaac-0.1.0/include/eigen-5.0.0/failtest/transpose_nonconst_ctor_on_const_xpr.cpp +13 -0
- pyaac-0.1.0/include/eigen-5.0.0/failtest/transpose_on_const_type_actually_const.cpp +16 -0
- pyaac-0.1.0/include/eigen-5.0.0/failtest/triangularview_nonconst_ctor_on_const_xpr.cpp +13 -0
- pyaac-0.1.0/include/eigen-5.0.0/failtest/triangularview_on_const_type_actually_const.cpp +16 -0
- pyaac-0.1.0/include/eigen-5.0.0/lapack/CMakeLists.txt +464 -0
- pyaac-0.1.0/include/eigen-5.0.0/lapack/cholesky.inc +70 -0
- pyaac-0.1.0/include/eigen-5.0.0/lapack/clacgv.f +116 -0
- pyaac-0.1.0/include/eigen-5.0.0/lapack/cladiv.f +97 -0
- pyaac-0.1.0/include/eigen-5.0.0/lapack/clarf.f +232 -0
- pyaac-0.1.0/include/eigen-5.0.0/lapack/clarfb.f +771 -0
- pyaac-0.1.0/include/eigen-5.0.0/lapack/clarfg.f +203 -0
- pyaac-0.1.0/include/eigen-5.0.0/lapack/clarft.f +328 -0
- pyaac-0.1.0/include/eigen-5.0.0/lapack/complex_double.cpp +18 -0
- pyaac-0.1.0/include/eigen-5.0.0/lapack/complex_single.cpp +18 -0
- pyaac-0.1.0/include/eigen-5.0.0/lapack/dladiv.f +128 -0
- pyaac-0.1.0/include/eigen-5.0.0/lapack/dlamch.f +189 -0
- pyaac-0.1.0/include/eigen-5.0.0/lapack/dlapy2.f +104 -0
- pyaac-0.1.0/include/eigen-5.0.0/lapack/dlapy3.f +111 -0
- pyaac-0.1.0/include/eigen-5.0.0/lapack/dlarf.f +227 -0
- pyaac-0.1.0/include/eigen-5.0.0/lapack/dlarfb.f +762 -0
- pyaac-0.1.0/include/eigen-5.0.0/lapack/dlarfg.f +196 -0
- pyaac-0.1.0/include/eigen-5.0.0/lapack/dlarft.f +326 -0
- pyaac-0.1.0/include/eigen-5.0.0/lapack/double.cpp +18 -0
- pyaac-0.1.0/include/eigen-5.0.0/lapack/dsecnd_INT_CPU_TIME.cpp +39 -0
- pyaac-0.1.0/include/eigen-5.0.0/lapack/dsecnd_NONE.f +52 -0
- pyaac-0.1.0/include/eigen-5.0.0/lapack/eigenvalues.inc +62 -0
- pyaac-0.1.0/include/eigen-5.0.0/lapack/ilaclc.f +118 -0
- pyaac-0.1.0/include/eigen-5.0.0/lapack/ilaclr.f +121 -0
- pyaac-0.1.0/include/eigen-5.0.0/lapack/iladlc.f +118 -0
- pyaac-0.1.0/include/eigen-5.0.0/lapack/iladlr.f +121 -0
- pyaac-0.1.0/include/eigen-5.0.0/lapack/ilaslc.f +118 -0
- pyaac-0.1.0/include/eigen-5.0.0/lapack/ilaslr.f +121 -0
- pyaac-0.1.0/include/eigen-5.0.0/lapack/ilazlc.f +118 -0
- pyaac-0.1.0/include/eigen-5.0.0/lapack/ilazlr.f +121 -0
- pyaac-0.1.0/include/eigen-5.0.0/lapack/lapack.h +136 -0
- pyaac-0.1.0/include/eigen-5.0.0/lapack/lapack_common.h +20 -0
- pyaac-0.1.0/include/eigen-5.0.0/lapack/lu.inc +82 -0
- pyaac-0.1.0/include/eigen-5.0.0/lapack/second_INT_CPU_TIME.cpp +39 -0
- pyaac-0.1.0/include/eigen-5.0.0/lapack/second_NONE.f +52 -0
- pyaac-0.1.0/include/eigen-5.0.0/lapack/single.cpp +18 -0
- pyaac-0.1.0/include/eigen-5.0.0/lapack/sladiv.f +128 -0
- pyaac-0.1.0/include/eigen-5.0.0/lapack/slamch.f +192 -0
- pyaac-0.1.0/include/eigen-5.0.0/lapack/slapy2.f +104 -0
- pyaac-0.1.0/include/eigen-5.0.0/lapack/slapy3.f +111 -0
- pyaac-0.1.0/include/eigen-5.0.0/lapack/slarf.f +227 -0
- pyaac-0.1.0/include/eigen-5.0.0/lapack/slarfb.f +763 -0
- pyaac-0.1.0/include/eigen-5.0.0/lapack/slarfg.f +196 -0
- pyaac-0.1.0/include/eigen-5.0.0/lapack/slarft.f +326 -0
- pyaac-0.1.0/include/eigen-5.0.0/lapack/svd.inc +150 -0
- pyaac-0.1.0/include/eigen-5.0.0/lapack/zlacgv.f +116 -0
- pyaac-0.1.0/include/eigen-5.0.0/lapack/zladiv.f +97 -0
- pyaac-0.1.0/include/eigen-5.0.0/lapack/zlarf.f +232 -0
- pyaac-0.1.0/include/eigen-5.0.0/lapack/zlarfb.f +774 -0
- pyaac-0.1.0/include/eigen-5.0.0/lapack/zlarfg.f +203 -0
- pyaac-0.1.0/include/eigen-5.0.0/lapack/zlarft.f +327 -0
- pyaac-0.1.0/include/eigen-5.0.0/scripts/CMakeLists.txt +6 -0
- pyaac-0.1.0/include/eigen-5.0.0/scripts/buildtests.in +22 -0
- pyaac-0.1.0/include/eigen-5.0.0/scripts/cdashtesting.cmake.in +49 -0
- pyaac-0.1.0/include/eigen-5.0.0/scripts/check.in +21 -0
- pyaac-0.1.0/include/eigen-5.0.0/scripts/ci_cmake_msvc.ps1 +65 -0
- pyaac-0.1.0/include/eigen-5.0.0/scripts/ci_cmake_msvc_cuda.ps1 +31 -0
- pyaac-0.1.0/include/eigen-5.0.0/scripts/debug.in +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/scripts/eigen_gen_credits.cpp +210 -0
- pyaac-0.1.0/include/eigen-5.0.0/scripts/eigen_gen_docs +24 -0
- pyaac-0.1.0/include/eigen-5.0.0/scripts/eigen_gen_split_test_help.cmake +11 -0
- pyaac-0.1.0/include/eigen-5.0.0/scripts/eigen_monitor_perf.sh +25 -0
- pyaac-0.1.0/include/eigen-5.0.0/scripts/format.sh +11 -0
- pyaac-0.1.0/include/eigen-5.0.0/scripts/msvc_setup.ps1 +21 -0
- pyaac-0.1.0/include/eigen-5.0.0/scripts/release.in +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/signature_of_eigen3_matrix_library +1 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/AnnoyingScalar.h +204 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/CMakeLists.txt +504 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/CustomComplex.h +132 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/MovableScalar.h +54 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/OffByOneScalar.h +20 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/SafeScalar.h +33 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/accelerate_support.cpp +166 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/adjoint.cpp +236 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/array_cwise.cpp +1432 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/array_for_matrix.cpp +349 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/array_of_string.cpp +31 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/array_replicate.cpp +73 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/array_reverse.cpp +199 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/assignment_threaded.cpp +84 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/bandmatrix.cpp +66 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/basicstuff.cpp +352 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/bdcsvd.cpp +177 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/bfloat16_float.cpp +402 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/bicgstab.cpp +88 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/blasutil.cpp +178 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/block.cpp +381 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/boostmultiprec.cpp +212 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/bug1213.cpp +7 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/bug1213.h +7 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/bug1213_main.cpp +13 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/cholesky.cpp +500 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/cholmod_support.cpp +81 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/clz.cpp +74 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/commainitializer.cpp +107 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/conjugate_gradient.cpp +33 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/conservative_resize.cpp +162 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/constexpr.cpp +82 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/constructor.cpp +97 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/corners.cpp +125 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/ctorleak.cpp +79 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/denseLM.cpp +172 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/dense_storage.cpp +285 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/determinant.cpp +65 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/diagonal.cpp +102 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/diagonal_matrix_variadic_ctor.cpp +150 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/diagonalmatrices.cpp +197 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/dontalign.cpp +60 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/dynalloc.cpp +168 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/eigen2support.cpp +62 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/eigensolver_complex.cpp +173 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/eigensolver_generalized_real.cpp +139 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/eigensolver_generic.cpp +233 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/eigensolver_selfadjoint.cpp +270 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/evaluator_common.h +0 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/evaluators.cpp +541 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/exceptions.cpp +55 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/fastmath.cpp +209 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/first_aligned.cpp +50 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/float_conversion.cpp +50 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/geo_alignedbox.cpp +521 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/geo_eulerangles.cpp +203 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/geo_homogeneous.cpp +144 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/geo_hyperplane.cpp +184 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/geo_orthomethods.cpp +159 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/geo_parametrizedline.cpp +121 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/geo_quaternion.cpp +333 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/geo_transformations.cpp +728 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/gpu_basic.cu +447 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/gpu_common.h +161 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/gpu_example.cu +120 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/gpu_test_helper.h +448 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/half_float.cpp +346 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/hessenberg.cpp +61 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/householder.cpp +235 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/incomplete_LUT.cpp +89 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/incomplete_cholesky.cpp +81 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/indexed_view.cpp +869 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/initializer_list_construction.cpp +365 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/inplace_decomposition.cpp +100 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/integer_types.cpp +162 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/inverse.cpp +141 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/io.cpp +63 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/is_same_dense.cpp +39 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/jacobi.cpp +81 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/jacobisvd.cpp +215 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/klu_support.cpp +30 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/linearstructure.cpp +151 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/lscg.cpp +36 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/lu.cpp +260 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/main.h +942 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/mapped_matrix.cpp +200 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/mapstaticmethods.cpp +159 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/mapstride.cpp +275 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/matrix_cwise.cpp +302 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/maxsizevector.cpp +73 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/meta.cpp +533 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/metis_support.cpp +22 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/miscmatrices.cpp +47 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/mixingtypes.cpp +306 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/nestbyvalue.cpp +37 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/nesting_ops.cpp +101 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/nomalloc.cpp +231 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/nullary.cpp +325 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/num_dimensions.cpp +82 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/numext.cpp +389 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/packet_segment.cpp +184 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/packetmath.cpp +1820 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/packetmath_test_shared.h +319 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/pardiso_support.cpp +28 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/pastix_support.cpp +52 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/permutationmatrices.cpp +207 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/prec_inverse_4x4.cpp +76 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/product.h +315 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/product_extra.cpp +372 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/product_large.cpp +150 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/product_mmtr.cpp +111 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/product_notemporary.cpp +224 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/product_selfadjoint.cpp +89 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/product_small.cpp +341 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/product_symm.cpp +129 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/product_syrk.cpp +164 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/product_threaded.cpp +29 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/product_trmm.cpp +144 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/product_trmv.cpp +92 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/product_trsolve.cpp +137 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/qr.cpp +137 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/qr_colpivoting.cpp +376 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/qr_fullpivoting.cpp +162 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/qtvector.cpp +142 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/rand.cpp +300 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/random_matrix.cpp +126 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/random_matrix_helper.h +242 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/random_without_cast_overflow.h +191 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/real_qz.cpp +94 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/realview.cpp +110 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/redux.cpp +205 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/ref.cpp +409 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/reshape.cpp +226 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/resize.cpp +39 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/rvalue_types.cpp +139 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/schur_complex.cpp +90 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/schur_real.cpp +117 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/selfadjoint.cpp +66 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/serializer.cpp +227 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/simplicial_cholesky.cpp +65 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/sizeof.cpp +51 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/sizeoverflow.cpp +68 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/skew_symmetric_matrix3.cpp +213 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/smallvectors.cpp +46 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/solverbase.h +39 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/sparse.h +124 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/sparseLM.cpp +152 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/sparse_basic.cpp +1049 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/sparse_block.cpp +314 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/sparse_permutations.cpp +245 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/sparse_product.cpp +552 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/sparse_ref.cpp +147 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/sparse_solver.h +769 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/sparse_solvers.cpp +120 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/sparse_vector.cpp +235 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/sparselu.cpp +43 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/sparseqr.cpp +140 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/special_numbers.cpp +54 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/split_test_helper.h +5993 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/spqr_support.cpp +59 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/stable_norm.cpp +259 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/stddeque.cpp +123 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/stddeque_overload.cpp +145 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/stdlist.cpp +123 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/stdlist_overload.cpp +177 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/stdvector.cpp +144 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/stdvector_overload.cpp +148 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/stl_iterators.cpp +594 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/superlu_support.cpp +22 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/svd_common.h +555 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/svd_fill.h +109 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/swap.cpp +123 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/sycl_basic.cpp +382 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/symbolic_index.cpp +73 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/threads_eventcount.cpp +137 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/threads_fork_join.cpp +66 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/threads_non_blocking_thread_pool.cpp +173 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/threads_runqueue.cpp +230 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/triangular.cpp +292 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/tuple_test.cpp +119 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/type_alias.cpp +41 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/umeyama.cpp +170 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/umfpack_support.cpp +32 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/unalignedcount.cpp +69 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/unaryview.cpp +109 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/upperbidiagonalization.cpp +44 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/vectorization_logic.cpp +502 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/vectorwiseop.cpp +251 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/visitor.cpp +335 -0
- pyaac-0.1.0/include/eigen-5.0.0/test/zerosized.cpp +107 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/CMakeLists.txt +11 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/AdolcForward +153 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/AlignedVector3 +211 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/ArpackSupport +33 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/AutoDiff +48 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/BVH +108 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CMakeLists.txt +31 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/CMakeLists.txt +8 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/Tensor +142 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/TensorSymmetry +40 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/ThreadPool +1 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/InternalHeaderCheck.h +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/README.md +2352 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/Tensor.h +382 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorArgMax.h +282 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorAssign.h +211 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorBase.h +1244 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorBlock.h +1474 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorBroadcasting.h +1001 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorChipping.h +469 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorConcatenation.h +352 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorContraction.h +958 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorContractionBlocking.h +69 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorContractionCuda.h +7 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorContractionGpu.h +1387 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorContractionMapper.h +533 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorContractionSycl.h +1653 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorContractionThreadPool.h +1552 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorConversion.h +416 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorConvolution.h +1119 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorConvolutionSycl.h +538 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorCostModel.h +189 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorCustomOp.h +307 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorDevice.h +138 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceCuda.h +7 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceDefault.h +113 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceGpu.h +392 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceSycl.h +567 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceThreadPool.h +346 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorDimensionList.h +117 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorDimensions.h +334 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorEvalTo.h +189 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorEvaluator.h +858 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorExecutor.h +670 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorExpr.h +338 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorFFT.h +666 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorFixedSize.h +225 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorForcedEval.h +231 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorForwardDeclarations.h +215 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorFunctors.h +422 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorGenerator.h +269 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorGlobalFunctions.h +36 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorIO.h +413 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorImagePatch.h +590 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorIndexList.h +619 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorInflation.h +224 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorInitializer.h +78 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorIntDiv.h +259 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorLayoutSwap.h +185 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorMacros.h +85 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorMap.h +191 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorMeta.h +291 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorMorphing.h +982 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorPadding.h +620 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorPatch.h +258 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorRandom.h +315 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorReduction.h +1025 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorReductionGpu.h +958 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorReductionSycl.h +588 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorRef.h +391 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorReverse.h +410 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorRoll.h +361 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorScan.h +474 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorScanSycl.h +506 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorShuffling.h +413 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorStorage.h +143 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorStriding.h +314 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorTrace.h +281 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorTraits.h +232 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorUInt128.h +229 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/Tensor/TensorVolumePatch.h +622 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/TensorSymmetry/DynamicSymmetry.h +296 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/TensorSymmetry/InternalHeaderCheck.h +4 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/TensorSymmetry/StaticSymmetry.h +223 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/TensorSymmetry/Symmetry.h +335 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/TensorSymmetry/util/TemplateGroupTheory.h +492 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/util/CXX11Meta.h +18 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/CXX11/src/util/CXX11Workarounds.h +85 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/EulerAngles +44 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/FFT +430 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/IterativeSolvers +92 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/KroneckerProduct +35 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/LevenbergMarquardt +49 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/MPRealSupport +214 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/MatrixFunctions +504 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/NNLS +388 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/NonLinearOptimization +141 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/NumericalDiff +57 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/OpenGLSupport +350 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/Polynomials +140 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/SparseExtra +60 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/SpecialFunctions +104 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/Splines +36 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/AutoDiff/AutoDiffJacobian.h +76 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/AutoDiff/AutoDiffScalar.h +639 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/AutoDiff/AutoDiffVector.h +189 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/AutoDiff/CoherentPadOp.h +152 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/AutoDiff/InternalHeaderCheck.h +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/BVH/BVAlgorithms.h +291 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/BVH/InternalHeaderCheck.h +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/BVH/KdBVH.h +223 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/Eigenvalues/ArpackSelfAdjointEigenSolver.h +701 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/Eigenvalues/InternalHeaderCheck.h +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/EulerAngles/CMakeLists.txt +6 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/EulerAngles/EulerAngles.h +350 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/EulerAngles/EulerSystem.h +284 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/EulerAngles/InternalHeaderCheck.h +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/FFT/InternalHeaderCheck.h +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/FFT/duccfft_impl.h +71 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/FFT/fftw_impl.h +216 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/FFT/imklfft_impl.h +248 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/FFT/kissfft_impl.h +416 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/FFT/pocketfft_impl.h +67 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/IterativeSolvers/BiCGSTABL.h +339 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/IterativeSolvers/DGMRES.h +492 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/IterativeSolvers/GMRES.h +315 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/IterativeSolvers/IDRS.h +395 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/IterativeSolvers/IDRSTABL.h +476 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/IterativeSolvers/IncompleteLU.h +88 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/IterativeSolvers/InternalHeaderCheck.h +4 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/IterativeSolvers/MINRES.h +254 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/IterativeSolvers/Scaling.h +172 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/KroneckerProduct/InternalHeaderCheck.h +4 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h +284 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/LevenbergMarquardt/CopyrightMINPACK.txt +52 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/LevenbergMarquardt/InternalHeaderCheck.h +4 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/LevenbergMarquardt/LMcovar.h +80 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/LevenbergMarquardt/LMonestep.h +187 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/LevenbergMarquardt/LMpar.h +149 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/LevenbergMarquardt/LMqrsolv.h +178 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/LevenbergMarquardt/LevenbergMarquardt.h +362 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/MatrixFunctions/InternalHeaderCheck.h +4 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/MatrixFunctions/MatrixExponential.h +457 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/MatrixFunctions/MatrixFunction.h +543 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/MatrixFunctions/MatrixLogarithm.h +366 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/MatrixFunctions/MatrixPower.h +694 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/MatrixFunctions/MatrixSquareRoot.h +346 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/MatrixFunctions/StemFunction.h +115 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/NonLinearOptimization/HybridNonLinearSolver.h +545 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/NonLinearOptimization/InternalHeaderCheck.h +4 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/NonLinearOptimization/LevenbergMarquardt.h +587 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/NonLinearOptimization/chkder.h +57 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/NonLinearOptimization/covar.h +66 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/NonLinearOptimization/dogleg.h +103 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/NonLinearOptimization/fdjac1.h +73 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/NonLinearOptimization/lmpar.h +265 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/NonLinearOptimization/qrsolv.h +89 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/NonLinearOptimization/r1mpyq.h +33 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/NonLinearOptimization/r1updt.h +96 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/NonLinearOptimization/rwupdt.h +47 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/NumericalDiff/InternalHeaderCheck.h +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/NumericalDiff/NumericalDiff.h +127 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/Polynomials/Companion.h +252 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/Polynomials/InternalHeaderCheck.h +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/Polynomials/PolynomialSolver.h +387 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/Polynomials/PolynomialUtils.h +144 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/SparseExtra/BlockSparseMatrix.h +974 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/SparseExtra/InternalHeaderCheck.h +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/SparseExtra/MarketIO.h +366 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/SparseExtra/MatrixMarketIterator.h +220 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/SparseExtra/RandomSetter.h +303 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/SparseExtra/SparseInverse.h +232 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsArrayAPI.h +276 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsBFloat16.h +71 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsFunctors.h +323 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsHalf.h +69 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsImpl.h +1638 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsPacketMath.h +108 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/SpecialFunctions/HipVectorCompatibility.h +71 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/SpecialFunctions/InternalHeaderCheck.h +4 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsArrayAPI.h +159 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsBFloat16.h +73 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsFunctors.h +326 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsHalf.h +73 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsImpl.h +2073 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsPacketMath.h +112 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/SpecialFunctions/arch/AVX/BesselFunctions.h +46 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/SpecialFunctions/arch/AVX/SpecialFunctions.h +16 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/SpecialFunctions/arch/AVX512/BesselFunctions.h +46 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/SpecialFunctions/arch/AVX512/SpecialFunctions.h +16 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/SpecialFunctions/arch/GPU/SpecialFunctions.h +317 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/SpecialFunctions/arch/NEON/BesselFunctions.h +54 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/SpecialFunctions/arch/NEON/SpecialFunctions.h +34 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/Splines/InternalHeaderCheck.h +3 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/Splines/Spline.h +479 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/Splines/SplineFitting.h +393 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/Eigen/src/Splines/SplineFwd.h +109 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/README.txt +50 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/bench/bench_svd.cpp +111 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/doc/CMakeLists.txt +4 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/doc/Overview.dox +31 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/doc/SYCL.dox +9 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/doc/eigendoxy_layout.xml.in +269 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/doc/examples/BVH_Example.cpp +62 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/doc/examples/CMakeLists.txt +23 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/doc/examples/EulerAngles.cpp +44 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/doc/examples/FFT.cpp +103 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/doc/examples/MatrixExponential.cpp +13 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/doc/examples/MatrixFunction.cpp +16 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/doc/examples/MatrixLogarithm.cpp +12 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/doc/examples/MatrixPower.cpp +16 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/doc/examples/MatrixPower_optimal.cpp +25 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/doc/examples/MatrixSine.cpp +19 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/doc/examples/MatrixSinh.cpp +19 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/doc/examples/MatrixSquareRoot.cpp +14 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/doc/examples/PolynomialSolver1.cpp +52 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/doc/examples/PolynomialUtils1.cpp +22 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/doc/examples/SYCL/CMakeLists.txt +31 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/doc/examples/SYCL/CwiseMul.cpp +63 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/doc/snippets/CMakeLists.txt +26 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/BVH.cpp +247 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/CMakeLists.txt +359 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/EulerAngles.cpp +282 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/FFT.cpp +2 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/FFTW.cpp +2 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/NNLS.cpp +471 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/NonLinearOptimization.cpp +1879 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/NumericalDiff.cpp +102 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/alignedvector3.cpp +86 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/autodiff.cpp +348 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/autodiff_scalar.cpp +97 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/bessel_functions.cpp +275 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/bicgstabl.cpp +30 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_argmax.cpp +289 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_argmax_gpu.cu +270 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_argmax_sycl.cpp +258 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_assign.cpp +359 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_block_access.cpp +523 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_block_eval.cpp +797 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_block_io.cpp +432 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_broadcast_sycl.cpp +140 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_broadcasting.cpp +312 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_builtins_sycl.cpp +509 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_cast_float16_gpu.cu +73 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_casts.cpp +87 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_chipping.cpp +419 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_chipping_sycl.cpp +612 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_comparisons.cpp +192 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_complex_cwise_ops_gpu.cu +90 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_complex_gpu.cu +176 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_concatenation.cpp +128 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_concatenation_sycl.cpp +191 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_const.cpp +56 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_contract_gpu.cu +210 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_contract_sycl.cpp +846 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_contraction.cpp +567 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_convolution.cpp +145 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_convolution_sycl.cpp +458 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_custom_index.cpp +83 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_custom_op.cpp +102 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_custom_op_sycl.cpp +170 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_device.cu +436 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_device_sycl.cpp +90 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_dimension.cpp +82 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_empty.cpp +35 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_executor.cpp +704 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_expr.cpp +474 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_fft.cpp +296 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_fixed_size.cpp +263 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_forced_eval.cpp +75 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_forced_eval_sycl.cpp +78 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_generator.cpp +82 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_generator_sycl.cpp +140 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_gpu.cu +1561 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_ifft.cpp +157 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_image_op_sycl.cpp +100 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_image_patch.cpp +811 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_image_patch_sycl.cpp +1155 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_index_list.cpp +424 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_inflation.cpp +75 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_inflation_sycl.cpp +130 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_intdiv.cpp +135 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_io.cpp +152 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_layout_swap.cpp +56 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_layout_swap_sycl.cpp +120 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_lvalue.cpp +36 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_map.cpp +322 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_math.cpp +42 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_math_sycl.cpp +102 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_mixed_indices.cpp +53 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_morphing.cpp +551 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_morphing_sycl.cpp +371 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_move.cpp +68 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_notification.cpp +67 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_of_bfloat16_gpu.cu +461 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_of_complex.cpp +108 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_of_const_values.cpp +98 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_of_float16_gpu.cu +462 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_of_float16_sycl.cpp +392 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_of_strings.cpp +141 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_padding.cpp +90 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_padding_sycl.cpp +148 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_patch.cpp +170 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_patch_sycl.cpp +249 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_random.cpp +80 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_random_gpu.cu +78 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_random_sycl.cpp +84 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_reduction.cpp +520 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_reduction_gpu.cu +151 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_reduction_sycl.cpp +857 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_ref.cpp +243 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_reverse.cpp +179 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_reverse_sycl.cpp +232 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_roll.cpp +156 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_roundings.cpp +57 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_scan.cpp +108 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_scan_gpu.cu +72 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_scan_sycl.cpp +112 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_shuffling.cpp +270 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_shuffling_sycl.cpp +114 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_simple.cpp +332 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_striding.cpp +114 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_striding_sycl.cpp +193 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_sugar.cpp +78 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_sycl.cpp +348 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_symmetry.cpp +799 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_thread_local.cpp +144 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_thread_pool.cpp +776 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_trace.cpp +168 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_uint128.cpp +157 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_volume_patch.cpp +107 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/cxx11_tensor_volume_patch_sycl.cpp +229 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/dgmres.cpp +30 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/duccfft.cpp +4 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/fft_test_shared.h +311 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/forward_adolc.cpp +127 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/gmres.cpp +30 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/idrs.cpp +26 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/idrstabl.cpp +28 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/kronecker_product.cpp +242 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/levenberg_marquardt.cpp +1555 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/matrix_exponential.cpp +128 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/matrix_function.cpp +210 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/matrix_functions.h +56 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/matrix_power.cpp +197 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/matrix_square_root.cpp +29 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/minres.cpp +41 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/mklfft.cpp +2 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/mpreal_support.cpp +69 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/openglsupport.cpp +594 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/pocketfft.cpp +2 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/polynomialsolver.cpp +203 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/polynomialutils.cpp +102 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/sparse_extra.cpp +254 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/special_functions.cpp +426 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/special_packetmath.cpp +160 -0
- pyaac-0.1.0/include/eigen-5.0.0/unsupported/test/splines.cpp +205 -0
- pyaac-0.1.0/include/sndfile.h +885 -0
- pyaac-0.1.0/lib/arm64/DOA/libDOACalc.so +0 -0
- pyaac-0.1.0/lib/arm64/sndfile/libsndfile.a +0 -0
- pyaac-0.1.0/lib/linux64/DOA/libDOACalc.so +0 -0
- pyaac-0.1.0/lib/linux64/sndfile/libsndfile.a +0 -0
- pyaac-0.1.0/lib/windows_x64/DOA/DOACalc.dll +0 -0
- pyaac-0.1.0/lib/windows_x64/DOA/DOACalc.lib +0 -0
- pyaac-0.1.0/lib/windows_x64/sndfile/sndfile.lib +0 -0
- pyaac-0.1.0/pyproject.toml +36 -0
- pyaac-0.1.0/setup.cfg +4 -0
- pyaac-0.1.0/setup.py +58 -0
- pyaac-0.1.0/src/pyaac/__init__.py +28 -0
- pyaac-0.1.0/src/pyaac.egg-info/PKG-INFO +12 -0
- pyaac-0.1.0/src/pyaac.egg-info/SOURCES.txt +1925 -0
- pyaac-0.1.0/src/pyaac.egg-info/dependency_links.txt +1 -0
- pyaac-0.1.0/src/pyaac.egg-info/top_level.txt +1 -0
- pyaac-0.1.0/src_cpp/binding.cpp +53 -0
- 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()
|
pyaac-0.1.0/MANIFEST.in
ADDED
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,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,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"
|