tomoto 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/CHANGELOG.md +3 -0
- data/LICENSE.txt +22 -0
- data/README.md +123 -0
- data/ext/tomoto/ext.cpp +245 -0
- data/ext/tomoto/extconf.rb +28 -0
- data/lib/tomoto.rb +12 -0
- data/lib/tomoto/ct.rb +11 -0
- data/lib/tomoto/hdp.rb +11 -0
- data/lib/tomoto/lda.rb +67 -0
- data/lib/tomoto/version.rb +3 -0
- data/vendor/EigenRand/EigenRand/Core.h +1139 -0
- data/vendor/EigenRand/EigenRand/Dists/Basic.h +111 -0
- data/vendor/EigenRand/EigenRand/Dists/Discrete.h +877 -0
- data/vendor/EigenRand/EigenRand/Dists/GammaPoisson.h +108 -0
- data/vendor/EigenRand/EigenRand/Dists/NormalExp.h +626 -0
- data/vendor/EigenRand/EigenRand/EigenRand +19 -0
- data/vendor/EigenRand/EigenRand/Macro.h +24 -0
- data/vendor/EigenRand/EigenRand/MorePacketMath.h +978 -0
- data/vendor/EigenRand/EigenRand/PacketFilter.h +286 -0
- data/vendor/EigenRand/EigenRand/PacketRandomEngine.h +624 -0
- data/vendor/EigenRand/EigenRand/RandUtils.h +413 -0
- data/vendor/EigenRand/EigenRand/doc.h +220 -0
- data/vendor/EigenRand/LICENSE +21 -0
- data/vendor/EigenRand/README.md +288 -0
- data/vendor/eigen/COPYING.BSD +26 -0
- data/vendor/eigen/COPYING.GPL +674 -0
- data/vendor/eigen/COPYING.LGPL +502 -0
- data/vendor/eigen/COPYING.MINPACK +52 -0
- data/vendor/eigen/COPYING.MPL2 +373 -0
- data/vendor/eigen/COPYING.README +18 -0
- data/vendor/eigen/Eigen/CMakeLists.txt +19 -0
- data/vendor/eigen/Eigen/Cholesky +46 -0
- data/vendor/eigen/Eigen/CholmodSupport +48 -0
- data/vendor/eigen/Eigen/Core +537 -0
- data/vendor/eigen/Eigen/Dense +7 -0
- data/vendor/eigen/Eigen/Eigen +2 -0
- data/vendor/eigen/Eigen/Eigenvalues +61 -0
- data/vendor/eigen/Eigen/Geometry +62 -0
- data/vendor/eigen/Eigen/Householder +30 -0
- data/vendor/eigen/Eigen/IterativeLinearSolvers +48 -0
- data/vendor/eigen/Eigen/Jacobi +33 -0
- data/vendor/eigen/Eigen/LU +50 -0
- data/vendor/eigen/Eigen/MetisSupport +35 -0
- data/vendor/eigen/Eigen/OrderingMethods +73 -0
- data/vendor/eigen/Eigen/PaStiXSupport +48 -0
- data/vendor/eigen/Eigen/PardisoSupport +35 -0
- data/vendor/eigen/Eigen/QR +51 -0
- data/vendor/eigen/Eigen/QtAlignedMalloc +40 -0
- data/vendor/eigen/Eigen/SPQRSupport +34 -0
- data/vendor/eigen/Eigen/SVD +51 -0
- data/vendor/eigen/Eigen/Sparse +36 -0
- data/vendor/eigen/Eigen/SparseCholesky +45 -0
- data/vendor/eigen/Eigen/SparseCore +69 -0
- data/vendor/eigen/Eigen/SparseLU +46 -0
- data/vendor/eigen/Eigen/SparseQR +37 -0
- data/vendor/eigen/Eigen/StdDeque +27 -0
- data/vendor/eigen/Eigen/StdList +26 -0
- data/vendor/eigen/Eigen/StdVector +27 -0
- data/vendor/eigen/Eigen/SuperLUSupport +64 -0
- data/vendor/eigen/Eigen/UmfPackSupport +40 -0
- data/vendor/eigen/Eigen/src/Cholesky/LDLT.h +673 -0
- data/vendor/eigen/Eigen/src/Cholesky/LLT.h +542 -0
- data/vendor/eigen/Eigen/src/Cholesky/LLT_LAPACKE.h +99 -0
- data/vendor/eigen/Eigen/src/CholmodSupport/CholmodSupport.h +639 -0
- data/vendor/eigen/Eigen/src/Core/Array.h +329 -0
- data/vendor/eigen/Eigen/src/Core/ArrayBase.h +226 -0
- data/vendor/eigen/Eigen/src/Core/ArrayWrapper.h +209 -0
- data/vendor/eigen/Eigen/src/Core/Assign.h +90 -0
- data/vendor/eigen/Eigen/src/Core/AssignEvaluator.h +935 -0
- data/vendor/eigen/Eigen/src/Core/Assign_MKL.h +178 -0
- data/vendor/eigen/Eigen/src/Core/BandMatrix.h +353 -0
- data/vendor/eigen/Eigen/src/Core/Block.h +452 -0
- data/vendor/eigen/Eigen/src/Core/BooleanRedux.h +164 -0
- data/vendor/eigen/Eigen/src/Core/CommaInitializer.h +160 -0
- data/vendor/eigen/Eigen/src/Core/ConditionEstimator.h +175 -0
- data/vendor/eigen/Eigen/src/Core/CoreEvaluators.h +1688 -0
- data/vendor/eigen/Eigen/src/Core/CoreIterators.h +127 -0
- data/vendor/eigen/Eigen/src/Core/CwiseBinaryOp.h +184 -0
- data/vendor/eigen/Eigen/src/Core/CwiseNullaryOp.h +866 -0
- data/vendor/eigen/Eigen/src/Core/CwiseTernaryOp.h +197 -0
- data/vendor/eigen/Eigen/src/Core/CwiseUnaryOp.h +103 -0
- data/vendor/eigen/Eigen/src/Core/CwiseUnaryView.h +128 -0
- data/vendor/eigen/Eigen/src/Core/DenseBase.h +611 -0
- data/vendor/eigen/Eigen/src/Core/DenseCoeffsBase.h +681 -0
- data/vendor/eigen/Eigen/src/Core/DenseStorage.h +570 -0
- data/vendor/eigen/Eigen/src/Core/Diagonal.h +260 -0
- data/vendor/eigen/Eigen/src/Core/DiagonalMatrix.h +343 -0
- data/vendor/eigen/Eigen/src/Core/DiagonalProduct.h +28 -0
- data/vendor/eigen/Eigen/src/Core/Dot.h +318 -0
- data/vendor/eigen/Eigen/src/Core/EigenBase.h +159 -0
- data/vendor/eigen/Eigen/src/Core/ForceAlignedAccess.h +146 -0
- data/vendor/eigen/Eigen/src/Core/Fuzzy.h +155 -0
- data/vendor/eigen/Eigen/src/Core/GeneralProduct.h +455 -0
- data/vendor/eigen/Eigen/src/Core/GenericPacketMath.h +593 -0
- data/vendor/eigen/Eigen/src/Core/GlobalFunctions.h +187 -0
- data/vendor/eigen/Eigen/src/Core/IO.h +225 -0
- data/vendor/eigen/Eigen/src/Core/Inverse.h +118 -0
- data/vendor/eigen/Eigen/src/Core/Map.h +171 -0
- data/vendor/eigen/Eigen/src/Core/MapBase.h +303 -0
- data/vendor/eigen/Eigen/src/Core/MathFunctions.h +1415 -0
- data/vendor/eigen/Eigen/src/Core/MathFunctionsImpl.h +101 -0
- data/vendor/eigen/Eigen/src/Core/Matrix.h +459 -0
- data/vendor/eigen/Eigen/src/Core/MatrixBase.h +529 -0
- data/vendor/eigen/Eigen/src/Core/NestByValue.h +110 -0
- data/vendor/eigen/Eigen/src/Core/NoAlias.h +108 -0
- data/vendor/eigen/Eigen/src/Core/NumTraits.h +248 -0
- data/vendor/eigen/Eigen/src/Core/PermutationMatrix.h +633 -0
- data/vendor/eigen/Eigen/src/Core/PlainObjectBase.h +1035 -0
- data/vendor/eigen/Eigen/src/Core/Product.h +186 -0
- data/vendor/eigen/Eigen/src/Core/ProductEvaluators.h +1112 -0
- data/vendor/eigen/Eigen/src/Core/Random.h +182 -0
- data/vendor/eigen/Eigen/src/Core/Redux.h +505 -0
- data/vendor/eigen/Eigen/src/Core/Ref.h +283 -0
- data/vendor/eigen/Eigen/src/Core/Replicate.h +142 -0
- data/vendor/eigen/Eigen/src/Core/ReturnByValue.h +117 -0
- data/vendor/eigen/Eigen/src/Core/Reverse.h +211 -0
- data/vendor/eigen/Eigen/src/Core/Select.h +162 -0
- data/vendor/eigen/Eigen/src/Core/SelfAdjointView.h +352 -0
- data/vendor/eigen/Eigen/src/Core/SelfCwiseBinaryOp.h +47 -0
- data/vendor/eigen/Eigen/src/Core/Solve.h +188 -0
- data/vendor/eigen/Eigen/src/Core/SolveTriangular.h +235 -0
- data/vendor/eigen/Eigen/src/Core/SolverBase.h +130 -0
- data/vendor/eigen/Eigen/src/Core/StableNorm.h +221 -0
- data/vendor/eigen/Eigen/src/Core/Stride.h +111 -0
- data/vendor/eigen/Eigen/src/Core/Swap.h +67 -0
- data/vendor/eigen/Eigen/src/Core/Transpose.h +403 -0
- data/vendor/eigen/Eigen/src/Core/Transpositions.h +407 -0
- data/vendor/eigen/Eigen/src/Core/TriangularMatrix.h +983 -0
- data/vendor/eigen/Eigen/src/Core/VectorBlock.h +96 -0
- data/vendor/eigen/Eigen/src/Core/VectorwiseOp.h +695 -0
- data/vendor/eigen/Eigen/src/Core/Visitor.h +273 -0
- data/vendor/eigen/Eigen/src/Core/arch/AVX/Complex.h +451 -0
- data/vendor/eigen/Eigen/src/Core/arch/AVX/MathFunctions.h +439 -0
- data/vendor/eigen/Eigen/src/Core/arch/AVX/PacketMath.h +637 -0
- data/vendor/eigen/Eigen/src/Core/arch/AVX/TypeCasting.h +51 -0
- data/vendor/eigen/Eigen/src/Core/arch/AVX512/MathFunctions.h +391 -0
- data/vendor/eigen/Eigen/src/Core/arch/AVX512/PacketMath.h +1316 -0
- data/vendor/eigen/Eigen/src/Core/arch/AltiVec/Complex.h +430 -0
- data/vendor/eigen/Eigen/src/Core/arch/AltiVec/MathFunctions.h +322 -0
- data/vendor/eigen/Eigen/src/Core/arch/AltiVec/PacketMath.h +1061 -0
- data/vendor/eigen/Eigen/src/Core/arch/CUDA/Complex.h +103 -0
- data/vendor/eigen/Eigen/src/Core/arch/CUDA/Half.h +674 -0
- data/vendor/eigen/Eigen/src/Core/arch/CUDA/MathFunctions.h +91 -0
- data/vendor/eigen/Eigen/src/Core/arch/CUDA/PacketMath.h +333 -0
- data/vendor/eigen/Eigen/src/Core/arch/CUDA/PacketMathHalf.h +1124 -0
- data/vendor/eigen/Eigen/src/Core/arch/CUDA/TypeCasting.h +212 -0
- data/vendor/eigen/Eigen/src/Core/arch/Default/ConjHelper.h +29 -0
- data/vendor/eigen/Eigen/src/Core/arch/Default/Settings.h +49 -0
- data/vendor/eigen/Eigen/src/Core/arch/NEON/Complex.h +490 -0
- data/vendor/eigen/Eigen/src/Core/arch/NEON/MathFunctions.h +91 -0
- data/vendor/eigen/Eigen/src/Core/arch/NEON/PacketMath.h +760 -0
- data/vendor/eigen/Eigen/src/Core/arch/SSE/Complex.h +471 -0
- data/vendor/eigen/Eigen/src/Core/arch/SSE/MathFunctions.h +562 -0
- data/vendor/eigen/Eigen/src/Core/arch/SSE/PacketMath.h +895 -0
- data/vendor/eigen/Eigen/src/Core/arch/SSE/TypeCasting.h +77 -0
- data/vendor/eigen/Eigen/src/Core/arch/ZVector/Complex.h +397 -0
- data/vendor/eigen/Eigen/src/Core/arch/ZVector/MathFunctions.h +137 -0
- data/vendor/eigen/Eigen/src/Core/arch/ZVector/PacketMath.h +945 -0
- data/vendor/eigen/Eigen/src/Core/functors/AssignmentFunctors.h +168 -0
- data/vendor/eigen/Eigen/src/Core/functors/BinaryFunctors.h +475 -0
- data/vendor/eigen/Eigen/src/Core/functors/NullaryFunctors.h +188 -0
- data/vendor/eigen/Eigen/src/Core/functors/StlFunctors.h +136 -0
- data/vendor/eigen/Eigen/src/Core/functors/TernaryFunctors.h +25 -0
- data/vendor/eigen/Eigen/src/Core/functors/UnaryFunctors.h +792 -0
- data/vendor/eigen/Eigen/src/Core/products/GeneralBlockPanelKernel.h +2156 -0
- data/vendor/eigen/Eigen/src/Core/products/GeneralMatrixMatrix.h +492 -0
- data/vendor/eigen/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h +311 -0
- data/vendor/eigen/Eigen/src/Core/products/GeneralMatrixMatrixTriangular_BLAS.h +145 -0
- data/vendor/eigen/Eigen/src/Core/products/GeneralMatrixMatrix_BLAS.h +122 -0
- data/vendor/eigen/Eigen/src/Core/products/GeneralMatrixVector.h +619 -0
- data/vendor/eigen/Eigen/src/Core/products/GeneralMatrixVector_BLAS.h +136 -0
- data/vendor/eigen/Eigen/src/Core/products/Parallelizer.h +163 -0
- data/vendor/eigen/Eigen/src/Core/products/SelfadjointMatrixMatrix.h +521 -0
- data/vendor/eigen/Eigen/src/Core/products/SelfadjointMatrixMatrix_BLAS.h +287 -0
- data/vendor/eigen/Eigen/src/Core/products/SelfadjointMatrixVector.h +260 -0
- data/vendor/eigen/Eigen/src/Core/products/SelfadjointMatrixVector_BLAS.h +118 -0
- data/vendor/eigen/Eigen/src/Core/products/SelfadjointProduct.h +133 -0
- data/vendor/eigen/Eigen/src/Core/products/SelfadjointRank2Update.h +93 -0
- data/vendor/eigen/Eigen/src/Core/products/TriangularMatrixMatrix.h +466 -0
- data/vendor/eigen/Eigen/src/Core/products/TriangularMatrixMatrix_BLAS.h +315 -0
- data/vendor/eigen/Eigen/src/Core/products/TriangularMatrixVector.h +350 -0
- data/vendor/eigen/Eigen/src/Core/products/TriangularMatrixVector_BLAS.h +255 -0
- data/vendor/eigen/Eigen/src/Core/products/TriangularSolverMatrix.h +335 -0
- data/vendor/eigen/Eigen/src/Core/products/TriangularSolverMatrix_BLAS.h +163 -0
- data/vendor/eigen/Eigen/src/Core/products/TriangularSolverVector.h +145 -0
- data/vendor/eigen/Eigen/src/Core/util/BlasUtil.h +398 -0
- data/vendor/eigen/Eigen/src/Core/util/Constants.h +547 -0
- data/vendor/eigen/Eigen/src/Core/util/DisableStupidWarnings.h +83 -0
- data/vendor/eigen/Eigen/src/Core/util/ForwardDeclarations.h +302 -0
- data/vendor/eigen/Eigen/src/Core/util/MKL_support.h +130 -0
- data/vendor/eigen/Eigen/src/Core/util/Macros.h +1001 -0
- data/vendor/eigen/Eigen/src/Core/util/Memory.h +993 -0
- data/vendor/eigen/Eigen/src/Core/util/Meta.h +534 -0
- data/vendor/eigen/Eigen/src/Core/util/NonMPL2.h +3 -0
- data/vendor/eigen/Eigen/src/Core/util/ReenableStupidWarnings.h +27 -0
- data/vendor/eigen/Eigen/src/Core/util/StaticAssert.h +218 -0
- data/vendor/eigen/Eigen/src/Core/util/XprHelper.h +821 -0
- data/vendor/eigen/Eigen/src/Eigenvalues/ComplexEigenSolver.h +346 -0
- data/vendor/eigen/Eigen/src/Eigenvalues/ComplexSchur.h +459 -0
- data/vendor/eigen/Eigen/src/Eigenvalues/ComplexSchur_LAPACKE.h +91 -0
- data/vendor/eigen/Eigen/src/Eigenvalues/EigenSolver.h +622 -0
- data/vendor/eigen/Eigen/src/Eigenvalues/GeneralizedEigenSolver.h +418 -0
- data/vendor/eigen/Eigen/src/Eigenvalues/GeneralizedSelfAdjointEigenSolver.h +226 -0
- data/vendor/eigen/Eigen/src/Eigenvalues/HessenbergDecomposition.h +374 -0
- data/vendor/eigen/Eigen/src/Eigenvalues/MatrixBaseEigenvalues.h +158 -0
- data/vendor/eigen/Eigen/src/Eigenvalues/RealQZ.h +654 -0
- data/vendor/eigen/Eigen/src/Eigenvalues/RealSchur.h +546 -0
- data/vendor/eigen/Eigen/src/Eigenvalues/RealSchur_LAPACKE.h +77 -0
- data/vendor/eigen/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h +870 -0
- data/vendor/eigen/Eigen/src/Eigenvalues/SelfAdjointEigenSolver_LAPACKE.h +87 -0
- data/vendor/eigen/Eigen/src/Eigenvalues/Tridiagonalization.h +556 -0
- data/vendor/eigen/Eigen/src/Geometry/AlignedBox.h +392 -0
- data/vendor/eigen/Eigen/src/Geometry/AngleAxis.h +247 -0
- data/vendor/eigen/Eigen/src/Geometry/EulerAngles.h +114 -0
- data/vendor/eigen/Eigen/src/Geometry/Homogeneous.h +497 -0
- data/vendor/eigen/Eigen/src/Geometry/Hyperplane.h +282 -0
- data/vendor/eigen/Eigen/src/Geometry/OrthoMethods.h +234 -0
- data/vendor/eigen/Eigen/src/Geometry/ParametrizedLine.h +195 -0
- data/vendor/eigen/Eigen/src/Geometry/Quaternion.h +814 -0
- data/vendor/eigen/Eigen/src/Geometry/Rotation2D.h +199 -0
- data/vendor/eigen/Eigen/src/Geometry/RotationBase.h +206 -0
- data/vendor/eigen/Eigen/src/Geometry/Scaling.h +170 -0
- data/vendor/eigen/Eigen/src/Geometry/Transform.h +1542 -0
- data/vendor/eigen/Eigen/src/Geometry/Translation.h +208 -0
- data/vendor/eigen/Eigen/src/Geometry/Umeyama.h +166 -0
- data/vendor/eigen/Eigen/src/Geometry/arch/Geometry_SSE.h +161 -0
- data/vendor/eigen/Eigen/src/Householder/BlockHouseholder.h +103 -0
- data/vendor/eigen/Eigen/src/Householder/Householder.h +172 -0
- data/vendor/eigen/Eigen/src/Householder/HouseholderSequence.h +470 -0
- data/vendor/eigen/Eigen/src/IterativeLinearSolvers/BasicPreconditioners.h +226 -0
- data/vendor/eigen/Eigen/src/IterativeLinearSolvers/BiCGSTAB.h +228 -0
- data/vendor/eigen/Eigen/src/IterativeLinearSolvers/ConjugateGradient.h +246 -0
- data/vendor/eigen/Eigen/src/IterativeLinearSolvers/IncompleteCholesky.h +400 -0
- data/vendor/eigen/Eigen/src/IterativeLinearSolvers/IncompleteLUT.h +462 -0
- data/vendor/eigen/Eigen/src/IterativeLinearSolvers/IterativeSolverBase.h +394 -0
- data/vendor/eigen/Eigen/src/IterativeLinearSolvers/LeastSquareConjugateGradient.h +216 -0
- data/vendor/eigen/Eigen/src/IterativeLinearSolvers/SolveWithGuess.h +115 -0
- data/vendor/eigen/Eigen/src/Jacobi/Jacobi.h +462 -0
- data/vendor/eigen/Eigen/src/LU/Determinant.h +101 -0
- data/vendor/eigen/Eigen/src/LU/FullPivLU.h +891 -0
- data/vendor/eigen/Eigen/src/LU/InverseImpl.h +415 -0
- data/vendor/eigen/Eigen/src/LU/PartialPivLU.h +611 -0
- data/vendor/eigen/Eigen/src/LU/PartialPivLU_LAPACKE.h +83 -0
- data/vendor/eigen/Eigen/src/LU/arch/Inverse_SSE.h +338 -0
- data/vendor/eigen/Eigen/src/MetisSupport/MetisSupport.h +137 -0
- data/vendor/eigen/Eigen/src/OrderingMethods/Amd.h +445 -0
- data/vendor/eigen/Eigen/src/OrderingMethods/Eigen_Colamd.h +1843 -0
- data/vendor/eigen/Eigen/src/OrderingMethods/Ordering.h +157 -0
- data/vendor/eigen/Eigen/src/PaStiXSupport/PaStiXSupport.h +678 -0
- data/vendor/eigen/Eigen/src/PardisoSupport/PardisoSupport.h +543 -0
- data/vendor/eigen/Eigen/src/QR/ColPivHouseholderQR.h +653 -0
- data/vendor/eigen/Eigen/src/QR/ColPivHouseholderQR_LAPACKE.h +97 -0
- data/vendor/eigen/Eigen/src/QR/CompleteOrthogonalDecomposition.h +562 -0
- data/vendor/eigen/Eigen/src/QR/FullPivHouseholderQR.h +676 -0
- data/vendor/eigen/Eigen/src/QR/HouseholderQR.h +409 -0
- data/vendor/eigen/Eigen/src/QR/HouseholderQR_LAPACKE.h +68 -0
- data/vendor/eigen/Eigen/src/SPQRSupport/SuiteSparseQRSupport.h +313 -0
- data/vendor/eigen/Eigen/src/SVD/BDCSVD.h +1246 -0
- data/vendor/eigen/Eigen/src/SVD/JacobiSVD.h +804 -0
- data/vendor/eigen/Eigen/src/SVD/JacobiSVD_LAPACKE.h +91 -0
- data/vendor/eigen/Eigen/src/SVD/SVDBase.h +315 -0
- data/vendor/eigen/Eigen/src/SVD/UpperBidiagonalization.h +414 -0
- data/vendor/eigen/Eigen/src/SparseCholesky/SimplicialCholesky.h +689 -0
- data/vendor/eigen/Eigen/src/SparseCholesky/SimplicialCholesky_impl.h +199 -0
- data/vendor/eigen/Eigen/src/SparseCore/AmbiVector.h +377 -0
- data/vendor/eigen/Eigen/src/SparseCore/CompressedStorage.h +258 -0
- data/vendor/eigen/Eigen/src/SparseCore/ConservativeSparseSparseProduct.h +352 -0
- data/vendor/eigen/Eigen/src/SparseCore/MappedSparseMatrix.h +67 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseAssign.h +216 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseBlock.h +603 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseColEtree.h +206 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseCompressedBase.h +341 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseCwiseBinaryOp.h +726 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseCwiseUnaryOp.h +148 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseDenseProduct.h +320 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseDiagonalProduct.h +138 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseDot.h +98 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseFuzzy.h +29 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseMap.h +305 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseMatrix.h +1403 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseMatrixBase.h +405 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparsePermutation.h +178 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseProduct.h +169 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseRedux.h +49 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseRef.h +397 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseSelfAdjointView.h +656 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseSolverBase.h +124 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseSparseProductWithPruning.h +198 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseTranspose.h +92 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseTriangularView.h +189 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseUtil.h +178 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseVector.h +478 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseView.h +253 -0
- data/vendor/eigen/Eigen/src/SparseCore/TriangularSolver.h +315 -0
- data/vendor/eigen/Eigen/src/SparseLU/SparseLU.h +773 -0
- data/vendor/eigen/Eigen/src/SparseLU/SparseLUImpl.h +66 -0
- data/vendor/eigen/Eigen/src/SparseLU/SparseLU_Memory.h +226 -0
- data/vendor/eigen/Eigen/src/SparseLU/SparseLU_Structs.h +110 -0
- data/vendor/eigen/Eigen/src/SparseLU/SparseLU_SupernodalMatrix.h +301 -0
- data/vendor/eigen/Eigen/src/SparseLU/SparseLU_Utils.h +80 -0
- data/vendor/eigen/Eigen/src/SparseLU/SparseLU_column_bmod.h +181 -0
- data/vendor/eigen/Eigen/src/SparseLU/SparseLU_column_dfs.h +179 -0
- data/vendor/eigen/Eigen/src/SparseLU/SparseLU_copy_to_ucol.h +107 -0
- data/vendor/eigen/Eigen/src/SparseLU/SparseLU_gemm_kernel.h +280 -0
- data/vendor/eigen/Eigen/src/SparseLU/SparseLU_heap_relax_snode.h +126 -0
- data/vendor/eigen/Eigen/src/SparseLU/SparseLU_kernel_bmod.h +130 -0
- data/vendor/eigen/Eigen/src/SparseLU/SparseLU_panel_bmod.h +223 -0
- data/vendor/eigen/Eigen/src/SparseLU/SparseLU_panel_dfs.h +258 -0
- data/vendor/eigen/Eigen/src/SparseLU/SparseLU_pivotL.h +137 -0
- data/vendor/eigen/Eigen/src/SparseLU/SparseLU_pruneL.h +136 -0
- data/vendor/eigen/Eigen/src/SparseLU/SparseLU_relax_snode.h +83 -0
- data/vendor/eigen/Eigen/src/SparseQR/SparseQR.h +745 -0
- data/vendor/eigen/Eigen/src/StlSupport/StdDeque.h +126 -0
- data/vendor/eigen/Eigen/src/StlSupport/StdList.h +106 -0
- data/vendor/eigen/Eigen/src/StlSupport/StdVector.h +131 -0
- data/vendor/eigen/Eigen/src/StlSupport/details.h +84 -0
- data/vendor/eigen/Eigen/src/SuperLUSupport/SuperLUSupport.h +1027 -0
- data/vendor/eigen/Eigen/src/UmfPackSupport/UmfPackSupport.h +506 -0
- data/vendor/eigen/Eigen/src/misc/Image.h +82 -0
- data/vendor/eigen/Eigen/src/misc/Kernel.h +79 -0
- data/vendor/eigen/Eigen/src/misc/RealSvd2x2.h +55 -0
- data/vendor/eigen/Eigen/src/misc/blas.h +440 -0
- data/vendor/eigen/Eigen/src/misc/lapack.h +152 -0
- data/vendor/eigen/Eigen/src/misc/lapacke.h +16291 -0
- data/vendor/eigen/Eigen/src/misc/lapacke_mangling.h +17 -0
- data/vendor/eigen/Eigen/src/plugins/ArrayCwiseBinaryOps.h +332 -0
- data/vendor/eigen/Eigen/src/plugins/ArrayCwiseUnaryOps.h +552 -0
- data/vendor/eigen/Eigen/src/plugins/BlockMethods.h +1058 -0
- data/vendor/eigen/Eigen/src/plugins/CommonCwiseBinaryOps.h +115 -0
- data/vendor/eigen/Eigen/src/plugins/CommonCwiseUnaryOps.h +163 -0
- data/vendor/eigen/Eigen/src/plugins/MatrixCwiseBinaryOps.h +152 -0
- data/vendor/eigen/Eigen/src/plugins/MatrixCwiseUnaryOps.h +85 -0
- data/vendor/eigen/README.md +3 -0
- data/vendor/eigen/bench/README.txt +55 -0
- data/vendor/eigen/bench/btl/COPYING +340 -0
- data/vendor/eigen/bench/btl/README +154 -0
- data/vendor/eigen/bench/tensors/README +21 -0
- data/vendor/eigen/blas/README.txt +6 -0
- data/vendor/eigen/demos/mandelbrot/README +10 -0
- data/vendor/eigen/demos/mix_eigen_and_c/README +9 -0
- data/vendor/eigen/demos/opengl/README +13 -0
- data/vendor/eigen/unsupported/Eigen/CXX11/src/Tensor/README.md +1760 -0
- data/vendor/eigen/unsupported/README.txt +50 -0
- data/vendor/tomotopy/LICENSE +21 -0
- data/vendor/tomotopy/README.kr.rst +375 -0
- data/vendor/tomotopy/README.rst +382 -0
- data/vendor/tomotopy/src/Labeling/FoRelevance.cpp +362 -0
- data/vendor/tomotopy/src/Labeling/FoRelevance.h +88 -0
- data/vendor/tomotopy/src/Labeling/Labeler.h +50 -0
- data/vendor/tomotopy/src/TopicModel/CT.h +37 -0
- data/vendor/tomotopy/src/TopicModel/CTModel.cpp +13 -0
- data/vendor/tomotopy/src/TopicModel/CTModel.hpp +293 -0
- data/vendor/tomotopy/src/TopicModel/DMR.h +51 -0
- data/vendor/tomotopy/src/TopicModel/DMRModel.cpp +13 -0
- data/vendor/tomotopy/src/TopicModel/DMRModel.hpp +374 -0
- data/vendor/tomotopy/src/TopicModel/DT.h +65 -0
- data/vendor/tomotopy/src/TopicModel/DTM.h +22 -0
- data/vendor/tomotopy/src/TopicModel/DTModel.cpp +15 -0
- data/vendor/tomotopy/src/TopicModel/DTModel.hpp +572 -0
- data/vendor/tomotopy/src/TopicModel/GDMR.h +37 -0
- data/vendor/tomotopy/src/TopicModel/GDMRModel.cpp +14 -0
- data/vendor/tomotopy/src/TopicModel/GDMRModel.hpp +485 -0
- data/vendor/tomotopy/src/TopicModel/HDP.h +74 -0
- data/vendor/tomotopy/src/TopicModel/HDPModel.cpp +13 -0
- data/vendor/tomotopy/src/TopicModel/HDPModel.hpp +592 -0
- data/vendor/tomotopy/src/TopicModel/HLDA.h +40 -0
- data/vendor/tomotopy/src/TopicModel/HLDAModel.cpp +13 -0
- data/vendor/tomotopy/src/TopicModel/HLDAModel.hpp +681 -0
- data/vendor/tomotopy/src/TopicModel/HPA.h +27 -0
- data/vendor/tomotopy/src/TopicModel/HPAModel.cpp +21 -0
- data/vendor/tomotopy/src/TopicModel/HPAModel.hpp +588 -0
- data/vendor/tomotopy/src/TopicModel/LDA.h +144 -0
- data/vendor/tomotopy/src/TopicModel/LDACVB0Model.hpp +442 -0
- data/vendor/tomotopy/src/TopicModel/LDAModel.cpp +13 -0
- data/vendor/tomotopy/src/TopicModel/LDAModel.hpp +1058 -0
- data/vendor/tomotopy/src/TopicModel/LLDA.h +45 -0
- data/vendor/tomotopy/src/TopicModel/LLDAModel.cpp +13 -0
- data/vendor/tomotopy/src/TopicModel/LLDAModel.hpp +203 -0
- data/vendor/tomotopy/src/TopicModel/MGLDA.h +63 -0
- data/vendor/tomotopy/src/TopicModel/MGLDAModel.cpp +17 -0
- data/vendor/tomotopy/src/TopicModel/MGLDAModel.hpp +558 -0
- data/vendor/tomotopy/src/TopicModel/PA.h +43 -0
- data/vendor/tomotopy/src/TopicModel/PAModel.cpp +13 -0
- data/vendor/tomotopy/src/TopicModel/PAModel.hpp +467 -0
- data/vendor/tomotopy/src/TopicModel/PLDA.h +17 -0
- data/vendor/tomotopy/src/TopicModel/PLDAModel.cpp +13 -0
- data/vendor/tomotopy/src/TopicModel/PLDAModel.hpp +214 -0
- data/vendor/tomotopy/src/TopicModel/SLDA.h +54 -0
- data/vendor/tomotopy/src/TopicModel/SLDAModel.cpp +17 -0
- data/vendor/tomotopy/src/TopicModel/SLDAModel.hpp +456 -0
- data/vendor/tomotopy/src/TopicModel/TopicModel.hpp +692 -0
- data/vendor/tomotopy/src/Utils/AliasMethod.hpp +169 -0
- data/vendor/tomotopy/src/Utils/Dictionary.h +80 -0
- data/vendor/tomotopy/src/Utils/EigenAddonOps.hpp +181 -0
- data/vendor/tomotopy/src/Utils/LBFGS.h +202 -0
- data/vendor/tomotopy/src/Utils/LBFGS/LineSearchBacktracking.h +120 -0
- data/vendor/tomotopy/src/Utils/LBFGS/LineSearchBracketing.h +122 -0
- data/vendor/tomotopy/src/Utils/LBFGS/Param.h +213 -0
- data/vendor/tomotopy/src/Utils/LUT.hpp +82 -0
- data/vendor/tomotopy/src/Utils/MultiNormalDistribution.hpp +69 -0
- data/vendor/tomotopy/src/Utils/PolyaGamma.hpp +200 -0
- data/vendor/tomotopy/src/Utils/PolyaGammaHybrid.hpp +672 -0
- data/vendor/tomotopy/src/Utils/ThreadPool.hpp +150 -0
- data/vendor/tomotopy/src/Utils/Trie.hpp +220 -0
- data/vendor/tomotopy/src/Utils/TruncMultiNormal.hpp +94 -0
- data/vendor/tomotopy/src/Utils/Utils.hpp +337 -0
- data/vendor/tomotopy/src/Utils/avx_gamma.h +46 -0
- data/vendor/tomotopy/src/Utils/avx_mathfun.h +736 -0
- data/vendor/tomotopy/src/Utils/exception.h +28 -0
- data/vendor/tomotopy/src/Utils/math.h +281 -0
- data/vendor/tomotopy/src/Utils/rtnorm.hpp +2690 -0
- data/vendor/tomotopy/src/Utils/sample.hpp +192 -0
- data/vendor/tomotopy/src/Utils/serializer.hpp +695 -0
- data/vendor/tomotopy/src/Utils/slp.hpp +131 -0
- data/vendor/tomotopy/src/Utils/sse_gamma.h +48 -0
- data/vendor/tomotopy/src/Utils/sse_mathfun.h +710 -0
- data/vendor/tomotopy/src/Utils/text.hpp +49 -0
- data/vendor/tomotopy/src/Utils/tvector.hpp +543 -0
- metadata +531 -0
@@ -0,0 +1,110 @@
|
|
1
|
+
// This file is part of Eigen, a lightweight C++ template library
|
2
|
+
// for linear algebra.
|
3
|
+
//
|
4
|
+
// Copyright (C) 2008 Gael Guennebaud <gael.guennebaud@inria.fr>
|
5
|
+
// Copyright (C) 2006-2008 Benoit Jacob <jacob.benoit.1@gmail.com>
|
6
|
+
//
|
7
|
+
// This Source Code Form is subject to the terms of the Mozilla
|
8
|
+
// Public License v. 2.0. If a copy of the MPL was not distributed
|
9
|
+
// with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
10
|
+
|
11
|
+
#ifndef EIGEN_NESTBYVALUE_H
|
12
|
+
#define EIGEN_NESTBYVALUE_H
|
13
|
+
|
14
|
+
namespace Eigen {
|
15
|
+
|
16
|
+
namespace internal {
|
17
|
+
template<typename ExpressionType>
|
18
|
+
struct traits<NestByValue<ExpressionType> > : public traits<ExpressionType>
|
19
|
+
{};
|
20
|
+
}
|
21
|
+
|
22
|
+
/** \class NestByValue
|
23
|
+
* \ingroup Core_Module
|
24
|
+
*
|
25
|
+
* \brief Expression which must be nested by value
|
26
|
+
*
|
27
|
+
* \tparam ExpressionType the type of the object of which we are requiring nesting-by-value
|
28
|
+
*
|
29
|
+
* This class is the return type of MatrixBase::nestByValue()
|
30
|
+
* and most of the time this is the only way it is used.
|
31
|
+
*
|
32
|
+
* \sa MatrixBase::nestByValue()
|
33
|
+
*/
|
34
|
+
template<typename ExpressionType> class NestByValue
|
35
|
+
: public internal::dense_xpr_base< NestByValue<ExpressionType> >::type
|
36
|
+
{
|
37
|
+
public:
|
38
|
+
|
39
|
+
typedef typename internal::dense_xpr_base<NestByValue>::type Base;
|
40
|
+
EIGEN_DENSE_PUBLIC_INTERFACE(NestByValue)
|
41
|
+
|
42
|
+
EIGEN_DEVICE_FUNC explicit inline NestByValue(const ExpressionType& matrix) : m_expression(matrix) {}
|
43
|
+
|
44
|
+
EIGEN_DEVICE_FUNC inline Index rows() const { return m_expression.rows(); }
|
45
|
+
EIGEN_DEVICE_FUNC inline Index cols() const { return m_expression.cols(); }
|
46
|
+
EIGEN_DEVICE_FUNC inline Index outerStride() const { return m_expression.outerStride(); }
|
47
|
+
EIGEN_DEVICE_FUNC inline Index innerStride() const { return m_expression.innerStride(); }
|
48
|
+
|
49
|
+
EIGEN_DEVICE_FUNC inline const CoeffReturnType coeff(Index row, Index col) const
|
50
|
+
{
|
51
|
+
return m_expression.coeff(row, col);
|
52
|
+
}
|
53
|
+
|
54
|
+
EIGEN_DEVICE_FUNC inline Scalar& coeffRef(Index row, Index col)
|
55
|
+
{
|
56
|
+
return m_expression.const_cast_derived().coeffRef(row, col);
|
57
|
+
}
|
58
|
+
|
59
|
+
EIGEN_DEVICE_FUNC inline const CoeffReturnType coeff(Index index) const
|
60
|
+
{
|
61
|
+
return m_expression.coeff(index);
|
62
|
+
}
|
63
|
+
|
64
|
+
EIGEN_DEVICE_FUNC inline Scalar& coeffRef(Index index)
|
65
|
+
{
|
66
|
+
return m_expression.const_cast_derived().coeffRef(index);
|
67
|
+
}
|
68
|
+
|
69
|
+
template<int LoadMode>
|
70
|
+
inline const PacketScalar packet(Index row, Index col) const
|
71
|
+
{
|
72
|
+
return m_expression.template packet<LoadMode>(row, col);
|
73
|
+
}
|
74
|
+
|
75
|
+
template<int LoadMode>
|
76
|
+
inline void writePacket(Index row, Index col, const PacketScalar& x)
|
77
|
+
{
|
78
|
+
m_expression.const_cast_derived().template writePacket<LoadMode>(row, col, x);
|
79
|
+
}
|
80
|
+
|
81
|
+
template<int LoadMode>
|
82
|
+
inline const PacketScalar packet(Index index) const
|
83
|
+
{
|
84
|
+
return m_expression.template packet<LoadMode>(index);
|
85
|
+
}
|
86
|
+
|
87
|
+
template<int LoadMode>
|
88
|
+
inline void writePacket(Index index, const PacketScalar& x)
|
89
|
+
{
|
90
|
+
m_expression.const_cast_derived().template writePacket<LoadMode>(index, x);
|
91
|
+
}
|
92
|
+
|
93
|
+
EIGEN_DEVICE_FUNC operator const ExpressionType&() const { return m_expression; }
|
94
|
+
|
95
|
+
protected:
|
96
|
+
const ExpressionType m_expression;
|
97
|
+
};
|
98
|
+
|
99
|
+
/** \returns an expression of the temporary version of *this.
|
100
|
+
*/
|
101
|
+
template<typename Derived>
|
102
|
+
inline const NestByValue<Derived>
|
103
|
+
DenseBase<Derived>::nestByValue() const
|
104
|
+
{
|
105
|
+
return NestByValue<Derived>(derived());
|
106
|
+
}
|
107
|
+
|
108
|
+
} // end namespace Eigen
|
109
|
+
|
110
|
+
#endif // EIGEN_NESTBYVALUE_H
|
@@ -0,0 +1,108 @@
|
|
1
|
+
// This file is part of Eigen, a lightweight C++ template library
|
2
|
+
// for linear algebra.
|
3
|
+
//
|
4
|
+
// Copyright (C) 2009 Gael Guennebaud <gael.guennebaud@inria.fr>
|
5
|
+
//
|
6
|
+
// This Source Code Form is subject to the terms of the Mozilla
|
7
|
+
// Public License v. 2.0. If a copy of the MPL was not distributed
|
8
|
+
// with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
9
|
+
|
10
|
+
#ifndef EIGEN_NOALIAS_H
|
11
|
+
#define EIGEN_NOALIAS_H
|
12
|
+
|
13
|
+
namespace Eigen {
|
14
|
+
|
15
|
+
/** \class NoAlias
|
16
|
+
* \ingroup Core_Module
|
17
|
+
*
|
18
|
+
* \brief Pseudo expression providing an operator = assuming no aliasing
|
19
|
+
*
|
20
|
+
* \tparam ExpressionType the type of the object on which to do the lazy assignment
|
21
|
+
*
|
22
|
+
* This class represents an expression with special assignment operators
|
23
|
+
* assuming no aliasing between the target expression and the source expression.
|
24
|
+
* More precisely it alloas to bypass the EvalBeforeAssignBit flag of the source expression.
|
25
|
+
* It is the return type of MatrixBase::noalias()
|
26
|
+
* and most of the time this is the only way it is used.
|
27
|
+
*
|
28
|
+
* \sa MatrixBase::noalias()
|
29
|
+
*/
|
30
|
+
template<typename ExpressionType, template <typename> class StorageBase>
|
31
|
+
class NoAlias
|
32
|
+
{
|
33
|
+
public:
|
34
|
+
typedef typename ExpressionType::Scalar Scalar;
|
35
|
+
|
36
|
+
explicit NoAlias(ExpressionType& expression) : m_expression(expression) {}
|
37
|
+
|
38
|
+
template<typename OtherDerived>
|
39
|
+
EIGEN_DEVICE_FUNC
|
40
|
+
EIGEN_STRONG_INLINE ExpressionType& operator=(const StorageBase<OtherDerived>& other)
|
41
|
+
{
|
42
|
+
call_assignment_no_alias(m_expression, other.derived(), internal::assign_op<Scalar,typename OtherDerived::Scalar>());
|
43
|
+
return m_expression;
|
44
|
+
}
|
45
|
+
|
46
|
+
template<typename OtherDerived>
|
47
|
+
EIGEN_DEVICE_FUNC
|
48
|
+
EIGEN_STRONG_INLINE ExpressionType& operator+=(const StorageBase<OtherDerived>& other)
|
49
|
+
{
|
50
|
+
call_assignment_no_alias(m_expression, other.derived(), internal::add_assign_op<Scalar,typename OtherDerived::Scalar>());
|
51
|
+
return m_expression;
|
52
|
+
}
|
53
|
+
|
54
|
+
template<typename OtherDerived>
|
55
|
+
EIGEN_DEVICE_FUNC
|
56
|
+
EIGEN_STRONG_INLINE ExpressionType& operator-=(const StorageBase<OtherDerived>& other)
|
57
|
+
{
|
58
|
+
call_assignment_no_alias(m_expression, other.derived(), internal::sub_assign_op<Scalar,typename OtherDerived::Scalar>());
|
59
|
+
return m_expression;
|
60
|
+
}
|
61
|
+
|
62
|
+
EIGEN_DEVICE_FUNC
|
63
|
+
ExpressionType& expression() const
|
64
|
+
{
|
65
|
+
return m_expression;
|
66
|
+
}
|
67
|
+
|
68
|
+
protected:
|
69
|
+
ExpressionType& m_expression;
|
70
|
+
};
|
71
|
+
|
72
|
+
/** \returns a pseudo expression of \c *this with an operator= assuming
|
73
|
+
* no aliasing between \c *this and the source expression.
|
74
|
+
*
|
75
|
+
* More precisely, noalias() allows to bypass the EvalBeforeAssignBit flag.
|
76
|
+
* Currently, even though several expressions may alias, only product
|
77
|
+
* expressions have this flag. Therefore, noalias() is only usefull when
|
78
|
+
* the source expression contains a matrix product.
|
79
|
+
*
|
80
|
+
* Here are some examples where noalias is usefull:
|
81
|
+
* \code
|
82
|
+
* D.noalias() = A * B;
|
83
|
+
* D.noalias() += A.transpose() * B;
|
84
|
+
* D.noalias() -= 2 * A * B.adjoint();
|
85
|
+
* \endcode
|
86
|
+
*
|
87
|
+
* On the other hand the following example will lead to a \b wrong result:
|
88
|
+
* \code
|
89
|
+
* A.noalias() = A * B;
|
90
|
+
* \endcode
|
91
|
+
* because the result matrix A is also an operand of the matrix product. Therefore,
|
92
|
+
* there is no alternative than evaluating A * B in a temporary, that is the default
|
93
|
+
* behavior when you write:
|
94
|
+
* \code
|
95
|
+
* A = A * B;
|
96
|
+
* \endcode
|
97
|
+
*
|
98
|
+
* \sa class NoAlias
|
99
|
+
*/
|
100
|
+
template<typename Derived>
|
101
|
+
NoAlias<Derived,MatrixBase> MatrixBase<Derived>::noalias()
|
102
|
+
{
|
103
|
+
return NoAlias<Derived, Eigen::MatrixBase >(derived());
|
104
|
+
}
|
105
|
+
|
106
|
+
} // end namespace Eigen
|
107
|
+
|
108
|
+
#endif // EIGEN_NOALIAS_H
|
@@ -0,0 +1,248 @@
|
|
1
|
+
// This file is part of Eigen, a lightweight C++ template library
|
2
|
+
// for linear algebra.
|
3
|
+
//
|
4
|
+
// Copyright (C) 2006-2010 Benoit Jacob <jacob.benoit.1@gmail.com>
|
5
|
+
//
|
6
|
+
// This Source Code Form is subject to the terms of the Mozilla
|
7
|
+
// Public License v. 2.0. If a copy of the MPL was not distributed
|
8
|
+
// with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
9
|
+
|
10
|
+
#ifndef EIGEN_NUMTRAITS_H
|
11
|
+
#define EIGEN_NUMTRAITS_H
|
12
|
+
|
13
|
+
namespace Eigen {
|
14
|
+
|
15
|
+
namespace internal {
|
16
|
+
|
17
|
+
// default implementation of digits10(), based on numeric_limits if specialized,
|
18
|
+
// 0 for integer types, and log10(epsilon()) otherwise.
|
19
|
+
template< typename T,
|
20
|
+
bool use_numeric_limits = std::numeric_limits<T>::is_specialized,
|
21
|
+
bool is_integer = NumTraits<T>::IsInteger>
|
22
|
+
struct default_digits10_impl
|
23
|
+
{
|
24
|
+
static int run() { return std::numeric_limits<T>::digits10; }
|
25
|
+
};
|
26
|
+
|
27
|
+
template<typename T>
|
28
|
+
struct default_digits10_impl<T,false,false> // Floating point
|
29
|
+
{
|
30
|
+
static int run() {
|
31
|
+
using std::log10;
|
32
|
+
using std::ceil;
|
33
|
+
typedef typename NumTraits<T>::Real Real;
|
34
|
+
return int(ceil(-log10(NumTraits<Real>::epsilon())));
|
35
|
+
}
|
36
|
+
};
|
37
|
+
|
38
|
+
template<typename T>
|
39
|
+
struct default_digits10_impl<T,false,true> // Integer
|
40
|
+
{
|
41
|
+
static int run() { return 0; }
|
42
|
+
};
|
43
|
+
|
44
|
+
} // end namespace internal
|
45
|
+
|
46
|
+
/** \class NumTraits
|
47
|
+
* \ingroup Core_Module
|
48
|
+
*
|
49
|
+
* \brief Holds information about the various numeric (i.e. scalar) types allowed by Eigen.
|
50
|
+
*
|
51
|
+
* \tparam T the numeric type at hand
|
52
|
+
*
|
53
|
+
* This class stores enums, typedefs and static methods giving information about a numeric type.
|
54
|
+
*
|
55
|
+
* The provided data consists of:
|
56
|
+
* \li A typedef \c Real, giving the "real part" type of \a T. If \a T is already real,
|
57
|
+
* then \c Real is just a typedef to \a T. If \a T is \c std::complex<U> then \c Real
|
58
|
+
* is a typedef to \a U.
|
59
|
+
* \li A typedef \c NonInteger, giving the type that should be used for operations producing non-integral values,
|
60
|
+
* such as quotients, square roots, etc. If \a T is a floating-point type, then this typedef just gives
|
61
|
+
* \a T again. Note however that many Eigen functions such as internal::sqrt simply refuse to
|
62
|
+
* take integers. Outside of a few cases, Eigen doesn't do automatic type promotion. Thus, this typedef is
|
63
|
+
* only intended as a helper for code that needs to explicitly promote types.
|
64
|
+
* \li A typedef \c Literal giving the type to use for numeric literals such as "2" or "0.5". For instance, for \c std::complex<U>, Literal is defined as \c U.
|
65
|
+
* Of course, this type must be fully compatible with \a T. In doubt, just use \a T here.
|
66
|
+
* \li A typedef \a Nested giving the type to use to nest a value inside of the expression tree. If you don't know what
|
67
|
+
* this means, just use \a T here.
|
68
|
+
* \li An enum value \a IsComplex. It is equal to 1 if \a T is a \c std::complex
|
69
|
+
* type, and to 0 otherwise.
|
70
|
+
* \li An enum value \a IsInteger. It is equal to \c 1 if \a T is an integer type such as \c int,
|
71
|
+
* and to \c 0 otherwise.
|
72
|
+
* \li Enum values ReadCost, AddCost and MulCost representing a rough estimate of the number of CPU cycles needed
|
73
|
+
* to by move / add / mul instructions respectively, assuming the data is already stored in CPU registers.
|
74
|
+
* Stay vague here. No need to do architecture-specific stuff.
|
75
|
+
* \li An enum value \a IsSigned. It is equal to \c 1 if \a T is a signed type and to 0 if \a T is unsigned.
|
76
|
+
* \li An enum value \a RequireInitialization. It is equal to \c 1 if the constructor of the numeric type \a T must
|
77
|
+
* be called, and to 0 if it is safe not to call it. Default is 0 if \a T is an arithmetic type, and 1 otherwise.
|
78
|
+
* \li An epsilon() function which, unlike <a href="http://en.cppreference.com/w/cpp/types/numeric_limits/epsilon">std::numeric_limits::epsilon()</a>,
|
79
|
+
* it returns a \a Real instead of a \a T.
|
80
|
+
* \li A dummy_precision() function returning a weak epsilon value. It is mainly used as a default
|
81
|
+
* value by the fuzzy comparison operators.
|
82
|
+
* \li highest() and lowest() functions returning the highest and lowest possible values respectively.
|
83
|
+
* \li digits10() function returning the number of decimal digits that can be represented without change. This is
|
84
|
+
* the analogue of <a href="http://en.cppreference.com/w/cpp/types/numeric_limits/digits10">std::numeric_limits<T>::digits10</a>
|
85
|
+
* which is used as the default implementation if specialized.
|
86
|
+
*/
|
87
|
+
|
88
|
+
template<typename T> struct GenericNumTraits
|
89
|
+
{
|
90
|
+
enum {
|
91
|
+
IsInteger = std::numeric_limits<T>::is_integer,
|
92
|
+
IsSigned = std::numeric_limits<T>::is_signed,
|
93
|
+
IsComplex = 0,
|
94
|
+
RequireInitialization = internal::is_arithmetic<T>::value ? 0 : 1,
|
95
|
+
ReadCost = 1,
|
96
|
+
AddCost = 1,
|
97
|
+
MulCost = 1
|
98
|
+
};
|
99
|
+
|
100
|
+
typedef T Real;
|
101
|
+
typedef typename internal::conditional<
|
102
|
+
IsInteger,
|
103
|
+
typename internal::conditional<sizeof(T)<=2, float, double>::type,
|
104
|
+
T
|
105
|
+
>::type NonInteger;
|
106
|
+
typedef T Nested;
|
107
|
+
typedef T Literal;
|
108
|
+
|
109
|
+
EIGEN_DEVICE_FUNC
|
110
|
+
static inline Real epsilon()
|
111
|
+
{
|
112
|
+
return numext::numeric_limits<T>::epsilon();
|
113
|
+
}
|
114
|
+
|
115
|
+
EIGEN_DEVICE_FUNC
|
116
|
+
static inline int digits10()
|
117
|
+
{
|
118
|
+
return internal::default_digits10_impl<T>::run();
|
119
|
+
}
|
120
|
+
|
121
|
+
EIGEN_DEVICE_FUNC
|
122
|
+
static inline Real dummy_precision()
|
123
|
+
{
|
124
|
+
// make sure to override this for floating-point types
|
125
|
+
return Real(0);
|
126
|
+
}
|
127
|
+
|
128
|
+
|
129
|
+
EIGEN_DEVICE_FUNC
|
130
|
+
static inline T highest() {
|
131
|
+
return (numext::numeric_limits<T>::max)();
|
132
|
+
}
|
133
|
+
|
134
|
+
EIGEN_DEVICE_FUNC
|
135
|
+
static inline T lowest() {
|
136
|
+
return IsInteger ? (numext::numeric_limits<T>::min)() : (-(numext::numeric_limits<T>::max)());
|
137
|
+
}
|
138
|
+
|
139
|
+
EIGEN_DEVICE_FUNC
|
140
|
+
static inline T infinity() {
|
141
|
+
return numext::numeric_limits<T>::infinity();
|
142
|
+
}
|
143
|
+
|
144
|
+
EIGEN_DEVICE_FUNC
|
145
|
+
static inline T quiet_NaN() {
|
146
|
+
return numext::numeric_limits<T>::quiet_NaN();
|
147
|
+
}
|
148
|
+
};
|
149
|
+
|
150
|
+
template<typename T> struct NumTraits : GenericNumTraits<T>
|
151
|
+
{};
|
152
|
+
|
153
|
+
template<> struct NumTraits<float>
|
154
|
+
: GenericNumTraits<float>
|
155
|
+
{
|
156
|
+
EIGEN_DEVICE_FUNC
|
157
|
+
static inline float dummy_precision() { return 1e-5f; }
|
158
|
+
};
|
159
|
+
|
160
|
+
template<> struct NumTraits<double> : GenericNumTraits<double>
|
161
|
+
{
|
162
|
+
EIGEN_DEVICE_FUNC
|
163
|
+
static inline double dummy_precision() { return 1e-12; }
|
164
|
+
};
|
165
|
+
|
166
|
+
template<> struct NumTraits<long double>
|
167
|
+
: GenericNumTraits<long double>
|
168
|
+
{
|
169
|
+
static inline long double dummy_precision() { return 1e-15l; }
|
170
|
+
};
|
171
|
+
|
172
|
+
template<typename _Real> struct NumTraits<std::complex<_Real> >
|
173
|
+
: GenericNumTraits<std::complex<_Real> >
|
174
|
+
{
|
175
|
+
typedef _Real Real;
|
176
|
+
typedef typename NumTraits<_Real>::Literal Literal;
|
177
|
+
enum {
|
178
|
+
IsComplex = 1,
|
179
|
+
RequireInitialization = NumTraits<_Real>::RequireInitialization,
|
180
|
+
ReadCost = 2 * NumTraits<_Real>::ReadCost,
|
181
|
+
AddCost = 2 * NumTraits<Real>::AddCost,
|
182
|
+
MulCost = 4 * NumTraits<Real>::MulCost + 2 * NumTraits<Real>::AddCost
|
183
|
+
};
|
184
|
+
|
185
|
+
EIGEN_DEVICE_FUNC
|
186
|
+
static inline Real epsilon() { return NumTraits<Real>::epsilon(); }
|
187
|
+
EIGEN_DEVICE_FUNC
|
188
|
+
static inline Real dummy_precision() { return NumTraits<Real>::dummy_precision(); }
|
189
|
+
EIGEN_DEVICE_FUNC
|
190
|
+
static inline int digits10() { return NumTraits<Real>::digits10(); }
|
191
|
+
};
|
192
|
+
|
193
|
+
template<typename Scalar, int Rows, int Cols, int Options, int MaxRows, int MaxCols>
|
194
|
+
struct NumTraits<Array<Scalar, Rows, Cols, Options, MaxRows, MaxCols> >
|
195
|
+
{
|
196
|
+
typedef Array<Scalar, Rows, Cols, Options, MaxRows, MaxCols> ArrayType;
|
197
|
+
typedef typename NumTraits<Scalar>::Real RealScalar;
|
198
|
+
typedef Array<RealScalar, Rows, Cols, Options, MaxRows, MaxCols> Real;
|
199
|
+
typedef typename NumTraits<Scalar>::NonInteger NonIntegerScalar;
|
200
|
+
typedef Array<NonIntegerScalar, Rows, Cols, Options, MaxRows, MaxCols> NonInteger;
|
201
|
+
typedef ArrayType & Nested;
|
202
|
+
typedef typename NumTraits<Scalar>::Literal Literal;
|
203
|
+
|
204
|
+
enum {
|
205
|
+
IsComplex = NumTraits<Scalar>::IsComplex,
|
206
|
+
IsInteger = NumTraits<Scalar>::IsInteger,
|
207
|
+
IsSigned = NumTraits<Scalar>::IsSigned,
|
208
|
+
RequireInitialization = 1,
|
209
|
+
ReadCost = ArrayType::SizeAtCompileTime==Dynamic ? HugeCost : ArrayType::SizeAtCompileTime * NumTraits<Scalar>::ReadCost,
|
210
|
+
AddCost = ArrayType::SizeAtCompileTime==Dynamic ? HugeCost : ArrayType::SizeAtCompileTime * NumTraits<Scalar>::AddCost,
|
211
|
+
MulCost = ArrayType::SizeAtCompileTime==Dynamic ? HugeCost : ArrayType::SizeAtCompileTime * NumTraits<Scalar>::MulCost
|
212
|
+
};
|
213
|
+
|
214
|
+
EIGEN_DEVICE_FUNC
|
215
|
+
static inline RealScalar epsilon() { return NumTraits<RealScalar>::epsilon(); }
|
216
|
+
EIGEN_DEVICE_FUNC
|
217
|
+
static inline RealScalar dummy_precision() { return NumTraits<RealScalar>::dummy_precision(); }
|
218
|
+
|
219
|
+
static inline int digits10() { return NumTraits<Scalar>::digits10(); }
|
220
|
+
};
|
221
|
+
|
222
|
+
template<> struct NumTraits<std::string>
|
223
|
+
: GenericNumTraits<std::string>
|
224
|
+
{
|
225
|
+
enum {
|
226
|
+
RequireInitialization = 1,
|
227
|
+
ReadCost = HugeCost,
|
228
|
+
AddCost = HugeCost,
|
229
|
+
MulCost = HugeCost
|
230
|
+
};
|
231
|
+
|
232
|
+
static inline int digits10() { return 0; }
|
233
|
+
|
234
|
+
private:
|
235
|
+
static inline std::string epsilon();
|
236
|
+
static inline std::string dummy_precision();
|
237
|
+
static inline std::string lowest();
|
238
|
+
static inline std::string highest();
|
239
|
+
static inline std::string infinity();
|
240
|
+
static inline std::string quiet_NaN();
|
241
|
+
};
|
242
|
+
|
243
|
+
// Empty specialization for void to allow template specialization based on NumTraits<T>::Real with T==void and SFINAE.
|
244
|
+
template<> struct NumTraits<void> {};
|
245
|
+
|
246
|
+
} // end namespace Eigen
|
247
|
+
|
248
|
+
#endif // EIGEN_NUMTRAITS_H
|