pylibsparseir 0.1.0__cp311-cp311-macosx_15_0_arm64.whl → 0.6.0__cp311-cp311-macosx_15_0_arm64.whl
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.
Potentially problematic release.
This version of pylibsparseir might be problematic. Click here for more details.
- include/eigen3/Eigen/Cholesky +45 -0
- include/eigen3/Eigen/CholmodSupport +48 -0
- include/eigen3/Eigen/Core +384 -0
- include/eigen3/Eigen/Dense +7 -0
- include/eigen3/Eigen/Eigen +2 -0
- include/eigen3/Eigen/Eigenvalues +60 -0
- include/eigen3/Eigen/Geometry +59 -0
- include/eigen3/Eigen/Householder +29 -0
- include/eigen3/Eigen/IterativeLinearSolvers +48 -0
- include/eigen3/Eigen/Jacobi +32 -0
- include/eigen3/Eigen/KLUSupport +41 -0
- include/eigen3/Eigen/LU +47 -0
- include/eigen3/Eigen/MetisSupport +35 -0
- include/eigen3/Eigen/OrderingMethods +70 -0
- include/eigen3/Eigen/PaStiXSupport +49 -0
- include/eigen3/Eigen/PardisoSupport +35 -0
- include/eigen3/Eigen/QR +50 -0
- include/eigen3/Eigen/QtAlignedMalloc +39 -0
- include/eigen3/Eigen/SPQRSupport +34 -0
- include/eigen3/Eigen/SVD +50 -0
- include/eigen3/Eigen/Sparse +34 -0
- include/eigen3/Eigen/SparseCholesky +37 -0
- include/eigen3/Eigen/SparseCore +69 -0
- include/eigen3/Eigen/SparseLU +50 -0
- include/eigen3/Eigen/SparseQR +36 -0
- include/eigen3/Eigen/StdDeque +27 -0
- include/eigen3/Eigen/StdList +26 -0
- include/eigen3/Eigen/StdVector +27 -0
- include/eigen3/Eigen/SuperLUSupport +64 -0
- include/eigen3/Eigen/UmfPackSupport +40 -0
- include/eigen3/Eigen/src/Cholesky/LDLT.h +688 -0
- include/eigen3/Eigen/src/Cholesky/LLT.h +558 -0
- include/eigen3/Eigen/src/Cholesky/LLT_LAPACKE.h +99 -0
- include/eigen3/Eigen/src/CholmodSupport/CholmodSupport.h +682 -0
- include/eigen3/Eigen/src/Core/ArithmeticSequence.h +413 -0
- include/eigen3/Eigen/src/Core/Array.h +417 -0
- include/eigen3/Eigen/src/Core/ArrayBase.h +226 -0
- include/eigen3/Eigen/src/Core/ArrayWrapper.h +209 -0
- include/eigen3/Eigen/src/Core/Assign.h +90 -0
- include/eigen3/Eigen/src/Core/AssignEvaluator.h +1010 -0
- include/eigen3/Eigen/src/Core/Assign_MKL.h +178 -0
- include/eigen3/Eigen/src/Core/BandMatrix.h +353 -0
- include/eigen3/Eigen/src/Core/Block.h +448 -0
- include/eigen3/Eigen/src/Core/BooleanRedux.h +162 -0
- include/eigen3/Eigen/src/Core/CommaInitializer.h +164 -0
- include/eigen3/Eigen/src/Core/ConditionEstimator.h +175 -0
- include/eigen3/Eigen/src/Core/CoreEvaluators.h +1741 -0
- include/eigen3/Eigen/src/Core/CoreIterators.h +132 -0
- include/eigen3/Eigen/src/Core/CwiseBinaryOp.h +183 -0
- include/eigen3/Eigen/src/Core/CwiseNullaryOp.h +1001 -0
- include/eigen3/Eigen/src/Core/CwiseTernaryOp.h +197 -0
- include/eigen3/Eigen/src/Core/CwiseUnaryOp.h +103 -0
- include/eigen3/Eigen/src/Core/CwiseUnaryView.h +132 -0
- include/eigen3/Eigen/src/Core/DenseBase.h +701 -0
- include/eigen3/Eigen/src/Core/DenseCoeffsBase.h +685 -0
- include/eigen3/Eigen/src/Core/DenseStorage.h +652 -0
- include/eigen3/Eigen/src/Core/Diagonal.h +258 -0
- include/eigen3/Eigen/src/Core/DiagonalMatrix.h +391 -0
- include/eigen3/Eigen/src/Core/DiagonalProduct.h +28 -0
- include/eigen3/Eigen/src/Core/Dot.h +318 -0
- include/eigen3/Eigen/src/Core/EigenBase.h +160 -0
- include/eigen3/Eigen/src/Core/ForceAlignedAccess.h +150 -0
- include/eigen3/Eigen/src/Core/Fuzzy.h +155 -0
- include/eigen3/Eigen/src/Core/GeneralProduct.h +465 -0
- include/eigen3/Eigen/src/Core/GenericPacketMath.h +1040 -0
- include/eigen3/Eigen/src/Core/GlobalFunctions.h +194 -0
- include/eigen3/Eigen/src/Core/IO.h +258 -0
- include/eigen3/Eigen/src/Core/IndexedView.h +237 -0
- include/eigen3/Eigen/src/Core/Inverse.h +117 -0
- include/eigen3/Eigen/src/Core/Map.h +171 -0
- include/eigen3/Eigen/src/Core/MapBase.h +310 -0
- include/eigen3/Eigen/src/Core/MathFunctions.h +2057 -0
- include/eigen3/Eigen/src/Core/MathFunctionsImpl.h +200 -0
- include/eigen3/Eigen/src/Core/Matrix.h +565 -0
- include/eigen3/Eigen/src/Core/MatrixBase.h +547 -0
- include/eigen3/Eigen/src/Core/NestByValue.h +85 -0
- include/eigen3/Eigen/src/Core/NoAlias.h +109 -0
- include/eigen3/Eigen/src/Core/NumTraits.h +335 -0
- include/eigen3/Eigen/src/Core/PartialReduxEvaluator.h +232 -0
- include/eigen3/Eigen/src/Core/PermutationMatrix.h +605 -0
- include/eigen3/Eigen/src/Core/PlainObjectBase.h +1128 -0
- include/eigen3/Eigen/src/Core/Product.h +191 -0
- include/eigen3/Eigen/src/Core/ProductEvaluators.h +1179 -0
- include/eigen3/Eigen/src/Core/Random.h +218 -0
- include/eigen3/Eigen/src/Core/Redux.h +515 -0
- include/eigen3/Eigen/src/Core/Ref.h +381 -0
- include/eigen3/Eigen/src/Core/Replicate.h +142 -0
- include/eigen3/Eigen/src/Core/Reshaped.h +454 -0
- include/eigen3/Eigen/src/Core/ReturnByValue.h +119 -0
- include/eigen3/Eigen/src/Core/Reverse.h +217 -0
- include/eigen3/Eigen/src/Core/Select.h +164 -0
- include/eigen3/Eigen/src/Core/SelfAdjointView.h +365 -0
- include/eigen3/Eigen/src/Core/SelfCwiseBinaryOp.h +47 -0
- include/eigen3/Eigen/src/Core/Solve.h +188 -0
- include/eigen3/Eigen/src/Core/SolveTriangular.h +235 -0
- include/eigen3/Eigen/src/Core/SolverBase.h +168 -0
- include/eigen3/Eigen/src/Core/StableNorm.h +251 -0
- include/eigen3/Eigen/src/Core/StlIterators.h +463 -0
- include/eigen3/Eigen/src/Core/Stride.h +116 -0
- include/eigen3/Eigen/src/Core/Swap.h +68 -0
- include/eigen3/Eigen/src/Core/Transpose.h +464 -0
- include/eigen3/Eigen/src/Core/Transpositions.h +386 -0
- include/eigen3/Eigen/src/Core/TriangularMatrix.h +1001 -0
- include/eigen3/Eigen/src/Core/VectorBlock.h +96 -0
- include/eigen3/Eigen/src/Core/VectorwiseOp.h +784 -0
- include/eigen3/Eigen/src/Core/Visitor.h +381 -0
- include/eigen3/Eigen/src/Core/arch/AVX/Complex.h +372 -0
- include/eigen3/Eigen/src/Core/arch/AVX/MathFunctions.h +228 -0
- include/eigen3/Eigen/src/Core/arch/AVX/PacketMath.h +1574 -0
- include/eigen3/Eigen/src/Core/arch/AVX/TypeCasting.h +115 -0
- include/eigen3/Eigen/src/Core/arch/AVX512/Complex.h +422 -0
- include/eigen3/Eigen/src/Core/arch/AVX512/MathFunctions.h +362 -0
- include/eigen3/Eigen/src/Core/arch/AVX512/PacketMath.h +2303 -0
- include/eigen3/Eigen/src/Core/arch/AVX512/TypeCasting.h +89 -0
- include/eigen3/Eigen/src/Core/arch/AltiVec/Complex.h +417 -0
- include/eigen3/Eigen/src/Core/arch/AltiVec/MathFunctions.h +90 -0
- include/eigen3/Eigen/src/Core/arch/AltiVec/MatrixProduct.h +2937 -0
- include/eigen3/Eigen/src/Core/arch/AltiVec/MatrixProductCommon.h +221 -0
- include/eigen3/Eigen/src/Core/arch/AltiVec/MatrixProductMMA.h +629 -0
- include/eigen3/Eigen/src/Core/arch/AltiVec/PacketMath.h +2711 -0
- include/eigen3/Eigen/src/Core/arch/CUDA/Complex.h +258 -0
- include/eigen3/Eigen/src/Core/arch/Default/BFloat16.h +700 -0
- include/eigen3/Eigen/src/Core/arch/Default/ConjHelper.h +117 -0
- include/eigen3/Eigen/src/Core/arch/Default/GenericPacketMathFunctions.h +1649 -0
- include/eigen3/Eigen/src/Core/arch/Default/GenericPacketMathFunctionsFwd.h +110 -0
- include/eigen3/Eigen/src/Core/arch/Default/Half.h +942 -0
- include/eigen3/Eigen/src/Core/arch/Default/Settings.h +49 -0
- include/eigen3/Eigen/src/Core/arch/Default/TypeCasting.h +120 -0
- include/eigen3/Eigen/src/Core/arch/GPU/MathFunctions.h +103 -0
- include/eigen3/Eigen/src/Core/arch/GPU/PacketMath.h +1685 -0
- include/eigen3/Eigen/src/Core/arch/GPU/TypeCasting.h +80 -0
- include/eigen3/Eigen/src/Core/arch/HIP/hcc/math_constants.h +23 -0
- include/eigen3/Eigen/src/Core/arch/MSA/Complex.h +648 -0
- include/eigen3/Eigen/src/Core/arch/MSA/MathFunctions.h +387 -0
- include/eigen3/Eigen/src/Core/arch/MSA/PacketMath.h +1233 -0
- include/eigen3/Eigen/src/Core/arch/NEON/Complex.h +584 -0
- include/eigen3/Eigen/src/Core/arch/NEON/GeneralBlockPanelKernel.h +183 -0
- include/eigen3/Eigen/src/Core/arch/NEON/MathFunctions.h +75 -0
- include/eigen3/Eigen/src/Core/arch/NEON/PacketMath.h +4587 -0
- include/eigen3/Eigen/src/Core/arch/NEON/TypeCasting.h +1419 -0
- include/eigen3/Eigen/src/Core/arch/SSE/Complex.h +351 -0
- include/eigen3/Eigen/src/Core/arch/SSE/MathFunctions.h +199 -0
- include/eigen3/Eigen/src/Core/arch/SSE/PacketMath.h +1505 -0
- include/eigen3/Eigen/src/Core/arch/SSE/TypeCasting.h +142 -0
- include/eigen3/Eigen/src/Core/arch/SVE/MathFunctions.h +44 -0
- include/eigen3/Eigen/src/Core/arch/SVE/PacketMath.h +752 -0
- include/eigen3/Eigen/src/Core/arch/SVE/TypeCasting.h +49 -0
- include/eigen3/Eigen/src/Core/arch/SYCL/InteropHeaders.h +232 -0
- include/eigen3/Eigen/src/Core/arch/SYCL/MathFunctions.h +301 -0
- include/eigen3/Eigen/src/Core/arch/SYCL/PacketMath.h +670 -0
- include/eigen3/Eigen/src/Core/arch/SYCL/SyclMemoryModel.h +694 -0
- include/eigen3/Eigen/src/Core/arch/SYCL/TypeCasting.h +85 -0
- include/eigen3/Eigen/src/Core/arch/ZVector/Complex.h +426 -0
- include/eigen3/Eigen/src/Core/arch/ZVector/MathFunctions.h +233 -0
- include/eigen3/Eigen/src/Core/arch/ZVector/PacketMath.h +1060 -0
- include/eigen3/Eigen/src/Core/functors/AssignmentFunctors.h +177 -0
- include/eigen3/Eigen/src/Core/functors/BinaryFunctors.h +541 -0
- include/eigen3/Eigen/src/Core/functors/NullaryFunctors.h +189 -0
- include/eigen3/Eigen/src/Core/functors/StlFunctors.h +166 -0
- include/eigen3/Eigen/src/Core/functors/TernaryFunctors.h +25 -0
- include/eigen3/Eigen/src/Core/functors/UnaryFunctors.h +1131 -0
- include/eigen3/Eigen/src/Core/products/GeneralBlockPanelKernel.h +2645 -0
- include/eigen3/Eigen/src/Core/products/GeneralMatrixMatrix.h +517 -0
- include/eigen3/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h +317 -0
- include/eigen3/Eigen/src/Core/products/GeneralMatrixMatrixTriangular_BLAS.h +145 -0
- include/eigen3/Eigen/src/Core/products/GeneralMatrixMatrix_BLAS.h +124 -0
- include/eigen3/Eigen/src/Core/products/GeneralMatrixVector.h +518 -0
- include/eigen3/Eigen/src/Core/products/GeneralMatrixVector_BLAS.h +136 -0
- include/eigen3/Eigen/src/Core/products/Parallelizer.h +180 -0
- include/eigen3/Eigen/src/Core/products/SelfadjointMatrixMatrix.h +544 -0
- include/eigen3/Eigen/src/Core/products/SelfadjointMatrixMatrix_BLAS.h +295 -0
- include/eigen3/Eigen/src/Core/products/SelfadjointMatrixVector.h +262 -0
- include/eigen3/Eigen/src/Core/products/SelfadjointMatrixVector_BLAS.h +118 -0
- include/eigen3/Eigen/src/Core/products/SelfadjointProduct.h +133 -0
- include/eigen3/Eigen/src/Core/products/SelfadjointRank2Update.h +94 -0
- include/eigen3/Eigen/src/Core/products/TriangularMatrixMatrix.h +472 -0
- include/eigen3/Eigen/src/Core/products/TriangularMatrixMatrix_BLAS.h +317 -0
- include/eigen3/Eigen/src/Core/products/TriangularMatrixVector.h +350 -0
- include/eigen3/Eigen/src/Core/products/TriangularMatrixVector_BLAS.h +255 -0
- include/eigen3/Eigen/src/Core/products/TriangularSolverMatrix.h +337 -0
- include/eigen3/Eigen/src/Core/products/TriangularSolverMatrix_BLAS.h +167 -0
- include/eigen3/Eigen/src/Core/products/TriangularSolverVector.h +148 -0
- include/eigen3/Eigen/src/Core/util/BlasUtil.h +583 -0
- include/eigen3/Eigen/src/Core/util/ConfigureVectorization.h +512 -0
- include/eigen3/Eigen/src/Core/util/Constants.h +563 -0
- include/eigen3/Eigen/src/Core/util/DisableStupidWarnings.h +106 -0
- include/eigen3/Eigen/src/Core/util/ForwardDeclarations.h +322 -0
- include/eigen3/Eigen/src/Core/util/IndexedViewHelper.h +186 -0
- include/eigen3/Eigen/src/Core/util/IntegralConstant.h +272 -0
- include/eigen3/Eigen/src/Core/util/MKL_support.h +137 -0
- include/eigen3/Eigen/src/Core/util/Macros.h +1464 -0
- include/eigen3/Eigen/src/Core/util/Memory.h +1163 -0
- include/eigen3/Eigen/src/Core/util/Meta.h +812 -0
- include/eigen3/Eigen/src/Core/util/NonMPL2.h +3 -0
- include/eigen3/Eigen/src/Core/util/ReenableStupidWarnings.h +31 -0
- include/eigen3/Eigen/src/Core/util/ReshapedHelper.h +51 -0
- include/eigen3/Eigen/src/Core/util/StaticAssert.h +221 -0
- include/eigen3/Eigen/src/Core/util/SymbolicIndex.h +293 -0
- include/eigen3/Eigen/src/Core/util/XprHelper.h +856 -0
- include/eigen3/Eigen/src/Eigenvalues/ComplexEigenSolver.h +346 -0
- include/eigen3/Eigen/src/Eigenvalues/ComplexSchur.h +462 -0
- include/eigen3/Eigen/src/Eigenvalues/ComplexSchur_LAPACKE.h +91 -0
- include/eigen3/Eigen/src/Eigenvalues/EigenSolver.h +622 -0
- include/eigen3/Eigen/src/Eigenvalues/GeneralizedEigenSolver.h +418 -0
- include/eigen3/Eigen/src/Eigenvalues/GeneralizedSelfAdjointEigenSolver.h +226 -0
- include/eigen3/Eigen/src/Eigenvalues/HessenbergDecomposition.h +374 -0
- include/eigen3/Eigen/src/Eigenvalues/MatrixBaseEigenvalues.h +158 -0
- include/eigen3/Eigen/src/Eigenvalues/RealQZ.h +657 -0
- include/eigen3/Eigen/src/Eigenvalues/RealSchur.h +558 -0
- include/eigen3/Eigen/src/Eigenvalues/RealSchur_LAPACKE.h +77 -0
- include/eigen3/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h +904 -0
- include/eigen3/Eigen/src/Eigenvalues/SelfAdjointEigenSolver_LAPACKE.h +87 -0
- include/eigen3/Eigen/src/Eigenvalues/Tridiagonalization.h +561 -0
- include/eigen3/Eigen/src/Geometry/AlignedBox.h +486 -0
- include/eigen3/Eigen/src/Geometry/AngleAxis.h +247 -0
- include/eigen3/Eigen/src/Geometry/EulerAngles.h +114 -0
- include/eigen3/Eigen/src/Geometry/Homogeneous.h +501 -0
- include/eigen3/Eigen/src/Geometry/Hyperplane.h +282 -0
- include/eigen3/Eigen/src/Geometry/OrthoMethods.h +235 -0
- include/eigen3/Eigen/src/Geometry/ParametrizedLine.h +232 -0
- include/eigen3/Eigen/src/Geometry/Quaternion.h +870 -0
- include/eigen3/Eigen/src/Geometry/Rotation2D.h +199 -0
- include/eigen3/Eigen/src/Geometry/RotationBase.h +206 -0
- include/eigen3/Eigen/src/Geometry/Scaling.h +188 -0
- include/eigen3/Eigen/src/Geometry/Transform.h +1563 -0
- include/eigen3/Eigen/src/Geometry/Translation.h +202 -0
- include/eigen3/Eigen/src/Geometry/Umeyama.h +166 -0
- include/eigen3/Eigen/src/Geometry/arch/Geometry_SIMD.h +168 -0
- include/eigen3/Eigen/src/Householder/BlockHouseholder.h +110 -0
- include/eigen3/Eigen/src/Householder/Householder.h +176 -0
- include/eigen3/Eigen/src/Householder/HouseholderSequence.h +545 -0
- include/eigen3/Eigen/src/IterativeLinearSolvers/BasicPreconditioners.h +226 -0
- include/eigen3/Eigen/src/IterativeLinearSolvers/BiCGSTAB.h +212 -0
- include/eigen3/Eigen/src/IterativeLinearSolvers/ConjugateGradient.h +229 -0
- include/eigen3/Eigen/src/IterativeLinearSolvers/IncompleteCholesky.h +394 -0
- include/eigen3/Eigen/src/IterativeLinearSolvers/IncompleteLUT.h +453 -0
- include/eigen3/Eigen/src/IterativeLinearSolvers/IterativeSolverBase.h +444 -0
- include/eigen3/Eigen/src/IterativeLinearSolvers/LeastSquareConjugateGradient.h +198 -0
- include/eigen3/Eigen/src/IterativeLinearSolvers/SolveWithGuess.h +117 -0
- include/eigen3/Eigen/src/Jacobi/Jacobi.h +483 -0
- include/eigen3/Eigen/src/KLUSupport/KLUSupport.h +358 -0
- include/eigen3/Eigen/src/LU/Determinant.h +117 -0
- include/eigen3/Eigen/src/LU/FullPivLU.h +877 -0
- include/eigen3/Eigen/src/LU/InverseImpl.h +432 -0
- include/eigen3/Eigen/src/LU/PartialPivLU.h +624 -0
- include/eigen3/Eigen/src/LU/PartialPivLU_LAPACKE.h +83 -0
- include/eigen3/Eigen/src/LU/arch/InverseSize4.h +351 -0
- include/eigen3/Eigen/src/MetisSupport/MetisSupport.h +137 -0
- include/eigen3/Eigen/src/OrderingMethods/Amd.h +435 -0
- include/eigen3/Eigen/src/OrderingMethods/Eigen_Colamd.h +1863 -0
- include/eigen3/Eigen/src/OrderingMethods/Ordering.h +153 -0
- include/eigen3/Eigen/src/PaStiXSupport/PaStiXSupport.h +678 -0
- include/eigen3/Eigen/src/PardisoSupport/PardisoSupport.h +545 -0
- include/eigen3/Eigen/src/QR/ColPivHouseholderQR.h +674 -0
- include/eigen3/Eigen/src/QR/ColPivHouseholderQR_LAPACKE.h +97 -0
- include/eigen3/Eigen/src/QR/CompleteOrthogonalDecomposition.h +635 -0
- include/eigen3/Eigen/src/QR/FullPivHouseholderQR.h +713 -0
- include/eigen3/Eigen/src/QR/HouseholderQR.h +434 -0
- include/eigen3/Eigen/src/QR/HouseholderQR_LAPACKE.h +68 -0
- include/eigen3/Eigen/src/SPQRSupport/SuiteSparseQRSupport.h +335 -0
- include/eigen3/Eigen/src/SVD/BDCSVD.h +1366 -0
- include/eigen3/Eigen/src/SVD/JacobiSVD.h +812 -0
- include/eigen3/Eigen/src/SVD/JacobiSVD_LAPACKE.h +91 -0
- include/eigen3/Eigen/src/SVD/SVDBase.h +376 -0
- include/eigen3/Eigen/src/SVD/UpperBidiagonalization.h +414 -0
- include/eigen3/Eigen/src/SparseCholesky/SimplicialCholesky.h +697 -0
- include/eigen3/Eigen/src/SparseCholesky/SimplicialCholesky_impl.h +174 -0
- include/eigen3/Eigen/src/SparseCore/AmbiVector.h +378 -0
- include/eigen3/Eigen/src/SparseCore/CompressedStorage.h +274 -0
- include/eigen3/Eigen/src/SparseCore/ConservativeSparseSparseProduct.h +352 -0
- include/eigen3/Eigen/src/SparseCore/MappedSparseMatrix.h +67 -0
- include/eigen3/Eigen/src/SparseCore/SparseAssign.h +270 -0
- include/eigen3/Eigen/src/SparseCore/SparseBlock.h +571 -0
- include/eigen3/Eigen/src/SparseCore/SparseColEtree.h +206 -0
- include/eigen3/Eigen/src/SparseCore/SparseCompressedBase.h +370 -0
- include/eigen3/Eigen/src/SparseCore/SparseCwiseBinaryOp.h +722 -0
- include/eigen3/Eigen/src/SparseCore/SparseCwiseUnaryOp.h +150 -0
- include/eigen3/Eigen/src/SparseCore/SparseDenseProduct.h +342 -0
- include/eigen3/Eigen/src/SparseCore/SparseDiagonalProduct.h +138 -0
- include/eigen3/Eigen/src/SparseCore/SparseDot.h +98 -0
- include/eigen3/Eigen/src/SparseCore/SparseFuzzy.h +29 -0
- include/eigen3/Eigen/src/SparseCore/SparseMap.h +305 -0
- include/eigen3/Eigen/src/SparseCore/SparseMatrix.h +1518 -0
- include/eigen3/Eigen/src/SparseCore/SparseMatrixBase.h +398 -0
- include/eigen3/Eigen/src/SparseCore/SparsePermutation.h +178 -0
- include/eigen3/Eigen/src/SparseCore/SparseProduct.h +181 -0
- include/eigen3/Eigen/src/SparseCore/SparseRedux.h +49 -0
- include/eigen3/Eigen/src/SparseCore/SparseRef.h +397 -0
- include/eigen3/Eigen/src/SparseCore/SparseSelfAdjointView.h +659 -0
- include/eigen3/Eigen/src/SparseCore/SparseSolverBase.h +124 -0
- include/eigen3/Eigen/src/SparseCore/SparseSparseProductWithPruning.h +198 -0
- include/eigen3/Eigen/src/SparseCore/SparseTranspose.h +92 -0
- include/eigen3/Eigen/src/SparseCore/SparseTriangularView.h +189 -0
- include/eigen3/Eigen/src/SparseCore/SparseUtil.h +186 -0
- include/eigen3/Eigen/src/SparseCore/SparseVector.h +478 -0
- include/eigen3/Eigen/src/SparseCore/SparseView.h +254 -0
- include/eigen3/Eigen/src/SparseCore/TriangularSolver.h +315 -0
- include/eigen3/Eigen/src/SparseLU/SparseLU.h +923 -0
- include/eigen3/Eigen/src/SparseLU/SparseLUImpl.h +66 -0
- include/eigen3/Eigen/src/SparseLU/SparseLU_Memory.h +226 -0
- include/eigen3/Eigen/src/SparseLU/SparseLU_Structs.h +110 -0
- include/eigen3/Eigen/src/SparseLU/SparseLU_SupernodalMatrix.h +375 -0
- include/eigen3/Eigen/src/SparseLU/SparseLU_Utils.h +80 -0
- include/eigen3/Eigen/src/SparseLU/SparseLU_column_bmod.h +181 -0
- include/eigen3/Eigen/src/SparseLU/SparseLU_column_dfs.h +179 -0
- include/eigen3/Eigen/src/SparseLU/SparseLU_copy_to_ucol.h +107 -0
- include/eigen3/Eigen/src/SparseLU/SparseLU_gemm_kernel.h +280 -0
- include/eigen3/Eigen/src/SparseLU/SparseLU_heap_relax_snode.h +126 -0
- include/eigen3/Eigen/src/SparseLU/SparseLU_kernel_bmod.h +130 -0
- include/eigen3/Eigen/src/SparseLU/SparseLU_panel_bmod.h +223 -0
- include/eigen3/Eigen/src/SparseLU/SparseLU_panel_dfs.h +258 -0
- include/eigen3/Eigen/src/SparseLU/SparseLU_pivotL.h +137 -0
- include/eigen3/Eigen/src/SparseLU/SparseLU_pruneL.h +136 -0
- include/eigen3/Eigen/src/SparseLU/SparseLU_relax_snode.h +83 -0
- include/eigen3/Eigen/src/SparseQR/SparseQR.h +758 -0
- include/eigen3/Eigen/src/StlSupport/StdDeque.h +116 -0
- include/eigen3/Eigen/src/StlSupport/StdList.h +106 -0
- include/eigen3/Eigen/src/StlSupport/StdVector.h +131 -0
- include/eigen3/Eigen/src/StlSupport/details.h +84 -0
- include/eigen3/Eigen/src/SuperLUSupport/SuperLUSupport.h +1025 -0
- include/eigen3/Eigen/src/UmfPackSupport/UmfPackSupport.h +642 -0
- include/eigen3/Eigen/src/misc/Image.h +82 -0
- include/eigen3/Eigen/src/misc/Kernel.h +79 -0
- include/eigen3/Eigen/src/misc/RealSvd2x2.h +55 -0
- include/eigen3/Eigen/src/misc/blas.h +440 -0
- include/eigen3/Eigen/src/misc/lapack.h +152 -0
- include/eigen3/Eigen/src/misc/lapacke.h +16292 -0
- include/eigen3/Eigen/src/misc/lapacke_mangling.h +17 -0
- include/eigen3/Eigen/src/plugins/ArrayCwiseBinaryOps.h +358 -0
- include/eigen3/Eigen/src/plugins/ArrayCwiseUnaryOps.h +696 -0
- include/eigen3/Eigen/src/plugins/BlockMethods.h +1442 -0
- include/eigen3/Eigen/src/plugins/CommonCwiseBinaryOps.h +115 -0
- include/eigen3/Eigen/src/plugins/CommonCwiseUnaryOps.h +177 -0
- include/eigen3/Eigen/src/plugins/IndexedViewMethods.h +262 -0
- include/eigen3/Eigen/src/plugins/MatrixCwiseBinaryOps.h +152 -0
- include/eigen3/Eigen/src/plugins/MatrixCwiseUnaryOps.h +95 -0
- include/eigen3/Eigen/src/plugins/ReshapedMethods.h +149 -0
- include/eigen3/signature_of_eigen3_matrix_library +1 -0
- include/eigen3/unsupported/Eigen/AdolcForward +159 -0
- include/eigen3/unsupported/Eigen/AlignedVector3 +234 -0
- include/eigen3/unsupported/Eigen/ArpackSupport +30 -0
- include/eigen3/unsupported/Eigen/AutoDiff +46 -0
- include/eigen3/unsupported/Eigen/BVH +95 -0
- include/eigen3/unsupported/Eigen/CXX11/Tensor +137 -0
- include/eigen3/unsupported/Eigen/CXX11/TensorSymmetry +42 -0
- include/eigen3/unsupported/Eigen/CXX11/ThreadPool +74 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/Tensor.h +554 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorArgMax.h +329 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorAssign.h +247 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorBase.h +1176 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorBlock.h +1559 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorBroadcasting.h +1093 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorChipping.h +518 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorConcatenation.h +377 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorContraction.h +1023 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorContractionBlocking.h +73 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorContractionCuda.h +6 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorContractionGpu.h +1413 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorContractionMapper.h +575 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorContractionSycl.h +1650 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorContractionThreadPool.h +1679 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorConversion.h +456 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorConvolution.h +1132 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorConvolutionSycl.h +544 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorCostModel.h +214 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorCustomOp.h +347 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDevice.h +137 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceCuda.h +6 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceDefault.h +104 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceGpu.h +389 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceSycl.h +1048 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceThreadPool.h +409 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDimensionList.h +236 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDimensions.h +490 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorEvalTo.h +236 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorEvaluator.h +983 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorExecutor.h +703 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorExpr.h +388 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorFFT.h +669 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorFixedSize.h +379 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorForcedEval.h +237 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorForwardDeclarations.h +191 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorFunctors.h +488 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorGenerator.h +302 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorGlobalFunctions.h +33 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorGpuHipCudaDefines.h +99 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorGpuHipCudaUndefines.h +44 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorIO.h +79 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorImagePatch.h +603 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorIndexList.h +738 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorInflation.h +247 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorInitializer.h +82 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorIntDiv.h +263 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorLayoutSwap.h +216 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorMacros.h +98 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorMap.h +327 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorMeta.h +311 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorMorphing.h +1102 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorPadding.h +708 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorPatch.h +291 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorRandom.h +322 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorReduction.h +998 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorReductionCuda.h +6 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorReductionGpu.h +966 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorReductionSycl.h +582 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorRef.h +454 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorReverse.h +465 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorScan.h +528 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorScanSycl.h +513 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorShuffling.h +471 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorStorage.h +161 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorStriding.h +346 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorTrace.h +303 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorTraits.h +264 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorUInt128.h +249 -0
- include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorVolumePatch.h +629 -0
- include/eigen3/unsupported/Eigen/CXX11/src/TensorSymmetry/DynamicSymmetry.h +293 -0
- include/eigen3/unsupported/Eigen/CXX11/src/TensorSymmetry/StaticSymmetry.h +236 -0
- include/eigen3/unsupported/Eigen/CXX11/src/TensorSymmetry/Symmetry.h +338 -0
- include/eigen3/unsupported/Eigen/CXX11/src/TensorSymmetry/util/TemplateGroupTheory.h +669 -0
- include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/Barrier.h +67 -0
- include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/EventCount.h +249 -0
- include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/NonBlockingThreadPool.h +486 -0
- include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/RunQueue.h +236 -0
- include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/ThreadCancel.h +23 -0
- include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/ThreadEnvironment.h +40 -0
- include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/ThreadLocal.h +301 -0
- include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/ThreadPoolInterface.h +48 -0
- include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/ThreadYield.h +20 -0
- include/eigen3/unsupported/Eigen/CXX11/src/util/CXX11Meta.h +537 -0
- include/eigen3/unsupported/Eigen/CXX11/src/util/CXX11Workarounds.h +88 -0
- include/eigen3/unsupported/Eigen/CXX11/src/util/EmulateArray.h +261 -0
- include/eigen3/unsupported/Eigen/CXX11/src/util/MaxSizeVector.h +158 -0
- include/eigen3/unsupported/Eigen/EulerAngles +43 -0
- include/eigen3/unsupported/Eigen/FFT +419 -0
- include/eigen3/unsupported/Eigen/IterativeSolvers +51 -0
- include/eigen3/unsupported/Eigen/KroneckerProduct +36 -0
- include/eigen3/unsupported/Eigen/LevenbergMarquardt +49 -0
- include/eigen3/unsupported/Eigen/MPRealSupport +213 -0
- include/eigen3/unsupported/Eigen/MatrixFunctions +504 -0
- include/eigen3/unsupported/Eigen/MoreVectorization +24 -0
- include/eigen3/unsupported/Eigen/NonLinearOptimization +140 -0
- include/eigen3/unsupported/Eigen/NumericalDiff +56 -0
- include/eigen3/unsupported/Eigen/OpenGLSupport +322 -0
- include/eigen3/unsupported/Eigen/Polynomials +137 -0
- include/eigen3/unsupported/Eigen/Skyline +39 -0
- include/eigen3/unsupported/Eigen/SparseExtra +54 -0
- include/eigen3/unsupported/Eigen/SpecialFunctions +103 -0
- include/eigen3/unsupported/Eigen/Splines +35 -0
- include/eigen3/unsupported/Eigen/src/AutoDiff/AutoDiffJacobian.h +108 -0
- include/eigen3/unsupported/Eigen/src/AutoDiff/AutoDiffScalar.h +730 -0
- include/eigen3/unsupported/Eigen/src/AutoDiff/AutoDiffVector.h +220 -0
- include/eigen3/unsupported/Eigen/src/BVH/BVAlgorithms.h +293 -0
- include/eigen3/unsupported/Eigen/src/BVH/KdBVH.h +223 -0
- include/eigen3/unsupported/Eigen/src/Eigenvalues/ArpackSelfAdjointEigenSolver.h +790 -0
- include/eigen3/unsupported/Eigen/src/EulerAngles/EulerAngles.h +355 -0
- include/eigen3/unsupported/Eigen/src/EulerAngles/EulerSystem.h +305 -0
- include/eigen3/unsupported/Eigen/src/FFT/ei_fftw_impl.h +261 -0
- include/eigen3/unsupported/Eigen/src/FFT/ei_kissfft_impl.h +449 -0
- include/eigen3/unsupported/Eigen/src/IterativeSolvers/ConstrainedConjGrad.h +187 -0
- include/eigen3/unsupported/Eigen/src/IterativeSolvers/DGMRES.h +511 -0
- include/eigen3/unsupported/Eigen/src/IterativeSolvers/GMRES.h +335 -0
- include/eigen3/unsupported/Eigen/src/IterativeSolvers/IDRS.h +436 -0
- include/eigen3/unsupported/Eigen/src/IterativeSolvers/IncompleteLU.h +90 -0
- include/eigen3/unsupported/Eigen/src/IterativeSolvers/IterationController.h +154 -0
- include/eigen3/unsupported/Eigen/src/IterativeSolvers/MINRES.h +267 -0
- include/eigen3/unsupported/Eigen/src/IterativeSolvers/Scaling.h +193 -0
- include/eigen3/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h +305 -0
- include/eigen3/unsupported/Eigen/src/LevenbergMarquardt/LMcovar.h +84 -0
- include/eigen3/unsupported/Eigen/src/LevenbergMarquardt/LMonestep.h +202 -0
- include/eigen3/unsupported/Eigen/src/LevenbergMarquardt/LMpar.h +160 -0
- include/eigen3/unsupported/Eigen/src/LevenbergMarquardt/LMqrsolv.h +188 -0
- include/eigen3/unsupported/Eigen/src/LevenbergMarquardt/LevenbergMarquardt.h +396 -0
- include/eigen3/unsupported/Eigen/src/MatrixFunctions/MatrixExponential.h +441 -0
- include/eigen3/unsupported/Eigen/src/MatrixFunctions/MatrixFunction.h +569 -0
- include/eigen3/unsupported/Eigen/src/MatrixFunctions/MatrixLogarithm.h +373 -0
- include/eigen3/unsupported/Eigen/src/MatrixFunctions/MatrixPower.h +705 -0
- include/eigen3/unsupported/Eigen/src/MatrixFunctions/MatrixSquareRoot.h +368 -0
- include/eigen3/unsupported/Eigen/src/MatrixFunctions/StemFunction.h +117 -0
- include/eigen3/unsupported/Eigen/src/MoreVectorization/MathFunctions.h +95 -0
- include/eigen3/unsupported/Eigen/src/NonLinearOptimization/HybridNonLinearSolver.h +601 -0
- include/eigen3/unsupported/Eigen/src/NonLinearOptimization/LevenbergMarquardt.h +657 -0
- include/eigen3/unsupported/Eigen/src/NonLinearOptimization/chkder.h +66 -0
- include/eigen3/unsupported/Eigen/src/NonLinearOptimization/covar.h +70 -0
- include/eigen3/unsupported/Eigen/src/NonLinearOptimization/dogleg.h +107 -0
- include/eigen3/unsupported/Eigen/src/NonLinearOptimization/fdjac1.h +79 -0
- include/eigen3/unsupported/Eigen/src/NonLinearOptimization/lmpar.h +298 -0
- include/eigen3/unsupported/Eigen/src/NonLinearOptimization/qrsolv.h +91 -0
- include/eigen3/unsupported/Eigen/src/NonLinearOptimization/r1mpyq.h +30 -0
- include/eigen3/unsupported/Eigen/src/NonLinearOptimization/r1updt.h +99 -0
- include/eigen3/unsupported/Eigen/src/NonLinearOptimization/rwupdt.h +49 -0
- include/eigen3/unsupported/Eigen/src/NumericalDiff/NumericalDiff.h +130 -0
- include/eigen3/unsupported/Eigen/src/Polynomials/Companion.h +280 -0
- include/eigen3/unsupported/Eigen/src/Polynomials/PolynomialSolver.h +428 -0
- include/eigen3/unsupported/Eigen/src/Polynomials/PolynomialUtils.h +143 -0
- include/eigen3/unsupported/Eigen/src/Skyline/SkylineInplaceLU.h +352 -0
- include/eigen3/unsupported/Eigen/src/Skyline/SkylineMatrix.h +862 -0
- include/eigen3/unsupported/Eigen/src/Skyline/SkylineMatrixBase.h +212 -0
- include/eigen3/unsupported/Eigen/src/Skyline/SkylineProduct.h +295 -0
- include/eigen3/unsupported/Eigen/src/Skyline/SkylineStorage.h +259 -0
- include/eigen3/unsupported/Eigen/src/Skyline/SkylineUtil.h +89 -0
- include/eigen3/unsupported/Eigen/src/SparseExtra/BlockOfDynamicSparseMatrix.h +122 -0
- include/eigen3/unsupported/Eigen/src/SparseExtra/BlockSparseMatrix.h +1079 -0
- include/eigen3/unsupported/Eigen/src/SparseExtra/DynamicSparseMatrix.h +404 -0
- include/eigen3/unsupported/Eigen/src/SparseExtra/MarketIO.h +282 -0
- include/eigen3/unsupported/Eigen/src/SparseExtra/MatrixMarketIterator.h +247 -0
- include/eigen3/unsupported/Eigen/src/SparseExtra/RandomSetter.h +349 -0
- include/eigen3/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsArrayAPI.h +286 -0
- include/eigen3/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsBFloat16.h +68 -0
- include/eigen3/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsFunctors.h +357 -0
- include/eigen3/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsHalf.h +66 -0
- include/eigen3/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsImpl.h +1959 -0
- include/eigen3/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsPacketMath.h +118 -0
- include/eigen3/unsupported/Eigen/src/SpecialFunctions/HipVectorCompatibility.h +67 -0
- include/eigen3/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsArrayAPI.h +167 -0
- include/eigen3/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsBFloat16.h +58 -0
- include/eigen3/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsFunctors.h +330 -0
- include/eigen3/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsHalf.h +58 -0
- include/eigen3/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsImpl.h +2045 -0
- include/eigen3/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsPacketMath.h +79 -0
- include/eigen3/unsupported/Eigen/src/SpecialFunctions/arch/AVX/BesselFunctions.h +46 -0
- include/eigen3/unsupported/Eigen/src/SpecialFunctions/arch/AVX/SpecialFunctions.h +16 -0
- include/eigen3/unsupported/Eigen/src/SpecialFunctions/arch/AVX512/BesselFunctions.h +46 -0
- include/eigen3/unsupported/Eigen/src/SpecialFunctions/arch/AVX512/SpecialFunctions.h +16 -0
- include/eigen3/unsupported/Eigen/src/SpecialFunctions/arch/GPU/SpecialFunctions.h +369 -0
- include/eigen3/unsupported/Eigen/src/SpecialFunctions/arch/NEON/BesselFunctions.h +54 -0
- include/eigen3/unsupported/Eigen/src/SpecialFunctions/arch/NEON/SpecialFunctions.h +34 -0
- include/eigen3/unsupported/Eigen/src/Splines/Spline.h +507 -0
- include/eigen3/unsupported/Eigen/src/Splines/SplineFitting.h +431 -0
- include/eigen3/unsupported/Eigen/src/Splines/SplineFwd.h +93 -0
- pylibsparseir/__init__.py +31 -0
- pylibsparseir/clean_build_artifacts.py +0 -1
- pylibsparseir/core.py +178 -62
- pylibsparseir/libsparseir.dylib +0 -0
- pylibsparseir-0.6.0.dist-info/METADATA +213 -0
- pylibsparseir-0.6.0.dist-info/RECORD +545 -0
- {pylibsparseir-0.1.0.dist-info → pylibsparseir-0.6.0.dist-info}/WHEEL +1 -1
- pylibsparseir-0.6.0.dist-info/licenses/LICENSE +21 -0
- share/eigen3/cmake/Eigen3Config.cmake +37 -0
- share/eigen3/cmake/Eigen3ConfigVersion.cmake +65 -0
- share/eigen3/cmake/Eigen3Targets.cmake +106 -0
- share/eigen3/cmake/UseEigen3.cmake +6 -0
- share/pkgconfig/eigen3.pc +9 -0
- pylibsparseir/libsparseir.0.4.2.dylib +0 -0
- pylibsparseir/libsparseir.0.dylib +0 -0
- pylibsparseir-0.1.0.dist-info/METADATA +0 -130
- pylibsparseir-0.1.0.dist-info/RECORD +0 -12
- pylibsparseir-0.1.0.dist-info/entry_points.txt +0 -2
- pylibsparseir-0.1.0.dist-info/top_level.txt +0 -1
|
@@ -0,0 +1,545 @@
|
|
|
1
|
+
include/eigen3/signature_of_eigen3_matrix_library,sha256=U9kYED1-STMjAmZuzRnGn0E_lKwG8DfyDhPc8hYFVL8,216
|
|
2
|
+
include/eigen3/unsupported/Eigen/MatrixFunctions,sha256=UQx5KHuhuG6rCCydWU38vO5rX-NAu8Xpvmey3lxRhwo,17919
|
|
3
|
+
include/eigen3/unsupported/Eigen/AdolcForward,sha256=gok9u0CklJDOhhpEjl8CnD1rRRAoYw6SESu5GKp9nWA,4422
|
|
4
|
+
include/eigen3/unsupported/Eigen/AlignedVector3,sha256=PFKx8xYz7v_wHEdpFBSBnpafqzx0liSJ8f_4il3Fl80,6349
|
|
5
|
+
include/eigen3/unsupported/Eigen/OpenGLSupport,sha256=ZGKZSemUvCYq6M-LKZ0uwc1taaKX_ULeGD4dQpxyolA,19072
|
|
6
|
+
include/eigen3/unsupported/Eigen/LevenbergMarquardt,sha256=EV3RwUkSregym42GzPbDDtk-FGOOb8ohSZLu3o-sNcU,1238
|
|
7
|
+
include/eigen3/unsupported/Eigen/AutoDiff,sha256=rthp_lqfRNojDQAvI9ptF694VMcbtXsSBIJGHi_ppBk,1181
|
|
8
|
+
include/eigen3/unsupported/Eigen/NumericalDiff,sha256=UGaTN2hJyc5o8udaXbmLiVBJkT7bPlDYHo1m8FbfTZ8,1779
|
|
9
|
+
include/eigen3/unsupported/Eigen/NonLinearOptimization,sha256=IaVVXvrAPnYLdetS5T02Ru-pnWRv1jAMv4Nxi6_MwSs,5963
|
|
10
|
+
include/eigen3/unsupported/Eigen/ArpackSupport,sha256=o9VmHcIFtwVh6AQ6Gxv2PUgayP0B2HsZJ8ylj0X3odk,884
|
|
11
|
+
include/eigen3/unsupported/Eigen/Skyline,sha256=g382Fu5rZxtiB3Q--hJP-SP7UpnWglCZeWzalSnJbP4,930
|
|
12
|
+
include/eigen3/unsupported/Eigen/BVH,sha256=X_yDrxJQmIoP33ZF__N5hlzRJIIrqbhCw1etaRtSnFg,5523
|
|
13
|
+
include/eigen3/unsupported/Eigen/SpecialFunctions,sha256=gfPAPxqC7HBUuYs-JeCTtxVJR3XLeb7pHo0uYx9GV9g,2951
|
|
14
|
+
include/eigen3/unsupported/Eigen/Splines,sha256=lATg8tkAJ7gRZWkWMFzjtYfK0_gVnLfla9wst14Mtps,996
|
|
15
|
+
include/eigen3/unsupported/Eigen/KroneckerProduct,sha256=fPx1HjcrCikhchUD231u_zOKrAZ7vQWSuDTLsWZxh3g,944
|
|
16
|
+
include/eigen3/unsupported/Eigen/IterativeSolvers,sha256=KaUyoxYkFf4XPHA1s9AjL7iwIg3ngLi13R2DtBKMoYs,1561
|
|
17
|
+
include/eigen3/unsupported/Eigen/FFT,sha256=3rA3hBZ0QY8KKzaFc6TBVXnlB-a0OrCbpTFDrCdbYO4,13948
|
|
18
|
+
include/eigen3/unsupported/Eigen/EulerAngles,sha256=-QtPU3hgWE3njMiMPeR4J46FBlt3xAmsGKxth_0U1vI,1126
|
|
19
|
+
include/eigen3/unsupported/Eigen/SparseExtra,sha256=nZkznxaQNSZ2LDWJX9X7olPQ03UrlajMNZcSuYKJeGQ,1360
|
|
20
|
+
include/eigen3/unsupported/Eigen/Polynomials,sha256=v1EtXbl2fANk_QCkuYe6UG2hCraRTX3HS8aG-ebyNCA,4749
|
|
21
|
+
include/eigen3/unsupported/Eigen/MoreVectorization,sha256=bNMtuL35kS00a7vhn2zKNE3i9GUVAcItqKWuSGvep7A,592
|
|
22
|
+
include/eigen3/unsupported/Eigen/MPRealSupport,sha256=2H7NflX8oKXdd3bq0f-lksnPztIcrKL42iWsBrmxL-A,7656
|
|
23
|
+
include/eigen3/unsupported/Eigen/CXX11/ThreadPool,sha256=a55i7Oc-W-Zef-sVRbaWBwLiD8hNS-Qy0BFsHO4Aj2k,2087
|
|
24
|
+
include/eigen3/unsupported/Eigen/CXX11/TensorSymmetry,sha256=Xatz4ez47OlpqwpZLwBID1tVNi0jwp_OrCe7OaZ_eac,1267
|
|
25
|
+
include/eigen3/unsupported/Eigen/CXX11/Tensor,sha256=ERCIG4K3m9-sckrNwHnDFHVllHJSlHR2AVv1WwqsbjE,4187
|
|
26
|
+
include/eigen3/unsupported/Eigen/CXX11/src/util/MaxSizeVector.h,sha256=lUSg3gr2rEAcS7a7hzMp2HulKr-uP09Kw2WiFraLMuk,4174
|
|
27
|
+
include/eigen3/unsupported/Eigen/CXX11/src/util/CXX11Meta.h,sha256=vfb6_OCPdzfFI-wKojyVidR2QWCGElSgLiN6i-PW74g,22752
|
|
28
|
+
include/eigen3/unsupported/Eigen/CXX11/src/util/CXX11Workarounds.h,sha256=xDvU3caW5c18x4VWj1M2_5--PsWqh9ji4X8CpecsOIA,4115
|
|
29
|
+
include/eigen3/unsupported/Eigen/CXX11/src/util/EmulateArray.h,sha256=DCnmPGJ7_s9pJCAZFkTwShCDSzlOaCvWKdjEO_FXWe8,8155
|
|
30
|
+
include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/ThreadEnvironment.h,sha256=KgcrsI-cresKg6Hw_UqwpSoE_jYtwqGmFCgMU7pFtVk,1209
|
|
31
|
+
include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/NonBlockingThreadPool.h,sha256=AZ8fp5PypMrFL5d8RjYPWpzk2FLzpeFregqyMkE6KAo,17075
|
|
32
|
+
include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/Barrier.h,sha256=pf0etwsUfZXVMbsNaGhmVHxfJzFj7sBu9B6iFvxX8Jg,2113
|
|
33
|
+
include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/ThreadLocal.h,sha256=eJe2SmFZMWGsvjfjPmyj_VSiZZawL70ho7AKnwwCO-Q,11482
|
|
34
|
+
include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/RunQueue.h,sha256=QgSy2IwkHlSUmtete4lgQl14RQVyyQeO__XxXfGeZZA,9366
|
|
35
|
+
include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/ThreadPoolInterface.h,sha256=iqZ-DcqFx5x6slnaP8CzTrMZsoXLREXCqj88UsIGi0M,1680
|
|
36
|
+
include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/ThreadCancel.h,sha256=7IPJUGtaaS24TND4IOFoq2vf8nkj_q9_MC34dwtAmKM,774
|
|
37
|
+
include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/ThreadYield.h,sha256=mTEppMz2rUkr8yKDvwBwDNGyRSqYFRIMEsU8tiYEt0c,715
|
|
38
|
+
include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/EventCount.h,sha256=zXHavOGkLR7XlRN23KhPD95QQu5IUUrr6CNRHheGccQ,9121
|
|
39
|
+
include/eigen3/unsupported/Eigen/CXX11/src/TensorSymmetry/DynamicSymmetry.h,sha256=1idio5z5-lzJixQaKm35Z5tC_WDhdc_BqjLB71fVs18,10857
|
|
40
|
+
include/eigen3/unsupported/Eigen/CXX11/src/TensorSymmetry/StaticSymmetry.h,sha256=ynPj38Z6-4lDPANJyRm4QyRuik5y9cuvKoCS9_YIYiI,9086
|
|
41
|
+
include/eigen3/unsupported/Eigen/CXX11/src/TensorSymmetry/Symmetry.h,sha256=ufkERAgmls6nw6mXnJKdMUVb-lMTMjOgqHKVRGGlItE,13021
|
|
42
|
+
include/eigen3/unsupported/Eigen/CXX11/src/TensorSymmetry/util/TemplateGroupTheory.h,sha256=6VEcKFQ5AKPxCdytaTXGsX8qKBECpXk39rTnXvVw4-I,21046
|
|
43
|
+
include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorRandom.h,sha256=KbTqsxWI-QdJQNy_UN8VT6YOtsVxqUl6S-L2pbayEXk,12385
|
|
44
|
+
include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorUInt128.h,sha256=UPHtCUNbXKq9x2Vw3nOCCxY_qqStpPrfZXJeoiRgrsw,7552
|
|
45
|
+
include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorReductionGpu.h,sha256=Yz6DDXsVp9JCOuWyjeFrJN1uNC-R3SuJ40ZYwHgq1lg,40719
|
|
46
|
+
include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorConversion.h,sha256=P9P0LRecMk5M-sxLCyBzn1-XTKvR_jCE9izrY6dFDLs,18803
|
|
47
|
+
include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorEvalTo.h,sha256=K7IxNJcMbICETYwTnS6Y_AU-_5KRke7o-j1BrnEK_AA,8556
|
|
48
|
+
include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorContractionSycl.h,sha256=9Mwezi-wkITp0aili9hqbPcCqeXa7Fiiy3tVgbwHRus,89042
|
|
49
|
+
include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorMorphing.h,sha256=kZQhUn3IYwcQojrMfKndhVZrXUHVnNlsdUf741lzXb0,43284
|
|
50
|
+
include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorCostModel.h,sha256=i1j_-REJ8PQDj914mIxMg6fJo9vUj1ulkvDF4mGw-V8,8642
|
|
51
|
+
include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorContraction.h,sha256=NVthrO0NzFxnet0cU5Y-OxrcdcVidgApE8wzpO14MxI,45320
|
|
52
|
+
include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorFunctors.h,sha256=GdEItwY2PalNd_fT4cM9SgBl9_doIOSQtOX7gcCcK04,15269
|
|
53
|
+
include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorReductionCuda.h,sha256=WMVKy3QA9fUIcUX2qeAeXiJT19I7nq_0TG5wAT61cok,221
|
|
54
|
+
include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorExpr.h,sha256=7Qv4MhVy9es23wmTFZlRWYOHmxOUOinAd51Zlrqqv6Q,16115
|
|
55
|
+
include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorContractionThreadPool.h,sha256=l3IlvCoBTYYvGD1Dsy2nTecQtc01iCJkJhRJDP3Nbw0,70687
|
|
56
|
+
include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorInflation.h,sha256=lLJ4oBIyIEpsmlGHe89lyFeAJOMVVVBV94aJiW74IQA,9094
|
|
57
|
+
include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceDefault.h,sha256=HOewfZiY8jRypX9jgHp-KlZOUW6xqpWje_FslN6Z4b4,3427
|
|
58
|
+
include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorRef.h,sha256=IL33sqAnssgnhHTI74HGdkFIZ7MzUEmC16fb0uLlrys,14793
|
|
59
|
+
include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorFixedSize.h,sha256=s6mcE5V8wcSL_0pv2fpnSlX7yJ5RThqAVTSWgOQmNM0,14486
|
|
60
|
+
include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorMacros.h,sha256=j3fwW87MZnHEA0bMJ4Hq8WZ3jHu-MAmsSNv9hvMKZTk,3642
|
|
61
|
+
include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorBroadcasting.h,sha256=quaKx2lcQXmJkp9146Mxdybqc0hw7swPtnirCLqX40o,42150
|
|
62
|
+
include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorCustomOp.h,sha256=-H2Y4z7IHATflC856iU_OvKD17ono7cX67JveXHjF58,13146
|
|
63
|
+
include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorArgMax.h,sha256=Pj9_uFJMNmQBe6NIdJsNlfhtc7cmmW7Ed4rQY8ekTY4,12448
|
|
64
|
+
include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorIndexList.h,sha256=aoJS9wuLu33_mzZdmIV4O3YeOqFTPzeK7YC64nlBnr0,25692
|
|
65
|
+
include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorImagePatch.h,sha256=63r4FNUanqLPaffLmDssVIT0GOcHCnQlkaMOFpsRDpc,28066
|
|
66
|
+
include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorIntDiv.h,sha256=yo4uEzTwi3vGUrH3x_vKmLL7xaJeat6LdgD6lY8Luqk,9041
|
|
67
|
+
include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorShuffling.h,sha256=2jM1U7qvXti4u5Wp3ixkTTgYAmEaESqetGdRTA2UmOo,18256
|
|
68
|
+
include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorReverse.h,sha256=7oHzaicuu1Qt1QW0y7Qv_heSw9untSwBlon84nzH0-A,16938
|
|
69
|
+
include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorReduction.h,sha256=zrRPAkpyiIIC6f5DeOjSYloAgg3FmLzruVuniP5wqYo,44395
|
|
70
|
+
include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceCuda.h,sha256=WXZ7t5TCv8_pEyJC-OvtrpwhekmmPFivC8g0wDK5q4Y,215
|
|
71
|
+
include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorInitializer.h,sha256=xwJnpXltTCEGmUz0PsnV6tdU7P-aitKZ4zFlYY3daKE,2730
|
|
72
|
+
include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorContractionBlocking.h,sha256=y-3D8ffs309gKMV_3eN-Ei8wIdId37pNKbjGxgumJ9o,2675
|
|
73
|
+
include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorGenerator.h,sha256=FwguEkyjPG9_XmlByGdK91hHlM4vYHJ9T4GzwQk5UuQ,10920
|
|
74
|
+
include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorConvolution.h,sha256=SXKQHVw2KsMMb1j4ugCuNCRIObrqL1Ep47qlD2Io3iA,48686
|
|
75
|
+
include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorTrace.h,sha256=m7uRkYCrx-x84RBwE_7xSq2QH43gzm5vbukniuwuZpQ,10152
|
|
76
|
+
include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorEvaluator.h,sha256=iTVhN7ZH9rZxxuYNTRTH8sLv5JyaOAAjZPOFtL5zRHo,40005
|
|
77
|
+
include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorForwardDeclarations.h,sha256=iFLwLnGsRsmwtrlfDKTMAZWoN2GCX3kF19qnSe1o9nc,8320
|
|
78
|
+
include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorMeta.h,sha256=fRDgCyR3e2snQI6bZgg1EqYbZFIgLi-unG0iDvduci0,8104
|
|
79
|
+
include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorPadding.h,sha256=Anx0LhzDMMciTR-HlKHMM_VN6h9SCD7N0dzFZr0HFX0,28764
|
|
80
|
+
include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceSycl.h,sha256=yIu4oLi9YGVHViyLlasStV8_I--9UXP5fokctIT0D_c,40367
|
|
81
|
+
include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorFFT.h,sha256=3fxgtEhBm1dKxhF7pnEhd_za5bE_bVzQBFw2tdQHy5U,24345
|
|
82
|
+
include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorLayoutSwap.h,sha256=ftdhSE-Ek_uSjB56TWJ-usz5-GnSr0yiPiIWA-qGE88,7769
|
|
83
|
+
include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorGpuHipCudaDefines.h,sha256=NviCSyJFxVbHUtYbTtHrOVeEMHPLY7sHKvzt5YGLO68,4068
|
|
84
|
+
include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorMap.h,sha256=0t9FXHJ56IQJKWGi6bY29Of2gku5DqN5-66itH-wpRc,14191
|
|
85
|
+
include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorExecutor.h,sha256=LZW36pczQdPBWgqhy7qhpNGB-J8lmSCuIwXKtMf8wDE,26655
|
|
86
|
+
include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorStriding.h,sha256=UztH-FlzXw8frTkIAZWl1Wb4q26FSNxOHBX-85YU5v4,13513
|
|
87
|
+
include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorPatch.h,sha256=o5srZIY1E6vjiqkN3nuavap1FfqTdt-zu9oCNavWmbQ,11474
|
|
88
|
+
include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorBlock.h,sha256=yA38mmjHCrTYomYMMu4TmupnpaFa3E6GiHPYMJAzA98,60851
|
|
89
|
+
include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorGlobalFunctions.h,sha256=SBjP9On61G7HoPFZ0-R-myjihqKg45bNcMLTmhV9X5M,1316
|
|
90
|
+
include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorScan.h,sha256=3YG-e0N-sFv4ouxSVuBwjXN5mrKg2whvebTEP-wXREs,20091
|
|
91
|
+
include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceThreadPool.h,sha256=FHxkQBJKVUmoPycxkZescvS_yhc3A3OJ-moyQlzYO5g,15203
|
|
92
|
+
include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorBase.h,sha256=8qaBJGSwiITSCzOsUBVnlXx0Ll773AKgJzsc4wDAN-s,57932
|
|
93
|
+
include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceGpu.h,sha256=tJ8_4wnmIornxvUTRU8TlcpXbK7XcjSi1yF2zHBJpQ8,12837
|
|
94
|
+
include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorStorage.h,sha256=GU6n3uV_-v07y8Ff3ABwVi5t6zu7akyXFMwWurweLGo,5481
|
|
95
|
+
include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorChipping.h,sha256=3gFwPRX5v89lK2jtclOerAVNDoxM-f_36C4ASdfUqH0,19707
|
|
96
|
+
include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorContractionMapper.h,sha256=cc6FlTgMPHpV5_tOALBXR0BHhAAKogJQjVMbL5MT5a8,23586
|
|
97
|
+
include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorTraits.h,sha256=g_ctZjJjZ6_xxsEMqbMRfJ-3arQctuZpFTVY-mAr6IA,9432
|
|
98
|
+
include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorReductionSycl.h,sha256=6DWhlbu4HiZEzAKS4L3HOfTxZ76Ft_qbhkRQL-Wob8c,30074
|
|
99
|
+
include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDevice.h,sha256=qmWGuhyAlF3T2QoeNVkjW4cEsqP_Vsj-B9cxmNDMGs0,4896
|
|
100
|
+
include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDimensions.h,sha256=7LQwJrx7q9DLP3ZfPKjHlVn_Ml1eKGcRFY0iyGki9tE,17751
|
|
101
|
+
include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorContractionGpu.h,sha256=wEwuDp5umIBY12clvXThdiv1rOmYQ44MbdGDPnbZjLY,63402
|
|
102
|
+
include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorConvolutionSycl.h,sha256=Flzv-2eQMOMBfFgfyT-YkPJgi-fRKmGM7_s4xoVU8tE,27527
|
|
103
|
+
include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorScanSycl.h,sha256=EGn91p3mLsJc635RHxL6moByUDLbVFlN2BC0MKAmAwU,25279
|
|
104
|
+
include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorContractionCuda.h,sha256=VPqsfc9SMx7FeLLy17XTqUg_BCBz7xOOYaS4_AmrZko,225
|
|
105
|
+
include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDimensionList.h,sha256=YjOiUEPfR7tcPx3CwO0I0AqM7Zbm6lbkQK2L4sD2S7A,7674
|
|
106
|
+
include/eigen3/unsupported/Eigen/CXX11/src/Tensor/Tensor.h,sha256=-6fvJ-2DFU47TLphGkPY9j1XRxfNUFofUOjdHw6fjsg,21269
|
|
107
|
+
include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorVolumePatch.h,sha256=hhtV-BzYySE2LASRz4v6MHTyGFTLEIc-xgwbDbK4LvY,30089
|
|
108
|
+
include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorForcedEval.h,sha256=702pv5OcwklVN3kY7dfZazRCJnb5qTyasudQ16gbRB4,8782
|
|
109
|
+
include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorIO.h,sha256=OdciFoYwOtwmBzbGWkKlyGsdUdb-pv8lOR1yBuMA2xU,2560
|
|
110
|
+
include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorConcatenation.h,sha256=fZzNNp1_bFqecm03OM7u5L-vn5qkAJYEvhYYjKv48nU,15665
|
|
111
|
+
include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorAssign.h,sha256=sWcEKNsBoJZjwzCxs2fFBoFHWs98t_O_dqgGVGlr98A,10323
|
|
112
|
+
include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorGpuHipCudaUndefines.h,sha256=h_GKsob90mMjq2whijQ_1t-0SL8mczn4bCxbceohs-U,1267
|
|
113
|
+
include/eigen3/unsupported/Eigen/src/MatrixFunctions/StemFunction.h,sha256=miLQKd7KREzDLyowz_w5RLNzVnkZYZktXGBTbVHnpqY,2107
|
|
114
|
+
include/eigen3/unsupported/Eigen/src/MatrixFunctions/MatrixLogarithm.h,sha256=CeS7w8GulltaRbOoSLpsoq5xckx3eY8M8TxsTzIbtsY,17557
|
|
115
|
+
include/eigen3/unsupported/Eigen/src/MatrixFunctions/MatrixFunction.h,sha256=BqfTBmNMEY2OnRP1M1YeAtq-tEpbfOz-iyn5g3WcZgY,22671
|
|
116
|
+
include/eigen3/unsupported/Eigen/src/MatrixFunctions/MatrixPower.h,sha256=EWm8EtYBChlL0T5iPw6JzfWUyqgf83mAnrvnlQxgMAM,23422
|
|
117
|
+
include/eigen3/unsupported/Eigen/src/MatrixFunctions/MatrixExponential.h,sha256=4VMXm1XxmPX9JT0bCxm8iDc1ZUd3Hgr6y8BQbov6ae0,16624
|
|
118
|
+
include/eigen3/unsupported/Eigen/src/MatrixFunctions/MatrixSquareRoot.h,sha256=XGPxWB_qYfgRNfSh6aJfmRmP80Nyu5-A-UJDc-GXXG0,14212
|
|
119
|
+
include/eigen3/unsupported/Eigen/src/LevenbergMarquardt/LMcovar.h,sha256=3861KPmZul5eqmieVFa6UOEb7EEfFTmzcTZ4vdPfwKw,2443
|
|
120
|
+
include/eigen3/unsupported/Eigen/src/LevenbergMarquardt/LevenbergMarquardt.h,sha256=OrzX6r3ucnhAKYV0GZK5vRwYwRXbFLb_6eXWCvHUHu0,13297
|
|
121
|
+
include/eigen3/unsupported/Eigen/src/LevenbergMarquardt/LMpar.h,sha256=X8Hp0NjyDcM44QHVLxERctOh4oBuf6MnPa0wNNOPP_0,5039
|
|
122
|
+
include/eigen3/unsupported/Eigen/src/LevenbergMarquardt/LMqrsolv.h,sha256=SVX8VtyVjtXR21TUYmPIsAxoBSrg15xMSCXvPungmfk,6805
|
|
123
|
+
include/eigen3/unsupported/Eigen/src/LevenbergMarquardt/LMonestep.h,sha256=WLy1LKU3ZEdAvzwmjOJJand-zDhs8L-dTPlSSBwGm0A,6648
|
|
124
|
+
include/eigen3/unsupported/Eigen/src/AutoDiff/AutoDiffJacobian.h,sha256=QZypzAIn7nVD2j1ijHABcG_r5mZB83yWrx9zz9P7_-g,3150
|
|
125
|
+
include/eigen3/unsupported/Eigen/src/AutoDiff/AutoDiffScalar.h,sha256=3ASXjMyKTFAiqIOp2w8t7cnwYZjC6zupSPhpBMnetGk,29107
|
|
126
|
+
include/eigen3/unsupported/Eigen/src/AutoDiff/AutoDiffVector.h,sha256=BUUppj6gBbafJyskMB9NiEKCh6w4uI2MNj4WcQdt9JA,9029
|
|
127
|
+
include/eigen3/unsupported/Eigen/src/NumericalDiff/NumericalDiff.h,sha256=F2-06NuiIz9xbodtAPabcEjDAlwCWSqpRX6pDUJYaZQ,4020
|
|
128
|
+
include/eigen3/unsupported/Eigen/src/NonLinearOptimization/chkder.h,sha256=ekTgbDavtmwk1np038GOnszLUXehuC2IR6L4hVGPpYE,1864
|
|
129
|
+
include/eigen3/unsupported/Eigen/src/NonLinearOptimization/rwupdt.h,sha256=yOm0LkW4Cmh63N9gVs0uzZuQc3DS5oPdhXs_n2CMfP8,1362
|
|
130
|
+
include/eigen3/unsupported/Eigen/src/NonLinearOptimization/fdjac1.h,sha256=tLZ1nOct4MM0P2950Fitz-lAZE069R2DCd3mEKXHEPE,2225
|
|
131
|
+
include/eigen3/unsupported/Eigen/src/NonLinearOptimization/dogleg.h,sha256=zcnhLi61hNfU2qXjDCafv63s4XyMo-6lfjwKpSPZiz8,3297
|
|
132
|
+
include/eigen3/unsupported/Eigen/src/NonLinearOptimization/r1updt.h,sha256=cv6OB4jn92DgmHQvTZran0mWrTrMFt-HAwra8rCBr84,3083
|
|
133
|
+
include/eigen3/unsupported/Eigen/src/NonLinearOptimization/qrsolv.h,sha256=Ts4lRyhRGqIgYt0F0KHYTgQkwhZM-3cVVqzDWJT7pO8,3264
|
|
134
|
+
include/eigen3/unsupported/Eigen/src/NonLinearOptimization/HybridNonLinearSolver.h,sha256=IZGBCI0OFeRw11kxK-6SWbv1OjcuvPmVdZXX25HlKow,19837
|
|
135
|
+
include/eigen3/unsupported/Eigen/src/NonLinearOptimization/LevenbergMarquardt.h,sha256=EX5a42pa-csg8hdNHYRD12i43quK0R9tiiGyjm8_RPk,22135
|
|
136
|
+
include/eigen3/unsupported/Eigen/src/NonLinearOptimization/lmpar.h,sha256=GPlcAfAiTZM3xz-1hOk2n2yDQfeQAx0XKWWroUzEk8M,9111
|
|
137
|
+
include/eigen3/unsupported/Eigen/src/NonLinearOptimization/r1mpyq.h,sha256=ase7D9EC6urVxmnIE236LhYt5RO8hVXRsSi40lFrmZQ,1081
|
|
138
|
+
include/eigen3/unsupported/Eigen/src/NonLinearOptimization/covar.h,sha256=VIACbf3Qws3s9aX3zNi5Qs_sZnehOxbWFUw16AxqjBU,1915
|
|
139
|
+
include/eigen3/unsupported/Eigen/src/Skyline/SkylineMatrix.h,sha256=HO4DaD0GvMBFs1KGF6s_LQjF7uHdWzUBCkYOCEXGaXQ,31105
|
|
140
|
+
include/eigen3/unsupported/Eigen/src/Skyline/SkylineStorage.h,sha256=NeTIELs1qr7wncZR9-bVi3D1hx5XAGvUhL-QqMuCGJw,7966
|
|
141
|
+
include/eigen3/unsupported/Eigen/src/Skyline/SkylineUtil.h,sha256=nzSvAIY_FB2yHCF7F6wlOaNS_jHFn_5rDRboOCBU-N8,3153
|
|
142
|
+
include/eigen3/unsupported/Eigen/src/Skyline/SkylineMatrixBase.h,sha256=DG2IyvFBkJd0MV4SW2FmAR4OrjA8Inyj_9edIKhQeg8,7837
|
|
143
|
+
include/eigen3/unsupported/Eigen/src/Skyline/SkylineInplaceLU.h,sha256=TiXysVkvUxMkNVYJ6HoKZMNtW5w26L5x-dIeeKd-u0I,11365
|
|
144
|
+
include/eigen3/unsupported/Eigen/src/Skyline/SkylineProduct.h,sha256=6ctI1SByG2gtW5TkN42RK9DxMXV7MQ-FrQ2-low1sFw,10853
|
|
145
|
+
include/eigen3/unsupported/Eigen/src/BVH/BVAlgorithms.h,sha256=KC5tUH2aPlxujvipHIQ8EcHgW0LxNnVoUsOHLLQXl1E,12976
|
|
146
|
+
include/eigen3/unsupported/Eigen/src/BVH/KdBVH.h,sha256=JepM0MGrChNUl_HKK3W9NqrN7d4et6o5bska2VC7Nkk,9166
|
|
147
|
+
include/eigen3/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsArrayAPI.h,sha256=I_w1eMg2Vj4oGaneCm-8RkJIa5PP0uTfN-V-DbQ-i0Q,7694
|
|
148
|
+
include/eigen3/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsPacketMath.h,sha256=JOkhD4nKiilVJGXFH5jwgUleZeo8-fN0Jtwm-ngPCEI,4006
|
|
149
|
+
include/eigen3/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsFunctors.h,sha256=G52H8od73SPwkc9MuWfQzh1AGEWexaq6dknvxo1UOa4,11700
|
|
150
|
+
include/eigen3/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsHalf.h,sha256=8DmWTG4ZRRhYHl3vTcBUyuFqFvvcC-_mI73VpFkV0_g,2899
|
|
151
|
+
include/eigen3/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsImpl.h,sha256=mzyC6HJpMPxXLWDnK-DdbXaTMt5iISJ0w2JIFDPq1jI,69632
|
|
152
|
+
include/eigen3/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsBFloat16.h,sha256=9AtJ3B3Vh4KR5Hw_xjuu7qorosrLHL_SyInkbnFkPUI,2724
|
|
153
|
+
include/eigen3/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsHalf.h,sha256=EQ9GIVk1Qn-SYsxFoMq3bc3-NMYbz0u8lT3_zjcTMUg,2544
|
|
154
|
+
include/eigen3/unsupported/Eigen/src/SpecialFunctions/HipVectorCompatibility.h,sha256=WPG2nDebvmaL53MJfGBMKJnYianOg9R8COyj57ucoNs,2489
|
|
155
|
+
include/eigen3/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsBFloat16.h,sha256=8pO6VVzTA8YYiBrOjFzkJHVd_eYdoHivMs9VvunlJ0g,3087
|
|
156
|
+
include/eigen3/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsPacketMath.h,sha256=ZqP8O4jjSyEPIrGot9XcudNuZ76ram9JHeYP5InANto,3713
|
|
157
|
+
include/eigen3/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsArrayAPI.h,sha256=Kf40ZDBOkbqVBoFKrTk0eq9JfjJysrauDwZfR7m-Dq8,10015
|
|
158
|
+
include/eigen3/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsImpl.h,sha256=l8OCgPHSsr8C-rSdDdT_lHkg80LIYiz6Kakk1NHiF_s,58539
|
|
159
|
+
include/eigen3/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsFunctors.h,sha256=D4A35TA2kOmpqbc6r1DNyWPU-P3SVEkOsM_cpRGnP6o,12641
|
|
160
|
+
include/eigen3/unsupported/Eigen/src/SpecialFunctions/arch/GPU/SpecialFunctions.h,sha256=8qB-xEPrv2Rrk96jP61XHo7RVby0mtFB5t0kSoofJJo,10864
|
|
161
|
+
include/eigen3/unsupported/Eigen/src/SpecialFunctions/arch/AVX512/BesselFunctions.h,sha256=YkBb2bDAmHgfDP-Fbok-Z0_8YnQX2YZFu-oPYMMvuwo,1549
|
|
162
|
+
include/eigen3/unsupported/Eigen/src/SpecialFunctions/arch/AVX512/SpecialFunctions.h,sha256=AlI_TVRNWqXdobwYewoBiKYw5M9Ivm0leDXN9dv22bw,415
|
|
163
|
+
include/eigen3/unsupported/Eigen/src/SpecialFunctions/arch/AVX/BesselFunctions.h,sha256=c8n4ryTNSc3GaLoLt7kSDzMpZpq3RE5dXyqHIGa4YhA,1492
|
|
164
|
+
include/eigen3/unsupported/Eigen/src/SpecialFunctions/arch/AVX/SpecialFunctions.h,sha256=VihlVEXAV31rLXjBdWBFcFNVMo6dFjMJaGIJZ1DwXt8,398
|
|
165
|
+
include/eigen3/unsupported/Eigen/src/SpecialFunctions/arch/NEON/BesselFunctions.h,sha256=6HWKDWP2TlnaAJ7w2f5WLUc2CsrYeXeWWuNzuJBlGCw,2258
|
|
166
|
+
include/eigen3/unsupported/Eigen/src/SpecialFunctions/arch/NEON/SpecialFunctions.h,sha256=G2EXLzIKd6E_XKOcplAvPBBFGKlco-CcjErDtU3STgM,1283
|
|
167
|
+
include/eigen3/unsupported/Eigen/src/Splines/SplineFwd.h,sha256=5K91T9EDnVCqWxNogT4GN6g3ieIx9uoJ3_4Y-UkBeF0,4312
|
|
168
|
+
include/eigen3/unsupported/Eigen/src/Splines/Spline.h,sha256=5ma22NIaePRM3TJ8-XwYjlB1kaKsD41mR58qbXoHGX8,18307
|
|
169
|
+
include/eigen3/unsupported/Eigen/src/Splines/SplineFitting.h,sha256=rsHZiQKOqWBd-ptCJyOP2Ju5uDc9Vm7V8SoUJQcSUR8,16505
|
|
170
|
+
include/eigen3/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h,sha256=VRwDAMV982CT3_mhflFauUM5YtFrmzAV5sWg1QtG7Bw,10250
|
|
171
|
+
include/eigen3/unsupported/Eigen/src/IterativeSolvers/MINRES.h,sha256=Uni6UBQGxPuGIHTW9BHUJ2rizd6upNLIJRv_pK8nS_E,12397
|
|
172
|
+
include/eigen3/unsupported/Eigen/src/IterativeSolvers/IncompleteLU.h,sha256=pmqiXGJVZEIPY6-ZwXSQYdJAJMrcBQ54ek4rPMBpjF4,2520
|
|
173
|
+
include/eigen3/unsupported/Eigen/src/IterativeSolvers/IterationController.h,sha256=gVYjeim_7Jv8a7L51hmfuwx8LDR7rkJKfIt7YmSqCaI,5360
|
|
174
|
+
include/eigen3/unsupported/Eigen/src/IterativeSolvers/ConstrainedConjGrad.h,sha256=LuB99ry7J9S7bULsa6_DPEr-qDaEYZO_kosGXbL9ZGc,5324
|
|
175
|
+
include/eigen3/unsupported/Eigen/src/IterativeSolvers/Scaling.h,sha256=MaTFK_qJ_dlLbVZDGkl37saxJjPRnCNckyAPii9211c,5853
|
|
176
|
+
include/eigen3/unsupported/Eigen/src/IterativeSolvers/IDRS.h,sha256=N-ejEklWLwyjWdq9M5hrbdZ1qu4gvH3ZOZO--48w7zQ,14794
|
|
177
|
+
include/eigen3/unsupported/Eigen/src/IterativeSolvers/GMRES.h,sha256=Ur4IEqJYOyufUiE1Y-RQsU0uBrTyOtWzkdxLzw6TIgc,10209
|
|
178
|
+
include/eigen3/unsupported/Eigen/src/IterativeSolvers/DGMRES.h,sha256=C-CKdZ532DCdXPN_pqXuRT7oNSsoh437FeyZGJGA5fA,17769
|
|
179
|
+
include/eigen3/unsupported/Eigen/src/FFT/ei_kissfft_impl.h,sha256=qg3459MDUw87zKzppGPrdjRuejMHx4EGwVQPdMcYaak,13231
|
|
180
|
+
include/eigen3/unsupported/Eigen/src/FFT/ei_fftw_impl.h,sha256=jAwJ-5qrWTN1cxjb9PVMhrtNmrKMtwkmhtQLxdk5B_A,9223
|
|
181
|
+
include/eigen3/unsupported/Eigen/src/EulerAngles/EulerAngles.h,sha256=tHTm2bx0gfekjjjftB469Pc7py_fytUOdLQyGKSYvFY,15367
|
|
182
|
+
include/eigen3/unsupported/Eigen/src/EulerAngles/EulerSystem.h,sha256=WrVhaQaZI7IGFXWeEyKFvYMiDt561U7krtHt7nvGmhE,11620
|
|
183
|
+
include/eigen3/unsupported/Eigen/src/SparseExtra/MarketIO.h,sha256=tCyF0jLS14MEEJUuI0i8EKlNS19l9R-d2VGmh0czQPo,8416
|
|
184
|
+
include/eigen3/unsupported/Eigen/src/SparseExtra/RandomSetter.h,sha256=XNlXE1Cxl_dVtYyncSgc1kfZm8wZtC6tDQK6f4tnM24,12423
|
|
185
|
+
include/eigen3/unsupported/Eigen/src/SparseExtra/MatrixMarketIterator.h,sha256=2br3yTbdDWYnO10pwIz04IWjI6tfvakm2m6GHcD9DJE,7568
|
|
186
|
+
include/eigen3/unsupported/Eigen/src/SparseExtra/BlockOfDynamicSparseMatrix.h,sha256=sxDlDRTN8iyJmgxU8DSbex6Pq85uVZJBzFvHPOzc1Hc,4260
|
|
187
|
+
include/eigen3/unsupported/Eigen/src/SparseExtra/DynamicSparseMatrix.h,sha256=KbvbexyA5RDhN7ZoNd5BAEaWExmx8TRfazwr7V0iO6A,13744
|
|
188
|
+
include/eigen3/unsupported/Eigen/src/SparseExtra/BlockSparseMatrix.h,sha256=rRTMEqMi4YkaLKEKZLCCIbaduguCGNKvV05yEw96plg,40316
|
|
189
|
+
include/eigen3/unsupported/Eigen/src/Polynomials/Companion.h,sha256=506CxMZQBSlOuz38RHe09Se0n7sgdfS0ijk3u_oopeo,8076
|
|
190
|
+
include/eigen3/unsupported/Eigen/src/Polynomials/PolynomialSolver.h,sha256=MRjomFFxY_I1ZXFg-DcOLFOzjf6zh1Cq2ZtFUDsAqkQ,15683
|
|
191
|
+
include/eigen3/unsupported/Eigen/src/Polynomials/PolynomialUtils.h,sha256=88IWHmW0IJrcuET1UHjgTe-w2x8Q9Udu0KteZF4j4GA,4806
|
|
192
|
+
include/eigen3/unsupported/Eigen/src/MoreVectorization/MathFunctions.h,sha256=U_3E8Izg7JDdG59MKbVxiB0nZQgLU8YXeS1WrRbcoEs,3035
|
|
193
|
+
include/eigen3/unsupported/Eigen/src/Eigenvalues/ArpackSelfAdjointEigenSolver.h,sha256=EiAVvN_GHZ81BReFVBUEBA2q0Kh6kza0qugAJyaPoPU,29075
|
|
194
|
+
include/eigen3/Eigen/CholmodSupport,sha256=JvDRvQZ3eFOU8fTrLN33Y0I_cDwJQbPlg3PpVbATAyc,1900
|
|
195
|
+
include/eigen3/Eigen/StdVector,sha256=fosQYHV6EUApj_OQXfcO21mtEIP1BWgd8w3J3Jlj2Ks,803
|
|
196
|
+
include/eigen3/Eigen/StdDeque,sha256=wYhRZ6RHglq3w1VzQiw--iPexi9bYwrDIv_mWODuUkI,797
|
|
197
|
+
include/eigen3/Eigen/Core,sha256=uK5fd6MNSLyvYipW9wR7qosvt5D123Nhqh1X9CT6PB4,12799
|
|
198
|
+
include/eigen3/Eigen/SparseLU,sha256=XnRux2MFSTHxbt5cWIqrK0TXVf69rymfXuTMoDRqhbY,1814
|
|
199
|
+
include/eigen3/Eigen/OrderingMethods,sha256=JfrIHKwzWAF-Tcsg-Tr9D5zmXWBBN28v9dlv2dCEvXI,2451
|
|
200
|
+
include/eigen3/Eigen/QtAlignedMalloc,sha256=xGYpHG59Iw6Ldrclza0e2Cwkm_AfXsO8tvP2UB7Q_5c,900
|
|
201
|
+
include/eigen3/Eigen/Householder,sha256=GhjqJlnbFc6T3g9a_xNaU2r5cB2pr08CZxDlbe8jpVk,829
|
|
202
|
+
include/eigen3/Eigen/PardisoSupport,sha256=UOxQA985n6v1GGIOIg9xxxf_OgOnIYuGUKl03DrQaxU,1116
|
|
203
|
+
include/eigen3/Eigen/SparseCore,sha256=IyPB4xed_Gq_NIFht4wb9ezQyqj0UscMrKmhzf3Wpq4,2240
|
|
204
|
+
include/eigen3/Eigen/Jacobi,sha256=rzAgyRuOktBzTBE_sVEdlqDWsFgSiRHYmOAXdiijWMg,894
|
|
205
|
+
include/eigen3/Eigen/Dense,sha256=UyXJ1NaT5QTuASxSda1LELE1pwHL2HwURm0uoh6iLuU,122
|
|
206
|
+
include/eigen3/Eigen/SPQRSupport,sha256=T6LXO5mMB5RoLWPf-__3lb6kGn0YZlhAscNX5m_xyJ0,1162
|
|
207
|
+
include/eigen3/Eigen/QR,sha256=53rhAQ6d8dyw5ah1YEjDiAzrAjcR6NG1aeAbA58TCCA,1272
|
|
208
|
+
include/eigen3/Eigen/Eigen,sha256=sEc7XXwM2TEdSpBUgWLozxYJBEdocff7dJ6WJOmz39E,35
|
|
209
|
+
include/eigen3/Eigen/SparseQR,sha256=dDNFiuAILyaqw7VE8I5XGKXRIsR5qTFCUrQRzPHZuPs,1195
|
|
210
|
+
include/eigen3/Eigen/SVD,sha256=EVWjLv1mTLQzM6NPqKy8vCb6M62u3-6OIO3fZ0Nq6IY,1584
|
|
211
|
+
include/eigen3/Eigen/Cholesky,sha256=SMcsLXuY_bRRZ10u4DhQ7P3JfqQbzlXtdUsD2kqwm9A,1161
|
|
212
|
+
include/eigen3/Eigen/UmfPackSupport,sha256=AD1B-gjN5oscRphJn6m_nIA867J650hhWFFRn0LcVqw,1382
|
|
213
|
+
include/eigen3/Eigen/IterativeLinearSolvers,sha256=hP-jisHvO-AFv_UAt4tSnB4WT8UGN4Nv-GSP6hJ7dPc,2083
|
|
214
|
+
include/eigen3/Eigen/LU,sha256=0A-rF2kizdSiMf8z6tWPwtshqdkwNLz3ugwqNRplS6Q,1268
|
|
215
|
+
include/eigen3/Eigen/Sparse,sha256=vjUbbuZSp6IOOVPQ6uIW1NAcLCa6e2pGS_kI2zRJkHs,888
|
|
216
|
+
include/eigen3/Eigen/Geometry,sha256=84oUXuUT0fp1v8_HlPvEfJ3mWjr12ftxngV6xjMCwvg,1940
|
|
217
|
+
include/eigen3/Eigen/SuperLUSupport,sha256=iqYB8_oea_wDt5lma_OevELUSRel-yqqSJvq_WOQH3I,2243
|
|
218
|
+
include/eigen3/Eigen/StdList,sha256=A1QOKXrpbtA-go2aQzu39aXpOqg8b1CmwnHHj5KD1mc,726
|
|
219
|
+
include/eigen3/Eigen/MetisSupport,sha256=5G1R0wZZYkCKQDSA8snK1OfWH7UJweSmlSdHUSdJaaI,991
|
|
220
|
+
include/eigen3/Eigen/SparseCholesky,sha256=bjZKchFd6lcGHhNqbsgEzyHF0815qkQ5_Ss1L1id6ps,1235
|
|
221
|
+
include/eigen3/Eigen/Eigenvalues,sha256=8ZWKms880-H1GNhx19xgLoEBszzjUAi47o4XIIRb2gc,1777
|
|
222
|
+
include/eigen3/Eigen/PaStiXSupport,sha256=9CO5Vxa4BPlSEjTfvFitGi-tmhb4S88W3wu4iu7MhUM,1751
|
|
223
|
+
include/eigen3/Eigen/KLUSupport,sha256=vEYx66RCVNLRAih_AcArDKeTKRyXa1CbfDUoFX_tL2Q,1389
|
|
224
|
+
include/eigen3/Eigen/src/CholmodSupport/CholmodSupport.h,sha256=_XiNvLNTzR8Oyp-m_2V2CzNY-7RF7n3v7x-nyYNKXnk,25441
|
|
225
|
+
include/eigen3/Eigen/src/misc/blas.h,sha256=dOWodSZy7a3ZNjf23H_rilBCfqlPmsXR7VbcLa4PrWc,30560
|
|
226
|
+
include/eigen3/Eigen/src/misc/lapacke.h,sha256=Bmc-lq9luQfIPUJJW3VDYbQr2_nvxjU9UfLnAjlsrrc,1058369
|
|
227
|
+
include/eigen3/Eigen/src/misc/Kernel.h,sha256=IIiRDtPS_STfPS980xZLyEV8eCqOAFi39K3yKKHT7ro,2742
|
|
228
|
+
include/eigen3/Eigen/src/misc/RealSvd2x2.h,sha256=X-B5X0XNkqCbSMAiWe90O6y76G-JDLDAclwMA_tWiGo,1748
|
|
229
|
+
include/eigen3/Eigen/src/misc/Image.h,sha256=-Pn7ZkwUYgVhdflW2Td77dFQ6MRfuJo570RjtjaGxKE,2913
|
|
230
|
+
include/eigen3/Eigen/src/misc/lapack.h,sha256=_9_gqkbLMiEgKp8lguOez21a1mYmzf1w9AmFlSHWg0Y,7834
|
|
231
|
+
include/eigen3/Eigen/src/misc/lapacke_mangling.h,sha256=fXH97lOh4M0BVoq6LxUvLh5Pu4SehNdA47Ax6Bn7-iI,474
|
|
232
|
+
include/eigen3/Eigen/src/Core/Reverse.h,sha256=lmCGSuTPyF3sQNgueaWYtx5cWPUwNL3TDHQJPFq5oVQ,7522
|
|
233
|
+
include/eigen3/Eigen/src/Core/ConditionEstimator.h,sha256=uSdt-5gLRfIu3k4I7uRH9eAIR0AOZvJnlnaSIz5CTCc,6990
|
|
234
|
+
include/eigen3/Eigen/src/Core/PermutationMatrix.h,sha256=xOo3Hcj9crxhDZe56OJB2XZcCNjWqT5m2FH8CVzZzmA,20748
|
|
235
|
+
include/eigen3/Eigen/src/Core/Assign.h,sha256=dKQAmY90XhiXo_Kd4MHxDmrS6XJp9ylFq7JZ5mF_O2I,2738
|
|
236
|
+
include/eigen3/Eigen/src/Core/MathFunctionsImpl.h,sha256=lvc1eFdCOZ_8YQmm2KQb8jknibWnE8nL-y8Il2dJEkc,7156
|
|
237
|
+
include/eigen3/Eigen/src/Core/CwiseUnaryOp.h,sha256=ptT-VJWaOq0EShXxJmiLRFujF8jNj2DDpOGGMuMBXJA,3937
|
|
238
|
+
include/eigen3/Eigen/src/Core/DiagonalMatrix.h,sha256=Kg1DVgs8zq-jetJsx7RKlRVF5WqH0X54uJbG0GPGRxg,14670
|
|
239
|
+
include/eigen3/Eigen/src/Core/StlIterators.h,sha256=yudREy61voHxl0k2-akEGTWqipHX0AZbSDAeTPV7EMQ,21641
|
|
240
|
+
include/eigen3/Eigen/src/Core/VectorBlock.h,sha256=1_VF-6FHnjOeMEB5nsGgAIskLLr7RWEAy5XnzWRYa0k,3488
|
|
241
|
+
include/eigen3/Eigen/src/Core/ReturnByValue.h,sha256=ijhUmPC6DGdGb-FRr0LlU3vTxddbidQLc7wQPHcwlmU,4284
|
|
242
|
+
include/eigen3/Eigen/src/Core/Solve.h,sha256=0UEeTDezRD00It_7piJacK4Yaw7ZCj8Ju-wUcn7fhvI,6837
|
|
243
|
+
include/eigen3/Eigen/src/Core/ArithmeticSequence.h,sha256=8vgcI6huL7rFhH2DSPfdEPD-OYEoNNNLVERuG8pE-68,19214
|
|
244
|
+
include/eigen3/Eigen/src/Core/Product.h,sha256=R5WGCVcHEtjAZsjnUp_OM0bwzHlKzNOQ91PZcD1IQs8,7336
|
|
245
|
+
include/eigen3/Eigen/src/Core/MatrixBase.h,sha256=P8p3jdYQkj98CJ_m9j5gAAXxT-3BVoUVkfypmaKOWSs,23856
|
|
246
|
+
include/eigen3/Eigen/src/Core/Stride.h,sha256=XvhjHxIi1JnpwnMmbsu4B3iRJosg3RHHv1foOz-3w30,4212
|
|
247
|
+
include/eigen3/Eigen/src/Core/Map.h,sha256=N9PDYRqEYInLMKDXjd3EXTIphbtj-k31aA9vM8AWoHs,7256
|
|
248
|
+
include/eigen3/Eigen/src/Core/ForceAlignedAccess.h,sha256=g5uk6NSZjvNzhM24_mbkq6A3rvqCTaxjsQLwFrNnAXU,4909
|
|
249
|
+
include/eigen3/Eigen/src/Core/MathFunctions.h,sha256=s8bNFz1KyHnlaKxXCAQt0LsWCAXGupxV2gXIE0ZW91g,60784
|
|
250
|
+
include/eigen3/Eigen/src/Core/SelfCwiseBinaryOp.h,sha256=TQ8CFAN4yP0ouwXS8T3FDdhnvbwt3c4iP-N7gtvxerU,1697
|
|
251
|
+
include/eigen3/Eigen/src/Core/BandMatrix.h,sha256=ZusMpQuT9NzcCDqiH0Md2QUsMZkRNW2QJVdvDNnGyJM,14075
|
|
252
|
+
include/eigen3/Eigen/src/Core/Inverse.h,sha256=Xu8vJuEFNJiB6xQIzC62dLJkySTUW6P2v867yt_msQw,3503
|
|
253
|
+
include/eigen3/Eigen/src/Core/Assign_MKL.h,sha256=dPYwhbhTcHKTPsFzuRtDcL7RUXeMZDWicqlBtnj4tJA,12488
|
|
254
|
+
include/eigen3/Eigen/src/Core/Swap.h,sha256=cq3ST1UzR38ao94FITvncu7qmhPWfbgtAvdPzOUB6kA,2765
|
|
255
|
+
include/eigen3/Eigen/src/Core/ProductEvaluators.h,sha256=2IY694zzCciY008Oizi7TBs3C1YipIBkIR9bOwrZHrA,53832
|
|
256
|
+
include/eigen3/Eigen/src/Core/MapBase.h,sha256=7uz3jWkieES7KRTck21U22rNn6jvjQ4pqScrhJON4aA,11281
|
|
257
|
+
include/eigen3/Eigen/src/Core/Matrix.h,sha256=_YTfwccLBClS0pnznwVpT4LKHxfKAT6zNnV6PPcebRE,24343
|
|
258
|
+
include/eigen3/Eigen/src/Core/EigenBase.h,sha256=9nQxmKrOAik2Su84QtekyuxMZIJoES1dyIdQ0TnwJho,5841
|
|
259
|
+
include/eigen3/Eigen/src/Core/StableNorm.h,sha256=SI5NEBo9ABOxkbgMGPwcQumIczthCbcEv6QMz3fT0Yc,8700
|
|
260
|
+
include/eigen3/Eigen/src/Core/GenericPacketMath.h,sha256=FatABDPfUC3DlhmTRVtWPFXV-kfFqTIE0SrSp5cwr90,38812
|
|
261
|
+
include/eigen3/Eigen/src/Core/CwiseBinaryOp.h,sha256=AxbMB-jrRUh65PJDJ5EWjhwTQHEgAU67P0FhP_xuMCw,7909
|
|
262
|
+
include/eigen3/Eigen/src/Core/Visitor.h,sha256=0y8bT7AGWjEr8TooYc88PS_wjSvvStiwFLUAYa6IAqQ,11997
|
|
263
|
+
include/eigen3/Eigen/src/Core/DenseStorage.h,sha256=I16S84EpH_dd3j9b2Djc9-TGyAuoOUBVDib37kt8DIg,25360
|
|
264
|
+
include/eigen3/Eigen/src/Core/DiagonalProduct.h,sha256=_6cfNHpZFMnpNB6oK7Qr97b3uNBFS8F7xWKa3bghOMs,988
|
|
265
|
+
include/eigen3/Eigen/src/Core/CwiseUnaryView.h,sha256=5ZqmH2GmdTLUproXOERwPH6Y4o17jH6c7gqp0w1rlnU,5551
|
|
266
|
+
include/eigen3/Eigen/src/Core/NoAlias.h,sha256=Ip1s5MuKGSHKzWNPb-ZOaYxUB3MCSHxiICuEWnRGYY0,3620
|
|
267
|
+
include/eigen3/Eigen/src/Core/DenseCoeffsBase.h,sha256=shKz8IklvEP3gDcJl28Iz0qD2t1UXVWLqRWZ6SoAllk,24484
|
|
268
|
+
include/eigen3/Eigen/src/Core/PartialReduxEvaluator.h,sha256=hj7Bxbfe3LjOvaTLnDi2_HfcddIpDb_yw5p9uYzjOjg,9207
|
|
269
|
+
include/eigen3/Eigen/src/Core/IndexedView.h,sha256=X6kQiPumLzTPCrTmy7q6iKNrfEsZXebS9nyW4pPzL-w,9620
|
|
270
|
+
include/eigen3/Eigen/src/Core/Fuzzy.h,sha256=TaSjzj16hbMNNZd2WEFeSKTBBR7Wuh3Uxhy8jTUAJ9M,5759
|
|
271
|
+
include/eigen3/Eigen/src/Core/TriangularMatrix.h,sha256=zEwgkLv57QKwo2EpgJ-yw5oy0r0u_qBdDeux6v6EgRE,38277
|
|
272
|
+
include/eigen3/Eigen/src/Core/IO.h,sha256=iaTrSS9KSgqeIe_2ZmODFS0PRe-C1KGHnmEnfa-0rU8,8238
|
|
273
|
+
include/eigen3/Eigen/src/Core/Array.h,sha256=39fKPydmTk45GiUd5NpStFdQf8lCUWohqz6Ln6T-jaQ,16782
|
|
274
|
+
include/eigen3/Eigen/src/Core/SolverBase.h,sha256=M57lChZDARbiviOylEHsf7kLc_8r9r6KOeHHT7Phca4,6170
|
|
275
|
+
include/eigen3/Eigen/src/Core/AssignEvaluator.h,sha256=E5UBHDUEfSI5Oeas89CW6DrsdhKG6aEJZ0pbdeBtZaM,41673
|
|
276
|
+
include/eigen3/Eigen/src/Core/Replicate.h,sha256=b3eh2lzUvOvhy7kNUv1_wj0ZpG6LG48qgI7Q7L-b2-4,5656
|
|
277
|
+
include/eigen3/Eigen/src/Core/CoreIterators.h,sha256=MLxTh9kMqEHm7IVobSElMYoZ1P2qBah_rm_6sISPdJo,4745
|
|
278
|
+
include/eigen3/Eigen/src/Core/ArrayBase.h,sha256=h6XAellrUiXUmw2iWF2B0Ub38jt6DaeiDFHrW3Rq_F4,8217
|
|
279
|
+
include/eigen3/Eigen/src/Core/Block.h,sha256=EJKGf-xoAEOIsLo403rWA8x8tdA03Ci2_jqC6SrYiK0,18648
|
|
280
|
+
include/eigen3/Eigen/src/Core/Dot.h,sha256=SVnXKm92-UFx5WJF5zMtVVp3UdKdy-BLOq6iyEGODvU,11654
|
|
281
|
+
include/eigen3/Eigen/src/Core/PlainObjectBase.h,sha256=-qVMt5_XTbX9X7PG9g_CUjmOvDUp6WB8_eIjIkQWIzU,49193
|
|
282
|
+
include/eigen3/Eigen/src/Core/SelfAdjointView.h,sha256=awX8Mcrm-Ubbf89EOe-hPrIc2bGQOueRDMdKYRuV9o8,14999
|
|
283
|
+
include/eigen3/Eigen/src/Core/GeneralProduct.h,sha256=u3pQ7qYb-HzruMX_JVPjZB4ed9YvVhg44SZb9CrIg6A,21679
|
|
284
|
+
include/eigen3/Eigen/src/Core/SolveTriangular.h,sha256=8psntHTv5Wkru_Hxhj8N20zPA54-2gJ5b1TDOInchqE,9368
|
|
285
|
+
include/eigen3/Eigen/src/Core/CoreEvaluators.h,sha256=6J0oxusVbLZZ9YqGGX_eJArEyGEaPdKRHkGipw0CejM,63841
|
|
286
|
+
include/eigen3/Eigen/src/Core/CwiseNullaryOp.h,sha256=cPW5ApD9Ddx10LNh324u_0-7vZl_W4kyFArFgYAgJN8,36282
|
|
287
|
+
include/eigen3/Eigen/src/Core/VectorwiseOp.h,sha256=taEMnk7xoASOi9F-UUNUseFkex1wDVkHbB-jTs8EvD0,35168
|
|
288
|
+
include/eigen3/Eigen/src/Core/ArrayWrapper.h,sha256=i9CnjmTAjDy95K81Nv_m4GKhLOnHMhxDoUaXBKk3zOQ,7018
|
|
289
|
+
include/eigen3/Eigen/src/Core/BooleanRedux.h,sha256=Udvh6C02Obp9MLeU4KmYLPizv5iZVWiJcNS81yPHCqU,4429
|
|
290
|
+
include/eigen3/Eigen/src/Core/Transpositions.h,sha256=OQ83uchr7R8XCMX3eGtGCWZYIDcKQ3oiLaMgowx7mGc,13567
|
|
291
|
+
include/eigen3/Eigen/src/Core/NestByValue.h,sha256=XpO9qFQqjr-zIdyRmbEQpTri-48sIOELbyTkN5sKJ8s,2520
|
|
292
|
+
include/eigen3/Eigen/src/Core/Ref.h,sha256=9KCGVMNnveUblYknmVbCOht0eniluU60x-Q_Fq4mLrw,17821
|
|
293
|
+
include/eigen3/Eigen/src/Core/Reshaped.h,sha256=UQGxKCGDdGABPnCtstVC9eYjzdZUHTYEr2KNKnjefhQ,17033
|
|
294
|
+
include/eigen3/Eigen/src/Core/Transpose.h,sha256=qhBLL99zcYMdT87iOD3spTAMSYBbmaPIg-E_QLEiV1A,17606
|
|
295
|
+
include/eigen3/Eigen/src/Core/Redux.h,sha256=3Ntognx_kGOvdFyaDh6Fz1PApptn09SIATSi747R8_Y,19195
|
|
296
|
+
include/eigen3/Eigen/src/Core/NumTraits.h,sha256=YDlXi0wX8kTrbgsY8puAictK_71EMTZeT-iySCWRmfE,12884
|
|
297
|
+
include/eigen3/Eigen/src/Core/CommaInitializer.h,sha256=qAJ2QnYid9sBFKj070CQMDVIQSHVtO35pQ1cEOEaGyA,5981
|
|
298
|
+
include/eigen3/Eigen/src/Core/GlobalFunctions.h,sha256=NTFhnsI7k43_IwOaPw3Ykr5TP2PWgcfWWWZZ27CuMaI,11543
|
|
299
|
+
include/eigen3/Eigen/src/Core/Random.h,sha256=_JWxS-8mkmR8CJGyWQbKyYjpUZ5fcZ2w_Z5k4PrwpsI,7756
|
|
300
|
+
include/eigen3/Eigen/src/Core/Diagonal.h,sha256=DohU_IOblBq_OwllK1_sT6WnzTpErPy1J0p3c7abL_8,9870
|
|
301
|
+
include/eigen3/Eigen/src/Core/DenseBase.h,sha256=ho6oVZqhHldM5zShTqVvXOUDJ0ay1z9MjHkw-JxZgic,31529
|
|
302
|
+
include/eigen3/Eigen/src/Core/CwiseTernaryOp.h,sha256=l9ngPHPhoQE1LYsA7hkQE7a2rPAOkMiH3VS-pFUd574,8256
|
|
303
|
+
include/eigen3/Eigen/src/Core/Select.h,sha256=C5vueNWTUBIRCHeLutIDpGPYHHG_tc1zK4WcAmBaHrU,6143
|
|
304
|
+
include/eigen3/Eigen/src/Core/products/SelfadjointRank2Update.h,sha256=GjBksbLTUh8dSwIroBAzFAZd3pNmaGzgwq9y_AezhAY,4126
|
|
305
|
+
include/eigen3/Eigen/src/Core/products/GeneralBlockPanelKernel.h,sha256=sYJHOdyCm91ch9TiA1eUIw9eqOMAeXfjeDmeGVYrmPM,108448
|
|
306
|
+
include/eigen3/Eigen/src/Core/products/GeneralMatrixMatrixTriangular_BLAS.h,sha256=lz3gcCibomI0C11GP9WWJfLxJWkfozIuaeKPWNp8KoQ,6936
|
|
307
|
+
include/eigen3/Eigen/src/Core/products/GeneralMatrixMatrix_BLAS.h,sha256=ec1yDwUGvK3GAOot40BaRFdTbko1vrQHgWH3X3YTT2c,5106
|
|
308
|
+
include/eigen3/Eigen/src/Core/products/GeneralMatrixVector_BLAS.h,sha256=mZtYGatUC0-bugfLV3Y81DPJy8H-pm4F2hKqQQZOdpM,6368
|
|
309
|
+
include/eigen3/Eigen/src/Core/products/GeneralMatrixMatrix.h,sha256=33qhvQHkXEfnHqOM5XnYH1t5qlXe1A8haFgClGVk7CA,20104
|
|
310
|
+
include/eigen3/Eigen/src/Core/products/Parallelizer.h,sha256=LFS04pfAyxh-5HrsMZ7q00Om_P2z9BTUJ1i_1o_0k40,5582
|
|
311
|
+
include/eigen3/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h,sha256=tBWrOcXAPqby8_dJumI0JLnx4PfqHn33HhYPLuOReW4,15948
|
|
312
|
+
include/eigen3/Eigen/src/Core/products/TriangularMatrixVector.h,sha256=pFx7Lk-jLFI3L51jXGWZoYRPkFPt2RCHdOZJcrC9yP4,14722
|
|
313
|
+
include/eigen3/Eigen/src/Core/products/SelfadjointMatrixVector.h,sha256=X9VMtikMlDeHUmXltnN5f0zbbkXHkf4CR7QeCY4zEFU,9958
|
|
314
|
+
include/eigen3/Eigen/src/Core/products/TriangularSolverMatrix.h,sha256=e755tKu-x4ef6xyEwr-SuOUDm6p6e8_u6d7LOr9URVA,14678
|
|
315
|
+
include/eigen3/Eigen/src/Core/products/GeneralMatrixVector.h,sha256=6ghVCEVie_PXwK0w7XBh1euVkLH7VI_T2P3pBnB7EfM,21724
|
|
316
|
+
include/eigen3/Eigen/src/Core/products/SelfadjointProduct.h,sha256=DkewFi5s_R2NwxTXy8EFUpk2sDqAL1RsEibRG2o42-Y,6164
|
|
317
|
+
include/eigen3/Eigen/src/Core/products/TriangularMatrixVector_BLAS.h,sha256=SsT_NUCdiHXlevXOyArnxTe2QDTicg1AH766Tscmh0k,10571
|
|
318
|
+
include/eigen3/Eigen/src/Core/products/TriangularMatrixMatrix_BLAS.h,sha256=sJu-wvyIjUQml9JtYlcfGpkbShLzR3SJMPNZLVN8Odo,13867
|
|
319
|
+
include/eigen3/Eigen/src/Core/products/SelfadjointMatrixVector_BLAS.h,sha256=EKrXRBTWeuks1FjFJn-ExEHdLD3oJs1PkzOqBCzHaxw,5209
|
|
320
|
+
include/eigen3/Eigen/src/Core/products/TriangularSolverMatrix_BLAS.h,sha256=2cKW56cfUCooBLv4pwS09ehmtZeNb5QWhcNUi6XmqEI,6707
|
|
321
|
+
include/eigen3/Eigen/src/Core/products/SelfadjointMatrixMatrix_BLAS.h,sha256=dO0QzTSlEY0DALfJHNCLv-VqyWWdGKOD640qrzoHDOw,11570
|
|
322
|
+
include/eigen3/Eigen/src/Core/products/TriangularSolverVector.h,sha256=X-vXZ8N5pXDF-RiweJD3XIe_muTWsPVlRW8nWzCNEL4,5882
|
|
323
|
+
include/eigen3/Eigen/src/Core/products/TriangularMatrixMatrix.h,sha256=inJs7op1I5ker51aTO8raRwxg5TWT0svVeE1iKWZ7RY,20987
|
|
324
|
+
include/eigen3/Eigen/src/Core/products/SelfadjointMatrixMatrix.h,sha256=4gQBLDrdPARSB7Xk5-7qX4O_PanQxvfih6zqHFiksi0,21354
|
|
325
|
+
include/eigen3/Eigen/src/Core/util/NonMPL2.h,sha256=RekKBVaidiOpEb9sm8gcs9_LyeyC3OKOSvf4JV6l2tc,85
|
|
326
|
+
include/eigen3/Eigen/src/Core/util/ReshapedHelper.h,sha256=IiSNYQUioI1RXHJZb45ppb0PaTBUWphGxXXaVRGbNRI,1432
|
|
327
|
+
include/eigen3/Eigen/src/Core/util/BlasUtil.h,sha256=R4hliGvYhqOw9uIh_5uBG-N0InTR-iYMf71SWivFVxY,23156
|
|
328
|
+
include/eigen3/Eigen/src/Core/util/StaticAssert.h,sha256=FuzHTQMY4HyEd5nmdXqLTd13adbwcHehgKfe8-620b0,10676
|
|
329
|
+
include/eigen3/Eigen/src/Core/util/Constants.h,sha256=ttU2oem4zBxoX3xs95Tr5wpnIJk3D-V-R19soXOSNqA,21931
|
|
330
|
+
include/eigen3/Eigen/src/Core/util/XprHelper.h,sha256=91FpxKLKPlGo5qxCP_NK2Ce_cyZMy736OxGtGfjvEN4,35762
|
|
331
|
+
include/eigen3/Eigen/src/Core/util/MKL_support.h,sha256=SH8MIg1AuEGIdrXH2QMtNZc3TN_3kNQCLo9O6pMs9iA,4268
|
|
332
|
+
include/eigen3/Eigen/src/Core/util/Macros.h,sha256=jXMlm0ukgubb0Rsx2Ih_01DfsINnANMnk0Rrumqxrno,52909
|
|
333
|
+
include/eigen3/Eigen/src/Core/util/DisableStupidWarnings.h,sha256=Ytqy175AkKqgXj0sZYGySbc2Vya7dQbNyRBVL8g4bFU,4892
|
|
334
|
+
include/eigen3/Eigen/src/Core/util/SymbolicIndex.h,sha256=2x8GtyOpQZncKMYU5NkdJatRYS08G9cFYnN2_x0Mnv4,12003
|
|
335
|
+
include/eigen3/Eigen/src/Core/util/ForwardDeclarations.h,sha256=ZhdE6dxa1vvWMloGjxiNVqfUxTouV3vfAtIDLoP5NUE,15555
|
|
336
|
+
include/eigen3/Eigen/src/Core/util/Memory.h,sha256=4lVlqmrj5hLCa5LP5zGl35DX7fpme-W5h8KAHHCyyVw,46661
|
|
337
|
+
include/eigen3/Eigen/src/Core/util/Meta.h,sha256=TuaFXI83ZpuMhkgzQsVvmtBvLfxpq_5GkSmKjSqUQgI,29336
|
|
338
|
+
include/eigen3/Eigen/src/Core/util/ConfigureVectorization.h,sha256=Puw_386FDIesp7rEXOK_GJiASoReKalUjD6Y5Mgq01o,19876
|
|
339
|
+
include/eigen3/Eigen/src/Core/util/IntegralConstant.h,sha256=MsGgGP33vR824xB3MDJWbzUa_ztaANXyOeJNDCgJ7mk,10949
|
|
340
|
+
include/eigen3/Eigen/src/Core/util/ReenableStupidWarnings.h,sha256=4CANL3bylEgx4MEpc_qnL6uwRFu6_WXHrlFquM1nreU,1024
|
|
341
|
+
include/eigen3/Eigen/src/Core/util/IndexedViewHelper.h,sha256=6I-WuqgpdRGkOQAtI7CuMARenFQ4pLmzaA5BgtbittU,6696
|
|
342
|
+
include/eigen3/Eigen/src/Core/functors/UnaryFunctors.h,sha256=kFshHJT8zGBHriYmc8ZEq4KcgnXpi29LiXjHPLNJRio,40146
|
|
343
|
+
include/eigen3/Eigen/src/Core/functors/TernaryFunctors.h,sha256=D8PBqipa0vHKnNvPN6YzcSzARSsQftY_akzxDWcREWg,607
|
|
344
|
+
include/eigen3/Eigen/src/Core/functors/AssignmentFunctors.h,sha256=2PGxIkRB-s5e_kJx1zVGg-wWtcvo7InnxyjBP_hb8WA,6686
|
|
345
|
+
include/eigen3/Eigen/src/Core/functors/BinaryFunctors.h,sha256=CwfNbUDL-WVhgk64Cq5a9xnc_hxNNJsBEQCs21eCGZc,20921
|
|
346
|
+
include/eigen3/Eigen/src/Core/functors/StlFunctors.h,sha256=cYI-b8vomEe7fK7xnoN7Hu0cMkQs340QQQOIjE_-S7A,4998
|
|
347
|
+
include/eigen3/Eigen/src/Core/functors/NullaryFunctors.h,sha256=GQpjDoSCvAuUODxnubXXpB88JssQiU1UWXz949c7pws,8334
|
|
348
|
+
include/eigen3/Eigen/src/Core/arch/SSE/PacketMath.h,sha256=peCG6Wv3h2vZ2gxDEX9IJDXQTNy8TPnBBMFyRCmAQTA,64465
|
|
349
|
+
include/eigen3/Eigen/src/Core/arch/SSE/MathFunctions.h,sha256=cAcwShFbn0K0g-TiyoNqDsV41oqJo_kMBI3evwdGc-U,6765
|
|
350
|
+
include/eigen3/Eigen/src/Core/arch/SSE/TypeCasting.h,sha256=Uq2Z3RJeG1t7ZICopSGTROezDe9xwI_nTRQwSFaELmA,3650
|
|
351
|
+
include/eigen3/Eigen/src/Core/arch/SSE/Complex.h,sha256=h6bwXhEi-IZVCphcy3kVC-CZmTUtfLzoa77tZIohV6k,14251
|
|
352
|
+
include/eigen3/Eigen/src/Core/arch/GPU/PacketMath.h,sha256=2KKjUpwiDgzbxMXoRwB7Fg5Bs98NsGn9RWqgvd0LoD0,57047
|
|
353
|
+
include/eigen3/Eigen/src/Core/arch/GPU/MathFunctions.h,sha256=WNBXkzPWzZx-a9VYKr_u3A2mS80eARwiY8LdflRmT1c,2695
|
|
354
|
+
include/eigen3/Eigen/src/Core/arch/GPU/TypeCasting.h,sha256=HR1OOHLb9NmrIsW2dkRBgmWgpkHibWw0DUgJyqO8Lpg,2256
|
|
355
|
+
include/eigen3/Eigen/src/Core/arch/MSA/PacketMath.h,sha256=PaxsMC3KR2tfvd6eWHG3-vSEc_100mAsB-dIOiy4ZM4,33615
|
|
356
|
+
include/eigen3/Eigen/src/Core/arch/MSA/MathFunctions.h,sha256=8WDhQFA0s_u9LNZOh6J8DQ-vkAchObk3v263HzaYPyg,16159
|
|
357
|
+
include/eigen3/Eigen/src/Core/arch/MSA/Complex.h,sha256=mD175hijPLKuPWMgJG8Tn1c5uyUzdRLMJSzeY2SHkWQ,17541
|
|
358
|
+
include/eigen3/Eigen/src/Core/arch/CUDA/Complex.h,sha256=of74nv05x33Y09JHA06CnpMGnhKM--ya7wKOi5XHhu0,17317
|
|
359
|
+
include/eigen3/Eigen/src/Core/arch/ZVector/PacketMath.h,sha256=F01Hv3MIEyKand_VxS4kvVHMgyBC4YoaepnphPKiIXY,36894
|
|
360
|
+
include/eigen3/Eigen/src/Core/arch/ZVector/MathFunctions.h,sha256=AL5v8pbey2Oeuyd75kVVmD6O2q98waSnkKYnszN19Es,8024
|
|
361
|
+
include/eigen3/Eigen/src/Core/arch/ZVector/Complex.h,sha256=5kgD19Zhq9EwxI7PhkRBwLnA1cXD4uioUIo7h_DbLF8,16728
|
|
362
|
+
include/eigen3/Eigen/src/Core/arch/Default/Half.h,sha256=vN9CBcF-3crLwXXBpdGI2ys2yeUCmzgpB20F39pAb00,35534
|
|
363
|
+
include/eigen3/Eigen/src/Core/arch/Default/Settings.h,sha256=Qbh6le3EAOdUX3JzxZdCq8ld765sp82F-WLVGnqPt5A,1746
|
|
364
|
+
include/eigen3/Eigen/src/Core/arch/Default/TypeCasting.h,sha256=Tv47egCZ2kG0IEAACpxLkr1I77NblQXEU7Xz0wT7T3U,3746
|
|
365
|
+
include/eigen3/Eigen/src/Core/arch/Default/BFloat16.h,sha256=HD-vLoEqRj0L4cfaszaO3mr-hNNPBCwAe8Xa03Xpa9k,26903
|
|
366
|
+
include/eigen3/Eigen/src/Core/arch/Default/GenericPacketMathFunctionsFwd.h,sha256=a9Lk1ShhdtC4I3COGmmc9GlMt06_VPLdtngnDbXEZxc,3770
|
|
367
|
+
include/eigen3/Eigen/src/Core/arch/Default/GenericPacketMathFunctions.h,sha256=4-8jZykCpqD-85ybbFlSup7WnmoOsy8OzBMAT8ZgBS0,67696
|
|
368
|
+
include/eigen3/Eigen/src/Core/arch/Default/ConjHelper.h,sha256=-tVUil_T8-S8sW_ihUnuc8Ht5fnin2yQIr1NitPqpSA,5251
|
|
369
|
+
include/eigen3/Eigen/src/Core/arch/AVX512/PacketMath.h,sha256=OUFH_dw0sH2Keii8gKXt0fpe8_ZRAbU1bOFo0H9xwx8,87891
|
|
370
|
+
include/eigen3/Eigen/src/Core/arch/AVX512/MathFunctions.h,sha256=05V1fuacBbf_IQEpvX9UIHv4q2RJCaKC9RhMjDVuMkc,13344
|
|
371
|
+
include/eigen3/Eigen/src/Core/arch/AVX512/TypeCasting.h,sha256=dSDpOtpAFcs4vLQTWSNai66TbSU53_hs1K-naDF1Gjs,2134
|
|
372
|
+
include/eigen3/Eigen/src/Core/arch/AVX512/Complex.h,sha256=ugr3JzEmI5-3tHJRvigqfAue6meW37D3xBG-XzsJI8Q,17160
|
|
373
|
+
include/eigen3/Eigen/src/Core/arch/SVE/PacketMath.h,sha256=ExnP6wxeTf-muQEl0kGqp9aFrG6ZB1WERaEkRJxX6v8,21200
|
|
374
|
+
include/eigen3/Eigen/src/Core/arch/SVE/MathFunctions.h,sha256=ArIHSTscu776ZEoith1MvV16BxFAhvV3iLYdC4zYHjI,1194
|
|
375
|
+
include/eigen3/Eigen/src/Core/arch/SVE/TypeCasting.h,sha256=euzd4LBaPcZvuqE4w2WMiFyysQSYE_No9MdqGfO7vjQ,1351
|
|
376
|
+
include/eigen3/Eigen/src/Core/arch/HIP/hcc/math_constants.h,sha256=TYakFU7yBjjXKrL1hexh9sCIGQjZhqK0_7RO-pf5ckY,691
|
|
377
|
+
include/eigen3/Eigen/src/Core/arch/AVX/PacketMath.h,sha256=I0SozIfkw1iRU0p6x93nPgEpNeDNZWmbGO53u-aX_kA,64608
|
|
378
|
+
include/eigen3/Eigen/src/Core/arch/AVX/MathFunctions.h,sha256=c4oN-JVUz9ohpSw7pG5Hvf-eNRmceI3Y3U2bo8FZgQU,8102
|
|
379
|
+
include/eigen3/Eigen/src/Core/arch/AVX/TypeCasting.h,sha256=LKu4896ma5FgFwWLY-VC0hih7Y9Z7Dlv8hrjV0tZcmw,2564
|
|
380
|
+
include/eigen3/Eigen/src/Core/arch/AVX/Complex.h,sha256=TReBJLZKy19ZFalvKel_Lr49xEIICFGZvQksN8hBbxA,15223
|
|
381
|
+
include/eigen3/Eigen/src/Core/arch/SYCL/PacketMath.h,sha256=dZkkF8ku0zF__pcYkyFNCekEhg3xBi9NDPTmUDiwpLU,27786
|
|
382
|
+
include/eigen3/Eigen/src/Core/arch/SYCL/MathFunctions.h,sha256=Szum19_ng_oX-Tt_oykOHuEHsUkF88gV5OE36aMupD8,12539
|
|
383
|
+
include/eigen3/Eigen/src/Core/arch/SYCL/SyclMemoryModel.h,sha256=IIOs2E1g5_iKaeuF-aC8ygJw6tb8KnDLzklMhkwGQ1k,21856
|
|
384
|
+
include/eigen3/Eigen/src/Core/arch/SYCL/InteropHeaders.h,sha256=2G5Noo9_d_MvJobezN9exX1zevfW_lo6lf63Y1j1OTQ,7428
|
|
385
|
+
include/eigen3/Eigen/src/Core/arch/SYCL/TypeCasting.h,sha256=B_oAog8UHkDn2lOO-DhVRoAaAWT2Wt5sBHWAIKC9_7o,2626
|
|
386
|
+
include/eigen3/Eigen/src/Core/arch/NEON/GeneralBlockPanelKernel.h,sha256=VNMQHhSfKRhI0RcKJhalOI8skbh4p08tMWPagiB-p6c,6815
|
|
387
|
+
include/eigen3/Eigen/src/Core/arch/NEON/PacketMath.h,sha256=PhMYCg3QG5ppvRfxeqhpw4xFFd8cyDBDuI9D2aExt18,189525
|
|
388
|
+
include/eigen3/Eigen/src/Core/arch/NEON/MathFunctions.h,sha256=jNj21p4bjGDqqIwPlR6rYZuOzpAzk9f5DXJqpIfagW4,3083
|
|
389
|
+
include/eigen3/Eigen/src/Core/arch/NEON/TypeCasting.h,sha256=c2yYt3iTKrpZFLQY_YEKE1V6LreGtdEec2goqfPucIE,51286
|
|
390
|
+
include/eigen3/Eigen/src/Core/arch/NEON/Complex.h,sha256=yyJ41YOVRLrIqws49Ddbi63_scdGqNavmXZv52Sv7fY,22503
|
|
391
|
+
include/eigen3/Eigen/src/Core/arch/AltiVec/PacketMath.h,sha256=oPYdaGjd2Dt3f1b3YAbzU5W73cgIz7_aDhzQ5-IeSi8,102394
|
|
392
|
+
include/eigen3/Eigen/src/Core/arch/AltiVec/MathFunctions.h,sha256=GkyOC20PLKzbUW2SJhPzqSvHf41jfZjcomaAZs4N10s,2323
|
|
393
|
+
include/eigen3/Eigen/src/Core/arch/AltiVec/MatrixProduct.h,sha256=qH4IawNh5kCC5e2EeYvbh8l1BfYlySMO4rDAqWtOqsY,119355
|
|
394
|
+
include/eigen3/Eigen/src/Core/arch/AltiVec/MatrixProductMMA.h,sha256=MRJTWUfUBVYsDs189H1oIBeoYwbK90anZxJ1w_Zqk9E,24820
|
|
395
|
+
include/eigen3/Eigen/src/Core/arch/AltiVec/MatrixProductCommon.h,sha256=BOcTnv97OFhluX8S-H-c40gQEoupm9BqXPOq_PoJ-04,9490
|
|
396
|
+
include/eigen3/Eigen/src/Core/arch/AltiVec/Complex.h,sha256=CUSoZRzKfCXxeQfELlIb5y879_nskuYPPpAa34ADUeE,16540
|
|
397
|
+
include/eigen3/Eigen/src/SparseLU/SparseLU_Utils.h,sha256=VfbLFtU8hQaZl3sijSs0KKJ1Ok4eH0kZwfSlAD1CchA,2049
|
|
398
|
+
include/eigen3/Eigen/src/SparseLU/SparseLU_kernel_bmod.h,sha256=wsTY9YnpE064Zp-tp79vhsn31leV4rkHmVVkjQaVWCU,5723
|
|
399
|
+
include/eigen3/Eigen/src/SparseLU/SparseLU_column_bmod.h,sha256=UEFzzPnZoMvp_q7hyaNJaMQaivnuKGgfU8OMcLkY9Eo,6712
|
|
400
|
+
include/eigen3/Eigen/src/SparseLU/SparseLU_gemm_kernel.h,sha256=E0ypMty0CtJ9jyiQAlbsBrUdgU3t1IHhLXoq_29kP6I,10217
|
|
401
|
+
include/eigen3/Eigen/src/SparseLU/SparseLU.h,sha256=0jr8FVLqbXlYeSoQFJCA8z9Wp1gUZj-rM_8Zz7Dd4FM,33316
|
|
402
|
+
include/eigen3/Eigen/src/SparseLU/SparseLU_column_dfs.h,sha256=_1ukmKpCiPxqLHP_sW7wwJF0f58LNzJmb12dl1duO3c,6584
|
|
403
|
+
include/eigen3/Eigen/src/SparseLU/SparseLU_panel_dfs.h,sha256=HHxwbCV4bDeDVwo6Pl77jhTnCVAinCQ10m2ozi0_xDw,9028
|
|
404
|
+
include/eigen3/Eigen/src/SparseLU/SparseLU_relax_snode.h,sha256=xmWkJ3HrCeYx_o2b7V1NtTwoskgt84Fzmg5OHO4ZJNY,2889
|
|
405
|
+
include/eigen3/Eigen/src/SparseLU/SparseLU_heap_relax_snode.h,sha256=6H52qNW19OTAgaGACscVS30r9ZZjktHYzS4aEIxFPLk,4181
|
|
406
|
+
include/eigen3/Eigen/src/SparseLU/SparseLU_panel_bmod.h,sha256=E0ZMPmU59QNrxZLBFDQafZpbW30yduzwYIJux419A10,8485
|
|
407
|
+
include/eigen3/Eigen/src/SparseLU/SparseLU_Structs.h,sha256=iiBKapQJWGE1_1IYQg3G4Tifza4c_gcnUP1EeKg5RhQ,4974
|
|
408
|
+
include/eigen3/Eigen/src/SparseLU/SparseLU_pruneL.h,sha256=xbkTSkO6Y2EGGHWy8zHDVbEgOUJjm_bQLbHV7OOhWbw,4545
|
|
409
|
+
include/eigen3/Eigen/src/SparseLU/SparseLU_copy_to_ucol.h,sha256=xuejAH5T973lZoxXrfTfZMrp5d_GWWOEUzeSsqRaFjk,3681
|
|
410
|
+
include/eigen3/Eigen/src/SparseLU/SparseLU_Memory.h,sha256=0RtpqZwv2VeoYnL1E_2W55Zf-Q8GJBfCGWKnJVSMNKo,7602
|
|
411
|
+
include/eigen3/Eigen/src/SparseLU/SparseLU_pivotL.h,sha256=WtGmsoGD9gUhPImH2f4V3RfVeHbbyVghDsPtAhMwbFs,4979
|
|
412
|
+
include/eigen3/Eigen/src/SparseLU/SparseLUImpl.h,sha256=xqFVMyyht4lOAPP36lz-OLTKDLLV4_abAlxAE358DkA,4303
|
|
413
|
+
include/eigen3/Eigen/src/SparseLU/SparseLU_SupernodalMatrix.h,sha256=XEsGCbVbRuN7n3frLwrGupWG9vKhkYHBzFVmbY6Vflo,12837
|
|
414
|
+
include/eigen3/Eigen/src/OrderingMethods/Ordering.h,sha256=zQaPZlp5hpbFNKmxRQx42zI6Y3E9uTa7ddt5tP_1LJM,5248
|
|
415
|
+
include/eigen3/Eigen/src/OrderingMethods/Eigen_Colamd.h,sha256=aGVdr2uuSAuOnywk06Ox5iRwLxWsHoxIHuOpuiYJgOs,61681
|
|
416
|
+
include/eigen3/Eigen/src/OrderingMethods/Amd.h,sha256=c7g7u_79UNDMwQhqLLF-io6d843uZM7zEBkL-BrNMZw,16105
|
|
417
|
+
include/eigen3/Eigen/src/plugins/ArrayCwiseUnaryOps.h,sha256=Lw8DNEdrrQmtr1uj64wlKMK2qzrkchCDLL0nY4hRP0w,21431
|
|
418
|
+
include/eigen3/Eigen/src/plugins/CommonCwiseUnaryOps.h,sha256=KounaHKSxrMBzP7sUcUSdSELN0QhjCSXsYZbU3DYMlY,6089
|
|
419
|
+
include/eigen3/Eigen/src/plugins/BlockMethods.h,sha256=VP5GDS9pFosNtDF1bpa0pUZ9uqpCas3CG4elB6fCaw8,59020
|
|
420
|
+
include/eigen3/Eigen/src/plugins/ArrayCwiseBinaryOps.h,sha256=3J685GySQ-w9ATdG_yU5K2_enofrPBBjhYzBaHXBnUk,14060
|
|
421
|
+
include/eigen3/Eigen/src/plugins/MatrixCwiseBinaryOps.h,sha256=kOqEkZJMkAgDl_sePzPQ4ahC9aO4C5n8UqIGUZWMaYI,6387
|
|
422
|
+
include/eigen3/Eigen/src/plugins/IndexedViewMethods.h,sha256=XpWD8sYQXjvwE93Br-KgaFtKugYO9hEERuk3l1QEZUg,12283
|
|
423
|
+
include/eigen3/Eigen/src/plugins/CommonCwiseBinaryOps.h,sha256=H4qb7Ef81ff1KdWVbhXaLQ0yURh5vfYT05-yL7ybRJg,4828
|
|
424
|
+
include/eigen3/Eigen/src/plugins/ReshapedMethods.h,sha256=OYyO_yoZ3TL7X8GFrIW-IKzqs_1LbM0M96HJyZAVOi8,6915
|
|
425
|
+
include/eigen3/Eigen/src/plugins/MatrixCwiseUnaryOps.h,sha256=hBC2LK2aHti-DqelsfGCGw5zMMxqaFjIyd_DJ-Sd17M,3350
|
|
426
|
+
include/eigen3/Eigen/src/Householder/HouseholderSequence.h,sha256=qJx7vJqOfwuk2bOCwT_qSA4uQRA5uDK07lhMOmJNTOg,23611
|
|
427
|
+
include/eigen3/Eigen/src/Householder/Householder.h,sha256=Sm81woK9lvrX8YcXqLStZqdoHyWUxO9VlLOzE2iOiy0,5365
|
|
428
|
+
include/eigen3/Eigen/src/Householder/BlockHouseholder.h,sha256=gT-lKuZc5n9FylQ3dARF5S0a7M4J93mT7oRzI87Koa4,4784
|
|
429
|
+
include/eigen3/Eigen/src/PardisoSupport/PardisoSupport.h,sha256=wsVkKSSLM_PyT6okkE-68CY-i9uw5JQK-J_49b53K0w,20092
|
|
430
|
+
include/eigen3/Eigen/src/SparseCore/SparseSelfAdjointView.h,sha256=pKMa9HSZVf4TDrSs3WQPHm81-yvYWN_X3QbDGXZhChs,25889
|
|
431
|
+
include/eigen3/Eigen/src/SparseCore/SparseMatrix.h,sha256=Uahcnyjjk9enq1aUvlnqI1d5zBeHSv8rHDjVr8BKufs,57475
|
|
432
|
+
include/eigen3/Eigen/src/SparseCore/CompressedStorage.h,sha256=KbsmaOECLX-_dCrw4l5OH8qSYthcNl51lHEUrOAElfU,8743
|
|
433
|
+
include/eigen3/Eigen/src/SparseCore/SparseCwiseBinaryOp.h,sha256=UM8IsTqnqOIVvcVPNMI74lkGu0TC7c1-3OHD4E00U7U,25524
|
|
434
|
+
include/eigen3/Eigen/src/SparseCore/SparseView.h,sha256=tt7YUvbYq4FC7o8OjMRAE5ENMAyDgBjJQw23fkFxKYI,8127
|
|
435
|
+
include/eigen3/Eigen/src/SparseCore/SparseColEtree.h,sha256=hxvhX86IU5AEN0Re5JE7ugycPWrwjmMT8965y5Fuk0Q,6485
|
|
436
|
+
include/eigen3/Eigen/src/SparseCore/SparseMatrixBase.h,sha256=vKuTKTtOY6UAAogaE7yVSPElvanBCqJB4og5B7kI21g,17451
|
|
437
|
+
include/eigen3/Eigen/src/SparseCore/SparseDiagonalProduct.h,sha256=ql1gDrRmdDxurRXKYKt3558VV56rwkkg39q1rmNjUZ8,5808
|
|
438
|
+
include/eigen3/Eigen/src/SparseCore/SparseTriangularView.h,sha256=wLzim0CxFIHthPPnf-BETneIxDpr5os7WMmm22Ihps8,6437
|
|
439
|
+
include/eigen3/Eigen/src/SparseCore/SparseAssign.h,sha256=V9_BJwEgsy433vZPaZkNcz7VHaUtxFty8DrG2y7Bby0,11368
|
|
440
|
+
include/eigen3/Eigen/src/SparseCore/SparsePermutation.h,sha256=MOCjCgQY25pYtPMQhvGvkRk8koWuGO8dk0QRMqStiM8,7329
|
|
441
|
+
include/eigen3/Eigen/src/SparseCore/SparseCwiseUnaryOp.h,sha256=Gt77DWmbFD21-2tgm3UCHDFB3vFqg07ZzPOmK1sYdU8,4757
|
|
442
|
+
include/eigen3/Eigen/src/SparseCore/SparseMap.h,sha256=LENinGDgzP-0fSLxe9IC2QmTGpvw6-WmYZouy98GH6A,12589
|
|
443
|
+
include/eigen3/Eigen/src/SparseCore/SparseDenseProduct.h,sha256=S-SIciqeQ8Cq0eRnjdwO0W-nJTdWrJ9cDSyUpTKDnwQ,13256
|
|
444
|
+
include/eigen3/Eigen/src/SparseCore/SparseRef.h,sha256=KpWEyz-BSDQr2jkFY41qpl81k1xobd09MroJeAet90A,15600
|
|
445
|
+
include/eigen3/Eigen/src/SparseCore/SparseFuzzy.h,sha256=-HvMRkGwLuoeAVRUzaTxJOZerK1LKoF7zIhUntzpE3A,1107
|
|
446
|
+
include/eigen3/Eigen/src/SparseCore/MappedSparseMatrix.h,sha256=LqSrqm_EN6KXQXTFIExr2w5AzGtZ39M70CDZwt1mDto,2191
|
|
447
|
+
include/eigen3/Eigen/src/SparseCore/SparseSparseProductWithPruning.h,sha256=oJ95Mr8PoxBlVcuyIk83xAnA9B8BTF8SLFFr8JLzMcg,8704
|
|
448
|
+
include/eigen3/Eigen/src/SparseCore/SparseSolverBase.h,sha256=_FJeIwvbZvS6TXnQI4bqcW07AeultzRTOhcfBDogpHk,4424
|
|
449
|
+
include/eigen3/Eigen/src/SparseCore/SparseBlock.h,sha256=B_Rou_EU1DXsnaBNbKC5QPH9fWO2JUjH-dgTBVC0JFE,24360
|
|
450
|
+
include/eigen3/Eigen/src/SparseCore/TriangularSolver.h,sha256=6crxaL_epxj6kAKDRIOV3leRsjdoPfEMrwtFPPTtMU8,9657
|
|
451
|
+
include/eigen3/Eigen/src/SparseCore/SparseVector.h,sha256=FXR2BBlYjN74_Y7HGt_xK14qGY93lmZOLi7FEZNW4h8,14832
|
|
452
|
+
include/eigen3/Eigen/src/SparseCore/SparseCompressedBase.h,sha256=i_QDAUmYXh_o_or8Ooc6-OHwzl88PFIjK1gK1uTxENc,13606
|
|
453
|
+
include/eigen3/Eigen/src/SparseCore/SparseTranspose.h,sha256=vzGAkYMV3rfcQz-g1POI16Qgn6QweDzJ2ANzq4i_1y4,3175
|
|
454
|
+
include/eigen3/Eigen/src/SparseCore/SparseProduct.h,sha256=XL278sDrscm5H1ClbMyWtp9zMF-KoM-vecd-fXEmZZ0,7593
|
|
455
|
+
include/eigen3/Eigen/src/SparseCore/AmbiVector.h,sha256=5rbOU6LmuocubflDlpHJW-LV8RbLVt52PxlNwAD-24Q,10670
|
|
456
|
+
include/eigen3/Eigen/src/SparseCore/SparseRedux.h,sha256=8-aCkMrV-7ug7PgoT6I4pSByEI4zaMBjL4yQgWtB3JE,1699
|
|
457
|
+
include/eigen3/Eigen/src/SparseCore/ConservativeSparseSparseProduct.h,sha256=NSTC00y1pePE2y11NaWiKkV-cZ7iQDu4D0uQdlX1aI4,13166
|
|
458
|
+
include/eigen3/Eigen/src/SparseCore/SparseUtil.h,sha256=QbJdHLBXVilPHMYRlJUpu242IYXCyljuRWU6Gg0CHyE,6827
|
|
459
|
+
include/eigen3/Eigen/src/SparseCore/SparseDot.h,sha256=qNMFtSwdxuZrJALftuwc1Uln8dXPHn7O-B6HYnfXh2c,3080
|
|
460
|
+
include/eigen3/Eigen/src/Jacobi/Jacobi.h,sha256=eqr6CeolwC9s94yeCFlGF_MdSvztGqDr8OLnT6XDp08,16383
|
|
461
|
+
include/eigen3/Eigen/src/SPQRSupport/SuiteSparseQRSupport.h,sha256=aBRbczGluCFCW0z6zj-VPv3fPnseGS5Y_LWtCTPvugE,11826
|
|
462
|
+
include/eigen3/Eigen/src/QR/FullPivHouseholderQR.h,sha256=0mO6wR2Oz4LkO-63diixti5mRpEwlK1j6JQpXTjknh4,26768
|
|
463
|
+
include/eigen3/Eigen/src/QR/HouseholderQR.h,sha256=buDUUKKkR7GtuG59nGmnZOHPuPOfnWqZ-omhYq7e7t8,14641
|
|
464
|
+
include/eigen3/Eigen/src/QR/CompleteOrthogonalDecomposition.h,sha256=K80XQdqtt7GtaO6trSe9d-6SvwF_dmYkTK-aip00P9Y,23429
|
|
465
|
+
include/eigen3/Eigen/src/QR/ColPivHouseholderQR_LAPACKE.h,sha256=Pg4g_uASg01GUvKv85HZ10mcLIb2TsBAe8TxUIUzMbs,4662
|
|
466
|
+
include/eigen3/Eigen/src/QR/ColPivHouseholderQR.h,sha256=GRplSpNfH9u1hGj-UO_0ASrJsqUw1X873zHylf98Msg,25498
|
|
467
|
+
include/eigen3/Eigen/src/QR/HouseholderQR_LAPACKE.h,sha256=ioSGFFyQnCEIqvG71bRI-RwLslUwcNpeThs4Zht2qoc,2993
|
|
468
|
+
include/eigen3/Eigen/src/SparseQR/SparseQR.h,sha256=b7kIX0lfsWOEXscFjviaUOKMkieFnGnPdkHNOIC07ms,29167
|
|
469
|
+
include/eigen3/Eigen/src/SVD/JacobiSVD_LAPACKE.h,sha256=ka623NBfDraF1xca6Y-VNZlJPWUcPuw7DI35DlnSLpo,5099
|
|
470
|
+
include/eigen3/Eigen/src/SVD/SVDBase.h,sha256=7BZYx_gFqsiiYhobHmP6hKj-0hx_JOF27IYqlFViMAo,14743
|
|
471
|
+
include/eigen3/Eigen/src/SVD/JacobiSVD.h,sha256=hAnEE_IZPVHqlmnC8LfSgDGdqVJlo1wyP6vGX4pAcQg,32988
|
|
472
|
+
include/eigen3/Eigen/src/SVD/BDCSVD.h,sha256=_W5LHUpTg7pE48jCCqoZf6JbGTuUBQ76x4EEknP9Er8,54214
|
|
473
|
+
include/eigen3/Eigen/src/SVD/UpperBidiagonalization.h,sha256=6IpmJCGMm2kzzhJeLAPQNt-cSmdDm-UceOm5QNDSH18,15957
|
|
474
|
+
include/eigen3/Eigen/src/Cholesky/LLT_LAPACKE.h,sha256=Hvw3IINOyWug30oGIqogw6gK5I2Q1gz6rV4L-cHPoEs,3974
|
|
475
|
+
include/eigen3/Eigen/src/Cholesky/LDLT.h,sha256=zGNi3c3eoUA-qewcvqLKbq8cWHRjDxsTCE9Rx48znXg,24934
|
|
476
|
+
include/eigen3/Eigen/src/Cholesky/LLT.h,sha256=Ni_msIDJtn0REG-CH5JvqE7SSyEg-9uioJ77CGnu8ew,18760
|
|
477
|
+
include/eigen3/Eigen/src/UmfPackSupport/UmfPackSupport.h,sha256=to6gjstZ3u7FA3DBEekczSMwUP5inY9UoSRyeSP-6nY,24456
|
|
478
|
+
include/eigen3/Eigen/src/IterativeLinearSolvers/BasicPreconditioners.h,sha256=YMCQ6x4_-d79glE5ruPlzad6znhQFY02gqV0ymmGdsY,6771
|
|
479
|
+
include/eigen3/Eigen/src/IterativeLinearSolvers/IncompleteCholesky.h,sha256=l_qee65b_AyF54NQTEhqiQn4wpxF0EOgQfrjzKM-Z-o,15036
|
|
480
|
+
include/eigen3/Eigen/src/IterativeLinearSolvers/SolveWithGuess.h,sha256=skUBIA1GTm3pchMagwn-Q0vElsbBKyOXqVfZ6Ig9gp0,4212
|
|
481
|
+
include/eigen3/Eigen/src/IterativeLinearSolvers/IncompleteLUT.h,sha256=9N6ZL4g7dpQ1-C_AYBr2jV4R1nrToYgg1CJSstT8VIQ,14940
|
|
482
|
+
include/eigen3/Eigen/src/IterativeLinearSolvers/LeastSquareConjugateGradient.h,sha256=hxTZyH0vfNtGucFrc_JnlmaBnvnbYwpV6lnJVrQZDB8,7349
|
|
483
|
+
include/eigen3/Eigen/src/IterativeLinearSolvers/ConjugateGradient.h,sha256=bAe7AXzOohoeR4hASXMS6QKHt2GIAwvEXN1zwa32EdM,8887
|
|
484
|
+
include/eigen3/Eigen/src/IterativeLinearSolvers/BiCGSTAB.h,sha256=JAMwkJDDKrvMpaK4iCZQ3vhXaqbDleMsAafEft8Aay0,6850
|
|
485
|
+
include/eigen3/Eigen/src/IterativeLinearSolvers/IterativeSolverBase.h,sha256=RVUk3D9zTiShzR68o8N4qlsrbnu3xHAY-xCHP79Ixso,13379
|
|
486
|
+
include/eigen3/Eigen/src/LU/PartialPivLU_LAPACKE.h,sha256=405eiTTFwaWRyj6v0acEWJjEBKlbk-6zdEZqEnjERiU,3555
|
|
487
|
+
include/eigen3/Eigen/src/LU/InverseImpl.h,sha256=YcMuvxXWRaOKJJgf6YzAL6UanhW7sVAwgyyWOSahVeQ,15727
|
|
488
|
+
include/eigen3/Eigen/src/LU/Determinant.h,sha256=Ej8IFYHDjgeiBM8MsooiCpbZMFH8fADI0ZuaGG_C-yc,3439
|
|
489
|
+
include/eigen3/Eigen/src/LU/PartialPivLU.h,sha256=Lb6kmlOg7MA18WeAQAj0y0ZS5J-hiZ-kiIzX0fbApks,22069
|
|
490
|
+
include/eigen3/Eigen/src/LU/FullPivLU.h,sha256=cC7S7j5wQlYzGYKS6YnPMIVZ5k_aFyKE2vR1UZMSpHE,32383
|
|
491
|
+
include/eigen3/Eigen/src/LU/arch/InverseSize4.h,sha256=jEo1e85De1QKK5gpSB3wUciHnvmr4QgS4YThDNIgNQI,13693
|
|
492
|
+
include/eigen3/Eigen/src/Geometry/AngleAxis.h,sha256=hWEB6P7KkVOjUDyiPkdVZ7v1PofDUIQFQDVguHGydCU,8403
|
|
493
|
+
include/eigen3/Eigen/src/Geometry/RotationBase.h,sha256=EiowLy81k6w5UeRAjH0UBDYKAxuqA4Bhe6HdbdZFGMw,8063
|
|
494
|
+
include/eigen3/Eigen/src/Geometry/EulerAngles.h,sha256=MvmHhZbH0Nf9YzZG8B8YjXvHXQsWz3W8HY-bbCXoX6k,3624
|
|
495
|
+
include/eigen3/Eigen/src/Geometry/Hyperplane.h,sha256=L5qiKx7H8mhpvf3eXhPCpcudz_jw4XJ7nvaEty82qtc,11962
|
|
496
|
+
include/eigen3/Eigen/src/Geometry/Homogeneous.h,sha256=GubxVxEyxSFiZiGMTfln7dmXw3ayq55IrdJ5R-oxb98,20726
|
|
497
|
+
include/eigen3/Eigen/src/Geometry/AlignedBox.h,sha256=LJX63IVJ-iNtb4qjgCK635GG1jrtEqECu4Brzw9tUi4,18939
|
|
498
|
+
include/eigen3/Eigen/src/Geometry/Quaternion.h,sha256=jigf4p9JcYKOeQ8zRlP8qq_jSnhTsO7OQiSmOhzPH6g,34367
|
|
499
|
+
include/eigen3/Eigen/src/Geometry/Umeyama.h,sha256=8WBq8Bq-eOCwCPpCEJvCV4AdG9i--MYPuIQzekjltHA,6190
|
|
500
|
+
include/eigen3/Eigen/src/Geometry/Translation.h,sha256=MQelKqMEPMYDxBx_o_Bin1j4nlL5aQrunz3_TYrcRjk,7664
|
|
501
|
+
include/eigen3/Eigen/src/Geometry/Scaling.h,sha256=VP1L8yU9-kjXgRpJRDQ_Mobm4F6c47WBQu2qF75qbOw,6724
|
|
502
|
+
include/eigen3/Eigen/src/Geometry/OrthoMethods.h,sha256=PUA_fyzkfUoG16Tlvi82LCsO2Lx8LARN56CfsjGVbEQ,8955
|
|
503
|
+
include/eigen3/Eigen/src/Geometry/Rotation2D.h,sha256=ZJF39LieDyLVc82wCBjcv-89XUmjgiP8_FGtW4lhvOM,6862
|
|
504
|
+
include/eigen3/Eigen/src/Geometry/Transform.h,sha256=_LyXBb70PoLUGeas7TkZRADBH8gHKJp01ui7RmJmesM,61930
|
|
505
|
+
include/eigen3/Eigen/src/Geometry/ParametrizedLine.h,sha256=_XBm00cMu2GvSxc_Vq0Lw3CY6gPQPmLreuj3-ZhGkSE,9812
|
|
506
|
+
include/eigen3/Eigen/src/Geometry/arch/Geometry_SIMD.h,sha256=K0pUdNdQMSUnnx3iuujvVvmaxS3-zTIY__XXkCd3mno,5945
|
|
507
|
+
include/eigen3/Eigen/src/SuperLUSupport/SuperLUSupport.h,sha256=wmnrpnMFQ2KKgZJ2YZ0sGwtnORWfNB6zVx7yV_-mIzM,34324
|
|
508
|
+
include/eigen3/Eigen/src/MetisSupport/MetisSupport.h,sha256=x7X2CnuvlYp6C0a_SEUYueSdVryY74llxUM718ZPJk8,4588
|
|
509
|
+
include/eigen3/Eigen/src/StlSupport/StdList.h,sha256=_PoP9JjpMxFHyRt2ierD07kKYw5YCaQ-m2uff_9bv9A,4155
|
|
510
|
+
include/eigen3/Eigen/src/StlSupport/StdDeque.h,sha256=nwcLxBznnCK-XXIVzLj6m3TE9vNf6hCB5rEwVglEMtA,4730
|
|
511
|
+
include/eigen3/Eigen/src/StlSupport/details.h,sha256=N4XAZ1MVBkj5Wqqf0purzw8BN2oBMqkenPyCC7ZUF4E,2809
|
|
512
|
+
include/eigen3/Eigen/src/StlSupport/StdVector.h,sha256=ZMFTM2irx-ZrmNDMIYCyoRRWvfNdab18XXVN7WYgh4g,5338
|
|
513
|
+
include/eigen3/Eigen/src/SparseCholesky/SimplicialCholesky_impl.h,sha256=dFdpa-FOJlaOirwy9MZadsnMjesv7vwHpXWVky5bSPM,5830
|
|
514
|
+
include/eigen3/Eigen/src/SparseCholesky/SimplicialCholesky.h,sha256=oJz3HAOgW9nflw7znky97aP_SJz7S9vwhOhelWfXe_A,24216
|
|
515
|
+
include/eigen3/Eigen/src/Eigenvalues/GeneralizedEigenSolver.h,sha256=gjhXg_YIsizsBpnfbljjuOn7zmtAkz0levvRZRzXT4c,17176
|
|
516
|
+
include/eigen3/Eigen/src/Eigenvalues/EigenSolver.h,sha256=dk5LGEjuFvvUJFChALix6WXx-S9Buki-srtgELoLhEA,22970
|
|
517
|
+
include/eigen3/Eigen/src/Eigenvalues/RealSchur_LAPACKE.h,sha256=MKr7VFn4KX1oUapqi2USdVZdn6pFEzLQSvUHE8BDVis,3650
|
|
518
|
+
include/eigen3/Eigen/src/Eigenvalues/RealSchur.h,sha256=YIcKltQsAZXPrfkWnM44lWAviB4EDQ8x_1ZKlaPqZy8,21078
|
|
519
|
+
include/eigen3/Eigen/src/Eigenvalues/ComplexSchur_LAPACKE.h,sha256=_WVTQ369kknRbjGuKu7XPJg8r6PKuDXMmCk0PlzO-k8,4178
|
|
520
|
+
include/eigen3/Eigen/src/Eigenvalues/Tridiagonalization.h,sha256=mnlGNd83WlBplAPiJBD2ptx8z-yFtqasH7oEygEFEEc,22764
|
|
521
|
+
include/eigen3/Eigen/src/Eigenvalues/HessenbergDecomposition.h,sha256=O5VrdbpZMSheCsU_bUsr7VH_sJUo5Gh8Rg-D0nEt6Vs,14349
|
|
522
|
+
include/eigen3/Eigen/src/Eigenvalues/ComplexEigenSolver.h,sha256=slDfS5K-VOr0aXn4M4QT2IfQEcHoH-W3HcqYqFqKY1c,12559
|
|
523
|
+
include/eigen3/Eigen/src/Eigenvalues/GeneralizedSelfAdjointEigenSolver.h,sha256=4_rDPfwSRhuobLvKWLsS2dR1C_1O6ofWPX81JKXTsIQ,9716
|
|
524
|
+
include/eigen3/Eigen/src/Eigenvalues/SelfAdjointEigenSolver_LAPACKE.h,sha256=WVrgd6o4MYqGf6ZUP-qftealRVMvJ9Z2lYzB-ubvb6Q,4104
|
|
525
|
+
include/eigen3/Eigen/src/Eigenvalues/ComplexSchur.h,sha256=ZxIzjl0HXd09pS0vKLopsZLqR5IRwJcWGETc0Bgup5o,17274
|
|
526
|
+
include/eigen3/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h,sha256=C9q8ME35ACSMx57vfhud9XprJYazudk9QhNEuAbCbuY,35182
|
|
527
|
+
include/eigen3/Eigen/src/Eigenvalues/RealQZ.h,sha256=872Nd9lFrTCQwhtLWCyAtnZeG1mnaGWi1Q60IqVWGYo,23640
|
|
528
|
+
include/eigen3/Eigen/src/Eigenvalues/MatrixBaseEigenvalues.h,sha256=uxKK8knBdzSTGVJCn8qt07J_SqGDtNfT7e2z4wq1Jeg,5575
|
|
529
|
+
include/eigen3/Eigen/src/PaStiXSupport/PaStiXSupport.h,sha256=guI9MhWY5GTjrYXHWWRI6mXbUfaB23ooNEgTM35fLvA,22249
|
|
530
|
+
include/eigen3/Eigen/src/KLUSupport/KLUSupport.h,sha256=txjmMFEbp2X2xCmPMDheZGtR-wA_AnQWSCSnn7sAVRQ,11555
|
|
531
|
+
pylibsparseir-0.6.0.dist-info/RECORD,,
|
|
532
|
+
pylibsparseir-0.6.0.dist-info/WHEEL,sha256=-ylPWUC2cC7NYNHUkbdBeNBtyTuCiH8S-BJMK_I67nc,141
|
|
533
|
+
pylibsparseir-0.6.0.dist-info/METADATA,sha256=epgkYSzpsjchO2n7WefJoPFsmq78eNziaaNoGhIAL78,7032
|
|
534
|
+
pylibsparseir-0.6.0.dist-info/licenses/LICENSE,sha256=f7O_CoSPJW9fmszTOBcCtKDB2QMfPsrYyL41nyE3I-o,1064
|
|
535
|
+
pylibsparseir/ctypes_wrapper.py,sha256=G6_eraRUh9ON_2e_v4U_hc34HXirlotoawQDOkS0my0,798
|
|
536
|
+
pylibsparseir/clean_build_artifacts.py,sha256=vYQVocm55yvC5zhACXGRRp03GOj8X1CyryOe1J5KvQ0,2054
|
|
537
|
+
pylibsparseir/constants.py,sha256=Ek3JnmgiDWy3LB8f_9QA7Gh0ReaEC-W2MlCBJG3cBYg,864
|
|
538
|
+
pylibsparseir/__init__.py,sha256=c1D9nFVHJUxUqUPsVmZyWwf09LSYAacsLMpCockTrBw,954
|
|
539
|
+
pylibsparseir/core.py,sha256=je_E9ED_shU_jF6ADo2z2Ze_qpo4qoACJ8rngRBrWtw,25882
|
|
540
|
+
pylibsparseir/libsparseir.dylib,sha256=2UsnALhni--3hlcX68utZIT39bgSZrmfWjO2uibwH7c,1140816
|
|
541
|
+
share/pkgconfig/eigen3.pc,sha256=2i-SW6g4tLb9OrTxwZwAdNZyO4ytiYwfJQaFdD1Ukv0,282
|
|
542
|
+
share/eigen3/cmake/Eigen3Config.cmake,sha256=x0pY00N82bHVUD1ieWKjI_i5qPiEv65l-CBuY1YKRaQ,1339
|
|
543
|
+
share/eigen3/cmake/Eigen3ConfigVersion.cmake,sha256=kmx0uYAIqWGE5dwo0MIlPyZuKUyNvtbBNmg53QMw5kU,2759
|
|
544
|
+
share/eigen3/cmake/UseEigen3.cmake,sha256=1VpGAFMK_5H1HlGbGPlyv9lepMl0JF_PDi5TkumFvZU,177
|
|
545
|
+
share/eigen3/cmake/Eigen3Targets.cmake,sha256=0y9N3APTOXbI0ENVRbTJw5ckKceCPb0xm8IwRWs9yVo,4122
|