ruby-eigen 0.0.9 → 0.0.10.pre1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (293) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE +22 -0
  3. data/README.md +21 -0
  4. data/ext/eigen/eigen3/COPYING.BSD +26 -0
  5. data/ext/eigen/eigen3/COPYING.MPL2 +373 -0
  6. data/ext/eigen/eigen3/COPYING.README +18 -0
  7. data/ext/eigen/eigen3/Eigen/Array +11 -0
  8. data/ext/eigen/eigen3/Eigen/Cholesky +32 -0
  9. data/ext/eigen/eigen3/Eigen/CholmodSupport +45 -0
  10. data/ext/eigen/eigen3/Eigen/Core +376 -0
  11. data/ext/eigen/eigen3/Eigen/Dense +7 -0
  12. data/ext/eigen/eigen3/Eigen/Eigen +2 -0
  13. data/ext/eigen/eigen3/Eigen/Eigen2Support +95 -0
  14. data/ext/eigen/eigen3/Eigen/Eigenvalues +48 -0
  15. data/ext/eigen/eigen3/Eigen/Geometry +63 -0
  16. data/ext/eigen/eigen3/Eigen/Householder +23 -0
  17. data/ext/eigen/eigen3/Eigen/IterativeLinearSolvers +40 -0
  18. data/ext/eigen/eigen3/Eigen/Jacobi +26 -0
  19. data/ext/eigen/eigen3/Eigen/LU +41 -0
  20. data/ext/eigen/eigen3/Eigen/LeastSquares +32 -0
  21. data/ext/eigen/eigen3/Eigen/MetisSupport +28 -0
  22. data/ext/eigen/eigen3/Eigen/PaStiXSupport +46 -0
  23. data/ext/eigen/eigen3/Eigen/PardisoSupport +30 -0
  24. data/ext/eigen/eigen3/Eigen/QR +45 -0
  25. data/ext/eigen/eigen3/Eigen/QtAlignedMalloc +34 -0
  26. data/ext/eigen/eigen3/Eigen/SPQRSupport +29 -0
  27. data/ext/eigen/eigen3/Eigen/SVD +37 -0
  28. data/ext/eigen/eigen3/Eigen/Sparse +27 -0
  29. data/ext/eigen/eigen3/Eigen/SparseCore +64 -0
  30. data/ext/eigen/eigen3/Eigen/SparseLU +49 -0
  31. data/ext/eigen/eigen3/Eigen/SparseQR +33 -0
  32. data/ext/eigen/eigen3/Eigen/StdDeque +27 -0
  33. data/ext/eigen/eigen3/Eigen/StdList +26 -0
  34. data/ext/eigen/eigen3/Eigen/StdVector +27 -0
  35. data/ext/eigen/eigen3/Eigen/SuperLUSupport +59 -0
  36. data/ext/eigen/eigen3/Eigen/UmfPackSupport +36 -0
  37. data/ext/eigen/eigen3/Eigen/src/Cholesky/LDLT.h +611 -0
  38. data/ext/eigen/eigen3/Eigen/src/Cholesky/LLT.h +498 -0
  39. data/ext/eigen/eigen3/Eigen/src/Cholesky/LLT_MKL.h +102 -0
  40. data/ext/eigen/eigen3/Eigen/src/CholmodSupport/CholmodSupport.h +607 -0
  41. data/ext/eigen/eigen3/Eigen/src/Core/Array.h +323 -0
  42. data/ext/eigen/eigen3/Eigen/src/Core/ArrayBase.h +226 -0
  43. data/ext/eigen/eigen3/Eigen/src/Core/ArrayWrapper.h +264 -0
  44. data/ext/eigen/eigen3/Eigen/src/Core/Assign.h +590 -0
  45. data/ext/eigen/eigen3/Eigen/src/Core/Assign_MKL.h +224 -0
  46. data/ext/eigen/eigen3/Eigen/src/Core/BandMatrix.h +334 -0
  47. data/ext/eigen/eigen3/Eigen/src/Core/Block.h +406 -0
  48. data/ext/eigen/eigen3/Eigen/src/Core/BooleanRedux.h +154 -0
  49. data/ext/eigen/eigen3/Eigen/src/Core/CommaInitializer.h +154 -0
  50. data/ext/eigen/eigen3/Eigen/src/Core/CoreIterators.h +61 -0
  51. data/ext/eigen/eigen3/Eigen/src/Core/CwiseBinaryOp.h +230 -0
  52. data/ext/eigen/eigen3/Eigen/src/Core/CwiseNullaryOp.h +864 -0
  53. data/ext/eigen/eigen3/Eigen/src/Core/CwiseUnaryOp.h +126 -0
  54. data/ext/eigen/eigen3/Eigen/src/Core/CwiseUnaryView.h +139 -0
  55. data/ext/eigen/eigen3/Eigen/src/Core/DenseBase.h +521 -0
  56. data/ext/eigen/eigen3/Eigen/src/Core/DenseCoeffsBase.h +754 -0
  57. data/ext/eigen/eigen3/Eigen/src/Core/DenseStorage.h +434 -0
  58. data/ext/eigen/eigen3/Eigen/src/Core/Diagonal.h +237 -0
  59. data/ext/eigen/eigen3/Eigen/src/Core/DiagonalMatrix.h +313 -0
  60. data/ext/eigen/eigen3/Eigen/src/Core/DiagonalProduct.h +131 -0
  61. data/ext/eigen/eigen3/Eigen/src/Core/Dot.h +263 -0
  62. data/ext/eigen/eigen3/Eigen/src/Core/EigenBase.h +131 -0
  63. data/ext/eigen/eigen3/Eigen/src/Core/Flagged.h +140 -0
  64. data/ext/eigen/eigen3/Eigen/src/Core/ForceAlignedAccess.h +146 -0
  65. data/ext/eigen/eigen3/Eigen/src/Core/Functors.h +1026 -0
  66. data/ext/eigen/eigen3/Eigen/src/Core/Fuzzy.h +150 -0
  67. data/ext/eigen/eigen3/Eigen/src/Core/GeneralProduct.h +635 -0
  68. data/ext/eigen/eigen3/Eigen/src/Core/GenericPacketMath.h +350 -0
  69. data/ext/eigen/eigen3/Eigen/src/Core/GlobalFunctions.h +92 -0
  70. data/ext/eigen/eigen3/Eigen/src/Core/IO.h +250 -0
  71. data/ext/eigen/eigen3/Eigen/src/Core/Map.h +192 -0
  72. data/ext/eigen/eigen3/Eigen/src/Core/MapBase.h +247 -0
  73. data/ext/eigen/eigen3/Eigen/src/Core/MathFunctions.h +768 -0
  74. data/ext/eigen/eigen3/Eigen/src/Core/Matrix.h +420 -0
  75. data/ext/eigen/eigen3/Eigen/src/Core/MatrixBase.h +563 -0
  76. data/ext/eigen/eigen3/Eigen/src/Core/NestByValue.h +111 -0
  77. data/ext/eigen/eigen3/Eigen/src/Core/NoAlias.h +134 -0
  78. data/ext/eigen/eigen3/Eigen/src/Core/NumTraits.h +150 -0
  79. data/ext/eigen/eigen3/Eigen/src/Core/PermutationMatrix.h +721 -0
  80. data/ext/eigen/eigen3/Eigen/src/Core/PlainObjectBase.h +822 -0
  81. data/ext/eigen/eigen3/Eigen/src/Core/ProductBase.h +290 -0
  82. data/ext/eigen/eigen3/Eigen/src/Core/Random.h +152 -0
  83. data/ext/eigen/eigen3/Eigen/src/Core/Redux.h +409 -0
  84. data/ext/eigen/eigen3/Eigen/src/Core/Ref.h +278 -0
  85. data/ext/eigen/eigen3/Eigen/src/Core/Replicate.h +177 -0
  86. data/ext/eigen/eigen3/Eigen/src/Core/ReturnByValue.h +99 -0
  87. data/ext/eigen/eigen3/Eigen/src/Core/Reverse.h +224 -0
  88. data/ext/eigen/eigen3/Eigen/src/Core/Select.h +162 -0
  89. data/ext/eigen/eigen3/Eigen/src/Core/SelfAdjointView.h +314 -0
  90. data/ext/eigen/eigen3/Eigen/src/Core/SelfCwiseBinaryOp.h +191 -0
  91. data/ext/eigen/eigen3/Eigen/src/Core/SolveTriangular.h +260 -0
  92. data/ext/eigen/eigen3/Eigen/src/Core/StableNorm.h +203 -0
  93. data/ext/eigen/eigen3/Eigen/src/Core/Stride.h +108 -0
  94. data/ext/eigen/eigen3/Eigen/src/Core/Swap.h +126 -0
  95. data/ext/eigen/eigen3/Eigen/src/Core/Transpose.h +419 -0
  96. data/ext/eigen/eigen3/Eigen/src/Core/Transpositions.h +436 -0
  97. data/ext/eigen/eigen3/Eigen/src/Core/TriangularMatrix.h +839 -0
  98. data/ext/eigen/eigen3/Eigen/src/Core/VectorBlock.h +95 -0
  99. data/ext/eigen/eigen3/Eigen/src/Core/VectorwiseOp.h +642 -0
  100. data/ext/eigen/eigen3/Eigen/src/Core/Visitor.h +237 -0
  101. data/ext/eigen/eigen3/Eigen/src/Core/arch/AltiVec/Complex.h +217 -0
  102. data/ext/eigen/eigen3/Eigen/src/Core/arch/AltiVec/PacketMath.h +501 -0
  103. data/ext/eigen/eigen3/Eigen/src/Core/arch/Default/Settings.h +49 -0
  104. data/ext/eigen/eigen3/Eigen/src/Core/arch/NEON/Complex.h +253 -0
  105. data/ext/eigen/eigen3/Eigen/src/Core/arch/NEON/PacketMath.h +420 -0
  106. data/ext/eigen/eigen3/Eigen/src/Core/arch/SSE/Complex.h +442 -0
  107. data/ext/eigen/eigen3/Eigen/src/Core/arch/SSE/MathFunctions.h +475 -0
  108. data/ext/eigen/eigen3/Eigen/src/Core/arch/SSE/PacketMath.h +649 -0
  109. data/ext/eigen/eigen3/Eigen/src/Core/products/CoeffBasedProduct.h +476 -0
  110. data/ext/eigen/eigen3/Eigen/src/Core/products/GeneralBlockPanelKernel.h +1341 -0
  111. data/ext/eigen/eigen3/Eigen/src/Core/products/GeneralMatrixMatrix.h +427 -0
  112. data/ext/eigen/eigen3/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h +278 -0
  113. data/ext/eigen/eigen3/Eigen/src/Core/products/GeneralMatrixMatrixTriangular_MKL.h +146 -0
  114. data/ext/eigen/eigen3/Eigen/src/Core/products/GeneralMatrixMatrix_MKL.h +118 -0
  115. data/ext/eigen/eigen3/Eigen/src/Core/products/GeneralMatrixVector.h +566 -0
  116. data/ext/eigen/eigen3/Eigen/src/Core/products/GeneralMatrixVector_MKL.h +131 -0
  117. data/ext/eigen/eigen3/Eigen/src/Core/products/Parallelizer.h +162 -0
  118. data/ext/eigen/eigen3/Eigen/src/Core/products/SelfadjointMatrixMatrix.h +436 -0
  119. data/ext/eigen/eigen3/Eigen/src/Core/products/SelfadjointMatrixMatrix_MKL.h +295 -0
  120. data/ext/eigen/eigen3/Eigen/src/Core/products/SelfadjointMatrixVector.h +281 -0
  121. data/ext/eigen/eigen3/Eigen/src/Core/products/SelfadjointMatrixVector_MKL.h +114 -0
  122. data/ext/eigen/eigen3/Eigen/src/Core/products/SelfadjointProduct.h +123 -0
  123. data/ext/eigen/eigen3/Eigen/src/Core/products/SelfadjointRank2Update.h +93 -0
  124. data/ext/eigen/eigen3/Eigen/src/Core/products/TriangularMatrixMatrix.h +427 -0
  125. data/ext/eigen/eigen3/Eigen/src/Core/products/TriangularMatrixMatrix_MKL.h +309 -0
  126. data/ext/eigen/eigen3/Eigen/src/Core/products/TriangularMatrixVector.h +348 -0
  127. data/ext/eigen/eigen3/Eigen/src/Core/products/TriangularMatrixVector_MKL.h +247 -0
  128. data/ext/eigen/eigen3/Eigen/src/Core/products/TriangularSolverMatrix.h +332 -0
  129. data/ext/eigen/eigen3/Eigen/src/Core/products/TriangularSolverMatrix_MKL.h +155 -0
  130. data/ext/eigen/eigen3/Eigen/src/Core/products/TriangularSolverVector.h +139 -0
  131. data/ext/eigen/eigen3/Eigen/src/Core/util/BlasUtil.h +264 -0
  132. data/ext/eigen/eigen3/Eigen/src/Core/util/Constants.h +451 -0
  133. data/ext/eigen/eigen3/Eigen/src/Core/util/DisableStupidWarnings.h +40 -0
  134. data/ext/eigen/eigen3/Eigen/src/Core/util/ForwardDeclarations.h +302 -0
  135. data/ext/eigen/eigen3/Eigen/src/Core/util/MKL_support.h +158 -0
  136. data/ext/eigen/eigen3/Eigen/src/Core/util/Macros.h +451 -0
  137. data/ext/eigen/eigen3/Eigen/src/Core/util/Memory.h +977 -0
  138. data/ext/eigen/eigen3/Eigen/src/Core/util/Meta.h +243 -0
  139. data/ext/eigen/eigen3/Eigen/src/Core/util/NonMPL2.h +3 -0
  140. data/ext/eigen/eigen3/Eigen/src/Core/util/ReenableStupidWarnings.h +14 -0
  141. data/ext/eigen/eigen3/Eigen/src/Core/util/StaticAssert.h +208 -0
  142. data/ext/eigen/eigen3/Eigen/src/Core/util/XprHelper.h +469 -0
  143. data/ext/eigen/eigen3/Eigen/src/Eigen2Support/Block.h +126 -0
  144. data/ext/eigen/eigen3/Eigen/src/Eigen2Support/Cwise.h +192 -0
  145. data/ext/eigen/eigen3/Eigen/src/Eigen2Support/CwiseOperators.h +298 -0
  146. data/ext/eigen/eigen3/Eigen/src/Eigen2Support/Geometry/AlignedBox.h +159 -0
  147. data/ext/eigen/eigen3/Eigen/src/Eigen2Support/Geometry/All.h +115 -0
  148. data/ext/eigen/eigen3/Eigen/src/Eigen2Support/Geometry/AngleAxis.h +214 -0
  149. data/ext/eigen/eigen3/Eigen/src/Eigen2Support/Geometry/Hyperplane.h +254 -0
  150. data/ext/eigen/eigen3/Eigen/src/Eigen2Support/Geometry/ParametrizedLine.h +141 -0
  151. data/ext/eigen/eigen3/Eigen/src/Eigen2Support/Geometry/Quaternion.h +495 -0
  152. data/ext/eigen/eigen3/Eigen/src/Eigen2Support/Geometry/Rotation2D.h +145 -0
  153. data/ext/eigen/eigen3/Eigen/src/Eigen2Support/Geometry/RotationBase.h +123 -0
  154. data/ext/eigen/eigen3/Eigen/src/Eigen2Support/Geometry/Scaling.h +167 -0
  155. data/ext/eigen/eigen3/Eigen/src/Eigen2Support/Geometry/Transform.h +786 -0
  156. data/ext/eigen/eigen3/Eigen/src/Eigen2Support/Geometry/Translation.h +184 -0
  157. data/ext/eigen/eigen3/Eigen/src/Eigen2Support/LU.h +120 -0
  158. data/ext/eigen/eigen3/Eigen/src/Eigen2Support/Lazy.h +71 -0
  159. data/ext/eigen/eigen3/Eigen/src/Eigen2Support/LeastSquares.h +169 -0
  160. data/ext/eigen/eigen3/Eigen/src/Eigen2Support/Macros.h +20 -0
  161. data/ext/eigen/eigen3/Eigen/src/Eigen2Support/MathFunctions.h +57 -0
  162. data/ext/eigen/eigen3/Eigen/src/Eigen2Support/Memory.h +45 -0
  163. data/ext/eigen/eigen3/Eigen/src/Eigen2Support/Meta.h +75 -0
  164. data/ext/eigen/eigen3/Eigen/src/Eigen2Support/Minor.h +117 -0
  165. data/ext/eigen/eigen3/Eigen/src/Eigen2Support/QR.h +67 -0
  166. data/ext/eigen/eigen3/Eigen/src/Eigen2Support/SVD.h +637 -0
  167. data/ext/eigen/eigen3/Eigen/src/Eigen2Support/TriangularSolver.h +42 -0
  168. data/ext/eigen/eigen3/Eigen/src/Eigen2Support/VectorBlock.h +94 -0
  169. data/ext/eigen/eigen3/Eigen/src/Eigenvalues/ComplexEigenSolver.h +341 -0
  170. data/ext/eigen/eigen3/Eigen/src/Eigenvalues/ComplexSchur.h +456 -0
  171. data/ext/eigen/eigen3/Eigen/src/Eigenvalues/ComplexSchur_MKL.h +94 -0
  172. data/ext/eigen/eigen3/Eigen/src/Eigenvalues/EigenSolver.h +607 -0
  173. data/ext/eigen/eigen3/Eigen/src/Eigenvalues/GeneralizedEigenSolver.h +350 -0
  174. data/ext/eigen/eigen3/Eigen/src/Eigenvalues/GeneralizedSelfAdjointEigenSolver.h +227 -0
  175. data/ext/eigen/eigen3/Eigen/src/Eigenvalues/HessenbergDecomposition.h +373 -0
  176. data/ext/eigen/eigen3/Eigen/src/Eigenvalues/MatrixBaseEigenvalues.h +160 -0
  177. data/ext/eigen/eigen3/Eigen/src/Eigenvalues/RealQZ.h +624 -0
  178. data/ext/eigen/eigen3/Eigen/src/Eigenvalues/RealSchur.h +525 -0
  179. data/ext/eigen/eigen3/Eigen/src/Eigenvalues/RealSchur_MKL.h +83 -0
  180. data/ext/eigen/eigen3/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h +801 -0
  181. data/ext/eigen/eigen3/Eigen/src/Eigenvalues/SelfAdjointEigenSolver_MKL.h +92 -0
  182. data/ext/eigen/eigen3/Eigen/src/Eigenvalues/Tridiagonalization.h +557 -0
  183. data/ext/eigen/eigen3/Eigen/src/Geometry/AlignedBox.h +392 -0
  184. data/ext/eigen/eigen3/Eigen/src/Geometry/AngleAxis.h +233 -0
  185. data/ext/eigen/eigen3/Eigen/src/Geometry/EulerAngles.h +104 -0
  186. data/ext/eigen/eigen3/Eigen/src/Geometry/Homogeneous.h +307 -0
  187. data/ext/eigen/eigen3/Eigen/src/Geometry/Hyperplane.h +280 -0
  188. data/ext/eigen/eigen3/Eigen/src/Geometry/OrthoMethods.h +218 -0
  189. data/ext/eigen/eigen3/Eigen/src/Geometry/ParametrizedLine.h +195 -0
  190. data/ext/eigen/eigen3/Eigen/src/Geometry/Quaternion.h +776 -0
  191. data/ext/eigen/eigen3/Eigen/src/Geometry/Rotation2D.h +160 -0
  192. data/ext/eigen/eigen3/Eigen/src/Geometry/RotationBase.h +206 -0
  193. data/ext/eigen/eigen3/Eigen/src/Geometry/Scaling.h +166 -0
  194. data/ext/eigen/eigen3/Eigen/src/Geometry/Transform.h +1455 -0
  195. data/ext/eigen/eigen3/Eigen/src/Geometry/Translation.h +206 -0
  196. data/ext/eigen/eigen3/Eigen/src/Geometry/Umeyama.h +177 -0
  197. data/ext/eigen/eigen3/Eigen/src/Geometry/arch/Geometry_SSE.h +115 -0
  198. data/ext/eigen/eigen3/Eigen/src/Householder/BlockHouseholder.h +68 -0
  199. data/ext/eigen/eigen3/Eigen/src/Householder/Householder.h +171 -0
  200. data/ext/eigen/eigen3/Eigen/src/Householder/HouseholderSequence.h +441 -0
  201. data/ext/eigen/eigen3/Eigen/src/IterativeLinearSolvers/BasicPreconditioners.h +149 -0
  202. data/ext/eigen/eigen3/Eigen/src/IterativeLinearSolvers/BiCGSTAB.h +263 -0
  203. data/ext/eigen/eigen3/Eigen/src/IterativeLinearSolvers/ConjugateGradient.h +256 -0
  204. data/ext/eigen/eigen3/Eigen/src/IterativeLinearSolvers/IterativeSolverBase.h +282 -0
  205. data/ext/eigen/eigen3/Eigen/src/Jacobi/Jacobi.h +433 -0
  206. data/ext/eigen/eigen3/Eigen/src/LU/Determinant.h +101 -0
  207. data/ext/eigen/eigen3/Eigen/src/LU/FullPivLU.h +751 -0
  208. data/ext/eigen/eigen3/Eigen/src/LU/Inverse.h +400 -0
  209. data/ext/eigen/eigen3/Eigen/src/LU/PartialPivLU.h +509 -0
  210. data/ext/eigen/eigen3/Eigen/src/LU/PartialPivLU_MKL.h +85 -0
  211. data/ext/eigen/eigen3/Eigen/src/LU/arch/Inverse_SSE.h +329 -0
  212. data/ext/eigen/eigen3/Eigen/src/MetisSupport/MetisSupport.h +137 -0
  213. data/ext/eigen/eigen3/Eigen/src/OrderingMethods/Amd.h +444 -0
  214. data/ext/eigen/eigen3/Eigen/src/OrderingMethods/Eigen_Colamd.h +1850 -0
  215. data/ext/eigen/eigen3/Eigen/src/PaStiXSupport/PaStiXSupport.h +721 -0
  216. data/ext/eigen/eigen3/Eigen/src/PardisoSupport/PardisoSupport.h +592 -0
  217. data/ext/eigen/eigen3/Eigen/src/QR/ColPivHouseholderQR.h +580 -0
  218. data/ext/eigen/eigen3/Eigen/src/QR/ColPivHouseholderQR_MKL.h +99 -0
  219. data/ext/eigen/eigen3/Eigen/src/QR/FullPivHouseholderQR.h +622 -0
  220. data/ext/eigen/eigen3/Eigen/src/QR/HouseholderQR.h +388 -0
  221. data/ext/eigen/eigen3/Eigen/src/QR/HouseholderQR_MKL.h +71 -0
  222. data/ext/eigen/eigen3/Eigen/src/SPQRSupport/SuiteSparseQRSupport.h +338 -0
  223. data/ext/eigen/eigen3/Eigen/src/SVD/JacobiSVD.h +976 -0
  224. data/ext/eigen/eigen3/Eigen/src/SVD/JacobiSVD_MKL.h +92 -0
  225. data/ext/eigen/eigen3/Eigen/src/SVD/UpperBidiagonalization.h +148 -0
  226. data/ext/eigen/eigen3/Eigen/src/SparseCholesky/SimplicialCholesky.h +671 -0
  227. data/ext/eigen/eigen3/Eigen/src/SparseCholesky/SimplicialCholesky_impl.h +199 -0
  228. data/ext/eigen/eigen3/Eigen/src/SparseCore/AmbiVector.h +373 -0
  229. data/ext/eigen/eigen3/Eigen/src/SparseCore/CompressedStorage.h +233 -0
  230. data/ext/eigen/eigen3/Eigen/src/SparseCore/ConservativeSparseSparseProduct.h +245 -0
  231. data/ext/eigen/eigen3/Eigen/src/SparseCore/MappedSparseMatrix.h +181 -0
  232. data/ext/eigen/eigen3/Eigen/src/SparseCore/SparseBlock.h +537 -0
  233. data/ext/eigen/eigen3/Eigen/src/SparseCore/SparseColEtree.h +206 -0
  234. data/ext/eigen/eigen3/Eigen/src/SparseCore/SparseCwiseBinaryOp.h +325 -0
  235. data/ext/eigen/eigen3/Eigen/src/SparseCore/SparseCwiseUnaryOp.h +163 -0
  236. data/ext/eigen/eigen3/Eigen/src/SparseCore/SparseDenseProduct.h +311 -0
  237. data/ext/eigen/eigen3/Eigen/src/SparseCore/SparseDiagonalProduct.h +196 -0
  238. data/ext/eigen/eigen3/Eigen/src/SparseCore/SparseDot.h +101 -0
  239. data/ext/eigen/eigen3/Eigen/src/SparseCore/SparseFuzzy.h +26 -0
  240. data/ext/eigen/eigen3/Eigen/src/SparseCore/SparseMatrix.h +1262 -0
  241. data/ext/eigen/eigen3/Eigen/src/SparseCore/SparseMatrixBase.h +461 -0
  242. data/ext/eigen/eigen3/Eigen/src/SparseCore/SparsePermutation.h +148 -0
  243. data/ext/eigen/eigen3/Eigen/src/SparseCore/SparseProduct.h +188 -0
  244. data/ext/eigen/eigen3/Eigen/src/SparseCore/SparseRedux.h +45 -0
  245. data/ext/eigen/eigen3/Eigen/src/SparseCore/SparseSelfAdjointView.h +507 -0
  246. data/ext/eigen/eigen3/Eigen/src/SparseCore/SparseSparseProductWithPruning.h +150 -0
  247. data/ext/eigen/eigen3/Eigen/src/SparseCore/SparseTranspose.h +63 -0
  248. data/ext/eigen/eigen3/Eigen/src/SparseCore/SparseTriangularView.h +179 -0
  249. data/ext/eigen/eigen3/Eigen/src/SparseCore/SparseUtil.h +172 -0
  250. data/ext/eigen/eigen3/Eigen/src/SparseCore/SparseVector.h +448 -0
  251. data/ext/eigen/eigen3/Eigen/src/SparseCore/SparseView.h +99 -0
  252. data/ext/eigen/eigen3/Eigen/src/SparseCore/TriangularSolver.h +334 -0
  253. data/ext/eigen/eigen3/Eigen/src/SparseLU/SparseLU.h +806 -0
  254. data/ext/eigen/eigen3/Eigen/src/SparseLU/SparseLUImpl.h +66 -0
  255. data/ext/eigen/eigen3/Eigen/src/SparseLU/SparseLU_Memory.h +227 -0
  256. data/ext/eigen/eigen3/Eigen/src/SparseLU/SparseLU_Structs.h +111 -0
  257. data/ext/eigen/eigen3/Eigen/src/SparseLU/SparseLU_SupernodalMatrix.h +298 -0
  258. data/ext/eigen/eigen3/Eigen/src/SparseLU/SparseLU_Utils.h +80 -0
  259. data/ext/eigen/eigen3/Eigen/src/SparseLU/SparseLU_column_bmod.h +180 -0
  260. data/ext/eigen/eigen3/Eigen/src/SparseLU/SparseLU_column_dfs.h +177 -0
  261. data/ext/eigen/eigen3/Eigen/src/SparseLU/SparseLU_copy_to_ucol.h +106 -0
  262. data/ext/eigen/eigen3/Eigen/src/SparseLU/SparseLU_gemm_kernel.h +279 -0
  263. data/ext/eigen/eigen3/Eigen/src/SparseLU/SparseLU_heap_relax_snode.h +127 -0
  264. data/ext/eigen/eigen3/Eigen/src/SparseLU/SparseLU_kernel_bmod.h +130 -0
  265. data/ext/eigen/eigen3/Eigen/src/SparseLU/SparseLU_panel_bmod.h +223 -0
  266. data/ext/eigen/eigen3/Eigen/src/SparseLU/SparseLU_panel_dfs.h +258 -0
  267. data/ext/eigen/eigen3/Eigen/src/SparseLU/SparseLU_pivotL.h +137 -0
  268. data/ext/eigen/eigen3/Eigen/src/SparseLU/SparseLU_pruneL.h +135 -0
  269. data/ext/eigen/eigen3/Eigen/src/SparseLU/SparseLU_relax_snode.h +83 -0
  270. data/ext/eigen/eigen3/Eigen/src/SparseQR/SparseQR.h +714 -0
  271. data/ext/eigen/eigen3/Eigen/src/StlSupport/StdDeque.h +134 -0
  272. data/ext/eigen/eigen3/Eigen/src/StlSupport/StdList.h +114 -0
  273. data/ext/eigen/eigen3/Eigen/src/StlSupport/StdVector.h +126 -0
  274. data/ext/eigen/eigen3/Eigen/src/StlSupport/details.h +84 -0
  275. data/ext/eigen/eigen3/Eigen/src/SuperLUSupport/SuperLUSupport.h +1026 -0
  276. data/ext/eigen/eigen3/Eigen/src/UmfPackSupport/UmfPackSupport.h +474 -0
  277. data/ext/eigen/eigen3/Eigen/src/misc/Image.h +84 -0
  278. data/ext/eigen/eigen3/Eigen/src/misc/Kernel.h +81 -0
  279. data/ext/eigen/eigen3/Eigen/src/misc/Solve.h +76 -0
  280. data/ext/eigen/eigen3/Eigen/src/misc/SparseSolve.h +128 -0
  281. data/ext/eigen/eigen3/Eigen/src/misc/blas.h +658 -0
  282. data/ext/eigen/eigen3/Eigen/src/plugins/ArrayCwiseBinaryOps.h +253 -0
  283. data/ext/eigen/eigen3/Eigen/src/plugins/ArrayCwiseUnaryOps.h +187 -0
  284. data/ext/eigen/eigen3/Eigen/src/plugins/BlockMethods.h +935 -0
  285. data/ext/eigen/eigen3/Eigen/src/plugins/CommonCwiseBinaryOps.h +46 -0
  286. data/ext/eigen/eigen3/Eigen/src/plugins/CommonCwiseUnaryOps.h +172 -0
  287. data/ext/eigen/eigen3/Eigen/src/plugins/MatrixCwiseBinaryOps.h +143 -0
  288. data/ext/eigen/eigen3/Eigen/src/plugins/MatrixCwiseUnaryOps.h +52 -0
  289. data/ext/eigen/eigen3/signature_of_eigen3_matrix_library +1 -0
  290. data/ext/eigen/eigen_wrap.cxx +19420 -10396
  291. data/ext/eigen/extconf.rb +37 -2
  292. data/lib/eigen.rb +146 -3
  293. metadata +294 -7
@@ -0,0 +1,84 @@
1
+ // This file is part of Eigen, a lightweight C++ template library
2
+ // for linear algebra.
3
+ //
4
+ // Copyright (C) 2009 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_MISC_IMAGE_H
11
+ #define EIGEN_MISC_IMAGE_H
12
+
13
+ namespace Eigen {
14
+
15
+ namespace internal {
16
+
17
+ /** \class image_retval_base
18
+ *
19
+ */
20
+ template<typename DecompositionType>
21
+ struct traits<image_retval_base<DecompositionType> >
22
+ {
23
+ typedef typename DecompositionType::MatrixType MatrixType;
24
+ typedef Matrix<
25
+ typename MatrixType::Scalar,
26
+ MatrixType::RowsAtCompileTime, // the image is a subspace of the destination space, whose
27
+ // dimension is the number of rows of the original matrix
28
+ Dynamic, // we don't know at compile time the dimension of the image (the rank)
29
+ MatrixType::Options,
30
+ MatrixType::MaxRowsAtCompileTime, // the image matrix will consist of columns from the original matrix,
31
+ MatrixType::MaxColsAtCompileTime // so it has the same number of rows and at most as many columns.
32
+ > ReturnType;
33
+ };
34
+
35
+ template<typename _DecompositionType> struct image_retval_base
36
+ : public ReturnByValue<image_retval_base<_DecompositionType> >
37
+ {
38
+ typedef _DecompositionType DecompositionType;
39
+ typedef typename DecompositionType::MatrixType MatrixType;
40
+ typedef ReturnByValue<image_retval_base> Base;
41
+ typedef typename Base::Index Index;
42
+
43
+ image_retval_base(const DecompositionType& dec, const MatrixType& originalMatrix)
44
+ : m_dec(dec), m_rank(dec.rank()),
45
+ m_cols(m_rank == 0 ? 1 : m_rank),
46
+ m_originalMatrix(originalMatrix)
47
+ {}
48
+
49
+ inline Index rows() const { return m_dec.rows(); }
50
+ inline Index cols() const { return m_cols; }
51
+ inline Index rank() const { return m_rank; }
52
+ inline const DecompositionType& dec() const { return m_dec; }
53
+ inline const MatrixType& originalMatrix() const { return m_originalMatrix; }
54
+
55
+ template<typename Dest> inline void evalTo(Dest& dst) const
56
+ {
57
+ static_cast<const image_retval<DecompositionType>*>(this)->evalTo(dst);
58
+ }
59
+
60
+ protected:
61
+ const DecompositionType& m_dec;
62
+ Index m_rank, m_cols;
63
+ const MatrixType& m_originalMatrix;
64
+ };
65
+
66
+ } // end namespace internal
67
+
68
+ #define EIGEN_MAKE_IMAGE_HELPERS(DecompositionType) \
69
+ typedef typename DecompositionType::MatrixType MatrixType; \
70
+ typedef typename MatrixType::Scalar Scalar; \
71
+ typedef typename MatrixType::RealScalar RealScalar; \
72
+ typedef typename MatrixType::Index Index; \
73
+ typedef Eigen::internal::image_retval_base<DecompositionType> Base; \
74
+ using Base::dec; \
75
+ using Base::originalMatrix; \
76
+ using Base::rank; \
77
+ using Base::rows; \
78
+ using Base::cols; \
79
+ image_retval(const DecompositionType& dec, const MatrixType& originalMatrix) \
80
+ : Base(dec, originalMatrix) {}
81
+
82
+ } // end namespace Eigen
83
+
84
+ #endif // EIGEN_MISC_IMAGE_H
@@ -0,0 +1,81 @@
1
+ // This file is part of Eigen, a lightweight C++ template library
2
+ // for linear algebra.
3
+ //
4
+ // Copyright (C) 2009 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_MISC_KERNEL_H
11
+ #define EIGEN_MISC_KERNEL_H
12
+
13
+ namespace Eigen {
14
+
15
+ namespace internal {
16
+
17
+ /** \class kernel_retval_base
18
+ *
19
+ */
20
+ template<typename DecompositionType>
21
+ struct traits<kernel_retval_base<DecompositionType> >
22
+ {
23
+ typedef typename DecompositionType::MatrixType MatrixType;
24
+ typedef Matrix<
25
+ typename MatrixType::Scalar,
26
+ MatrixType::ColsAtCompileTime, // the number of rows in the "kernel matrix"
27
+ // is the number of cols of the original matrix
28
+ // so that the product "matrix * kernel = zero" makes sense
29
+ Dynamic, // we don't know at compile-time the dimension of the kernel
30
+ MatrixType::Options,
31
+ MatrixType::MaxColsAtCompileTime, // see explanation for 2nd template parameter
32
+ MatrixType::MaxColsAtCompileTime // the kernel is a subspace of the domain space,
33
+ // whose dimension is the number of columns of the original matrix
34
+ > ReturnType;
35
+ };
36
+
37
+ template<typename _DecompositionType> struct kernel_retval_base
38
+ : public ReturnByValue<kernel_retval_base<_DecompositionType> >
39
+ {
40
+ typedef _DecompositionType DecompositionType;
41
+ typedef ReturnByValue<kernel_retval_base> Base;
42
+ typedef typename Base::Index Index;
43
+
44
+ kernel_retval_base(const DecompositionType& dec)
45
+ : m_dec(dec),
46
+ m_rank(dec.rank()),
47
+ m_cols(m_rank==dec.cols() ? 1 : dec.cols() - m_rank)
48
+ {}
49
+
50
+ inline Index rows() const { return m_dec.cols(); }
51
+ inline Index cols() const { return m_cols; }
52
+ inline Index rank() const { return m_rank; }
53
+ inline const DecompositionType& dec() const { return m_dec; }
54
+
55
+ template<typename Dest> inline void evalTo(Dest& dst) const
56
+ {
57
+ static_cast<const kernel_retval<DecompositionType>*>(this)->evalTo(dst);
58
+ }
59
+
60
+ protected:
61
+ const DecompositionType& m_dec;
62
+ Index m_rank, m_cols;
63
+ };
64
+
65
+ } // end namespace internal
66
+
67
+ #define EIGEN_MAKE_KERNEL_HELPERS(DecompositionType) \
68
+ typedef typename DecompositionType::MatrixType MatrixType; \
69
+ typedef typename MatrixType::Scalar Scalar; \
70
+ typedef typename MatrixType::RealScalar RealScalar; \
71
+ typedef typename MatrixType::Index Index; \
72
+ typedef Eigen::internal::kernel_retval_base<DecompositionType> Base; \
73
+ using Base::dec; \
74
+ using Base::rank; \
75
+ using Base::rows; \
76
+ using Base::cols; \
77
+ kernel_retval(const DecompositionType& dec) : Base(dec) {}
78
+
79
+ } // end namespace Eigen
80
+
81
+ #endif // EIGEN_MISC_KERNEL_H
@@ -0,0 +1,76 @@
1
+ // This file is part of Eigen, a lightweight C++ template library
2
+ // for linear algebra.
3
+ //
4
+ // Copyright (C) 2009 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_MISC_SOLVE_H
11
+ #define EIGEN_MISC_SOLVE_H
12
+
13
+ namespace Eigen {
14
+
15
+ namespace internal {
16
+
17
+ /** \class solve_retval_base
18
+ *
19
+ */
20
+ template<typename DecompositionType, typename Rhs>
21
+ struct traits<solve_retval_base<DecompositionType, Rhs> >
22
+ {
23
+ typedef typename DecompositionType::MatrixType MatrixType;
24
+ typedef Matrix<typename Rhs::Scalar,
25
+ MatrixType::ColsAtCompileTime,
26
+ Rhs::ColsAtCompileTime,
27
+ Rhs::PlainObject::Options,
28
+ MatrixType::MaxColsAtCompileTime,
29
+ Rhs::MaxColsAtCompileTime> ReturnType;
30
+ };
31
+
32
+ template<typename _DecompositionType, typename Rhs> struct solve_retval_base
33
+ : public ReturnByValue<solve_retval_base<_DecompositionType, Rhs> >
34
+ {
35
+ typedef typename remove_all<typename Rhs::Nested>::type RhsNestedCleaned;
36
+ typedef _DecompositionType DecompositionType;
37
+ typedef ReturnByValue<solve_retval_base> Base;
38
+ typedef typename Base::Index Index;
39
+
40
+ solve_retval_base(const DecompositionType& dec, const Rhs& rhs)
41
+ : m_dec(dec), m_rhs(rhs)
42
+ {}
43
+
44
+ inline Index rows() const { return m_dec.cols(); }
45
+ inline Index cols() const { return m_rhs.cols(); }
46
+ inline const DecompositionType& dec() const { return m_dec; }
47
+ inline const RhsNestedCleaned& rhs() const { return m_rhs; }
48
+
49
+ template<typename Dest> inline void evalTo(Dest& dst) const
50
+ {
51
+ static_cast<const solve_retval<DecompositionType,Rhs>*>(this)->evalTo(dst);
52
+ }
53
+
54
+ protected:
55
+ const DecompositionType& m_dec;
56
+ typename Rhs::Nested m_rhs;
57
+ };
58
+
59
+ } // end namespace internal
60
+
61
+ #define EIGEN_MAKE_SOLVE_HELPERS(DecompositionType,Rhs) \
62
+ typedef typename DecompositionType::MatrixType MatrixType; \
63
+ typedef typename MatrixType::Scalar Scalar; \
64
+ typedef typename MatrixType::RealScalar RealScalar; \
65
+ typedef typename MatrixType::Index Index; \
66
+ typedef Eigen::internal::solve_retval_base<DecompositionType,Rhs> Base; \
67
+ using Base::dec; \
68
+ using Base::rhs; \
69
+ using Base::rows; \
70
+ using Base::cols; \
71
+ solve_retval(const DecompositionType& dec, const Rhs& rhs) \
72
+ : Base(dec, rhs) {}
73
+
74
+ } // end namespace Eigen
75
+
76
+ #endif // EIGEN_MISC_SOLVE_H
@@ -0,0 +1,128 @@
1
+ // This file is part of Eigen, a lightweight C++ template library
2
+ // for linear algebra.
3
+ //
4
+ // Copyright (C) 2010 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_SPARSE_SOLVE_H
11
+ #define EIGEN_SPARSE_SOLVE_H
12
+
13
+ namespace Eigen {
14
+
15
+ namespace internal {
16
+
17
+ template<typename _DecompositionType, typename Rhs> struct sparse_solve_retval_base;
18
+ template<typename _DecompositionType, typename Rhs> struct sparse_solve_retval;
19
+
20
+ template<typename DecompositionType, typename Rhs>
21
+ struct traits<sparse_solve_retval_base<DecompositionType, Rhs> >
22
+ {
23
+ typedef typename DecompositionType::MatrixType MatrixType;
24
+ typedef SparseMatrix<typename Rhs::Scalar, Rhs::Options, typename Rhs::Index> ReturnType;
25
+ };
26
+
27
+ template<typename _DecompositionType, typename Rhs> struct sparse_solve_retval_base
28
+ : public ReturnByValue<sparse_solve_retval_base<_DecompositionType, Rhs> >
29
+ {
30
+ typedef typename remove_all<typename Rhs::Nested>::type RhsNestedCleaned;
31
+ typedef _DecompositionType DecompositionType;
32
+ typedef ReturnByValue<sparse_solve_retval_base> Base;
33
+ typedef typename Base::Index Index;
34
+
35
+ sparse_solve_retval_base(const DecompositionType& dec, const Rhs& rhs)
36
+ : m_dec(dec), m_rhs(rhs)
37
+ {}
38
+
39
+ inline Index rows() const { return m_dec.cols(); }
40
+ inline Index cols() const { return m_rhs.cols(); }
41
+ inline const DecompositionType& dec() const { return m_dec; }
42
+ inline const RhsNestedCleaned& rhs() const { return m_rhs; }
43
+
44
+ template<typename Dest> inline void evalTo(Dest& dst) const
45
+ {
46
+ static_cast<const sparse_solve_retval<DecompositionType,Rhs>*>(this)->evalTo(dst);
47
+ }
48
+
49
+ protected:
50
+ template<typename DestScalar, int DestOptions, typename DestIndex>
51
+ inline void defaultEvalTo(SparseMatrix<DestScalar,DestOptions,DestIndex>& dst) const
52
+ {
53
+ // we process the sparse rhs per block of NbColsAtOnce columns temporarily stored into a dense matrix.
54
+ static const int NbColsAtOnce = 4;
55
+ int rhsCols = m_rhs.cols();
56
+ int size = m_rhs.rows();
57
+ Eigen::Matrix<DestScalar,Dynamic,Dynamic> tmp(size,rhsCols);
58
+ Eigen::Matrix<DestScalar,Dynamic,Dynamic> tmpX(size,rhsCols);
59
+ for(int k=0; k<rhsCols; k+=NbColsAtOnce)
60
+ {
61
+ int actualCols = std::min<int>(rhsCols-k, NbColsAtOnce);
62
+ tmp.leftCols(actualCols) = m_rhs.middleCols(k,actualCols);
63
+ tmpX.leftCols(actualCols) = m_dec.solve(tmp.leftCols(actualCols));
64
+ dst.middleCols(k,actualCols) = tmpX.leftCols(actualCols).sparseView();
65
+ }
66
+ }
67
+ const DecompositionType& m_dec;
68
+ typename Rhs::Nested m_rhs;
69
+ };
70
+
71
+ #define EIGEN_MAKE_SPARSE_SOLVE_HELPERS(DecompositionType,Rhs) \
72
+ typedef typename DecompositionType::MatrixType MatrixType; \
73
+ typedef typename MatrixType::Scalar Scalar; \
74
+ typedef typename MatrixType::RealScalar RealScalar; \
75
+ typedef typename MatrixType::Index Index; \
76
+ typedef Eigen::internal::sparse_solve_retval_base<DecompositionType,Rhs> Base; \
77
+ using Base::dec; \
78
+ using Base::rhs; \
79
+ using Base::rows; \
80
+ using Base::cols; \
81
+ sparse_solve_retval(const DecompositionType& dec, const Rhs& rhs) \
82
+ : Base(dec, rhs) {}
83
+
84
+
85
+
86
+ template<typename DecompositionType, typename Rhs, typename Guess> struct solve_retval_with_guess;
87
+
88
+ template<typename DecompositionType, typename Rhs, typename Guess>
89
+ struct traits<solve_retval_with_guess<DecompositionType, Rhs, Guess> >
90
+ {
91
+ typedef typename DecompositionType::MatrixType MatrixType;
92
+ typedef Matrix<typename Rhs::Scalar,
93
+ MatrixType::ColsAtCompileTime,
94
+ Rhs::ColsAtCompileTime,
95
+ Rhs::PlainObject::Options,
96
+ MatrixType::MaxColsAtCompileTime,
97
+ Rhs::MaxColsAtCompileTime> ReturnType;
98
+ };
99
+
100
+ template<typename DecompositionType, typename Rhs, typename Guess> struct solve_retval_with_guess
101
+ : public ReturnByValue<solve_retval_with_guess<DecompositionType, Rhs, Guess> >
102
+ {
103
+ typedef typename DecompositionType::Index Index;
104
+
105
+ solve_retval_with_guess(const DecompositionType& dec, const Rhs& rhs, const Guess& guess)
106
+ : m_dec(dec), m_rhs(rhs), m_guess(guess)
107
+ {}
108
+
109
+ inline Index rows() const { return m_dec.cols(); }
110
+ inline Index cols() const { return m_rhs.cols(); }
111
+
112
+ template<typename Dest> inline void evalTo(Dest& dst) const
113
+ {
114
+ dst = m_guess;
115
+ m_dec._solveWithGuess(m_rhs,dst);
116
+ }
117
+
118
+ protected:
119
+ const DecompositionType& m_dec;
120
+ const typename Rhs::Nested m_rhs;
121
+ const typename Guess::Nested m_guess;
122
+ };
123
+
124
+ } // namepsace internal
125
+
126
+ } // end namespace Eigen
127
+
128
+ #endif // EIGEN_SPARSE_SOLVE_H
@@ -0,0 +1,658 @@
1
+ #ifndef BLAS_H
2
+ #define BLAS_H
3
+
4
+ #ifdef __cplusplus
5
+ extern "C"
6
+ {
7
+ #endif
8
+
9
+ #define BLASFUNC(FUNC) FUNC##_
10
+
11
+ #ifdef __WIN64__
12
+ typedef long long BLASLONG;
13
+ typedef unsigned long long BLASULONG;
14
+ #else
15
+ typedef long BLASLONG;
16
+ typedef unsigned long BLASULONG;
17
+ #endif
18
+
19
+ int BLASFUNC(xerbla)(const char *, int *info, int);
20
+
21
+ float BLASFUNC(sdot) (int *, float *, int *, float *, int *);
22
+ float BLASFUNC(sdsdot)(int *, float *, float *, int *, float *, int *);
23
+
24
+ double BLASFUNC(dsdot) (int *, float *, int *, float *, int *);
25
+ double BLASFUNC(ddot) (int *, double *, int *, double *, int *);
26
+ double BLASFUNC(qdot) (int *, double *, int *, double *, int *);
27
+
28
+ int BLASFUNC(cdotuw) (int *, float *, int *, float *, int *, float*);
29
+ int BLASFUNC(cdotcw) (int *, float *, int *, float *, int *, float*);
30
+ int BLASFUNC(zdotuw) (int *, double *, int *, double *, int *, double*);
31
+ int BLASFUNC(zdotcw) (int *, double *, int *, double *, int *, double*);
32
+
33
+ int BLASFUNC(saxpy) (int *, float *, float *, int *, float *, int *);
34
+ int BLASFUNC(daxpy) (int *, double *, double *, int *, double *, int *);
35
+ int BLASFUNC(qaxpy) (int *, double *, double *, int *, double *, int *);
36
+ int BLASFUNC(caxpy) (int *, float *, float *, int *, float *, int *);
37
+ int BLASFUNC(zaxpy) (int *, double *, double *, int *, double *, int *);
38
+ int BLASFUNC(xaxpy) (int *, double *, double *, int *, double *, int *);
39
+ int BLASFUNC(caxpyc)(int *, float *, float *, int *, float *, int *);
40
+ int BLASFUNC(zaxpyc)(int *, double *, double *, int *, double *, int *);
41
+ int BLASFUNC(xaxpyc)(int *, double *, double *, int *, double *, int *);
42
+
43
+ int BLASFUNC(scopy) (int *, float *, int *, float *, int *);
44
+ int BLASFUNC(dcopy) (int *, double *, int *, double *, int *);
45
+ int BLASFUNC(qcopy) (int *, double *, int *, double *, int *);
46
+ int BLASFUNC(ccopy) (int *, float *, int *, float *, int *);
47
+ int BLASFUNC(zcopy) (int *, double *, int *, double *, int *);
48
+ int BLASFUNC(xcopy) (int *, double *, int *, double *, int *);
49
+
50
+ int BLASFUNC(sswap) (int *, float *, int *, float *, int *);
51
+ int BLASFUNC(dswap) (int *, double *, int *, double *, int *);
52
+ int BLASFUNC(qswap) (int *, double *, int *, double *, int *);
53
+ int BLASFUNC(cswap) (int *, float *, int *, float *, int *);
54
+ int BLASFUNC(zswap) (int *, double *, int *, double *, int *);
55
+ int BLASFUNC(xswap) (int *, double *, int *, double *, int *);
56
+
57
+ float BLASFUNC(sasum) (int *, float *, int *);
58
+ float BLASFUNC(scasum)(int *, float *, int *);
59
+ double BLASFUNC(dasum) (int *, double *, int *);
60
+ double BLASFUNC(qasum) (int *, double *, int *);
61
+ double BLASFUNC(dzasum)(int *, double *, int *);
62
+ double BLASFUNC(qxasum)(int *, double *, int *);
63
+
64
+ int BLASFUNC(isamax)(int *, float *, int *);
65
+ int BLASFUNC(idamax)(int *, double *, int *);
66
+ int BLASFUNC(iqamax)(int *, double *, int *);
67
+ int BLASFUNC(icamax)(int *, float *, int *);
68
+ int BLASFUNC(izamax)(int *, double *, int *);
69
+ int BLASFUNC(ixamax)(int *, double *, int *);
70
+
71
+ int BLASFUNC(ismax) (int *, float *, int *);
72
+ int BLASFUNC(idmax) (int *, double *, int *);
73
+ int BLASFUNC(iqmax) (int *, double *, int *);
74
+ int BLASFUNC(icmax) (int *, float *, int *);
75
+ int BLASFUNC(izmax) (int *, double *, int *);
76
+ int BLASFUNC(ixmax) (int *, double *, int *);
77
+
78
+ int BLASFUNC(isamin)(int *, float *, int *);
79
+ int BLASFUNC(idamin)(int *, double *, int *);
80
+ int BLASFUNC(iqamin)(int *, double *, int *);
81
+ int BLASFUNC(icamin)(int *, float *, int *);
82
+ int BLASFUNC(izamin)(int *, double *, int *);
83
+ int BLASFUNC(ixamin)(int *, double *, int *);
84
+
85
+ int BLASFUNC(ismin)(int *, float *, int *);
86
+ int BLASFUNC(idmin)(int *, double *, int *);
87
+ int BLASFUNC(iqmin)(int *, double *, int *);
88
+ int BLASFUNC(icmin)(int *, float *, int *);
89
+ int BLASFUNC(izmin)(int *, double *, int *);
90
+ int BLASFUNC(ixmin)(int *, double *, int *);
91
+
92
+ float BLASFUNC(samax) (int *, float *, int *);
93
+ double BLASFUNC(damax) (int *, double *, int *);
94
+ double BLASFUNC(qamax) (int *, double *, int *);
95
+ float BLASFUNC(scamax)(int *, float *, int *);
96
+ double BLASFUNC(dzamax)(int *, double *, int *);
97
+ double BLASFUNC(qxamax)(int *, double *, int *);
98
+
99
+ float BLASFUNC(samin) (int *, float *, int *);
100
+ double BLASFUNC(damin) (int *, double *, int *);
101
+ double BLASFUNC(qamin) (int *, double *, int *);
102
+ float BLASFUNC(scamin)(int *, float *, int *);
103
+ double BLASFUNC(dzamin)(int *, double *, int *);
104
+ double BLASFUNC(qxamin)(int *, double *, int *);
105
+
106
+ float BLASFUNC(smax) (int *, float *, int *);
107
+ double BLASFUNC(dmax) (int *, double *, int *);
108
+ double BLASFUNC(qmax) (int *, double *, int *);
109
+ float BLASFUNC(scmax) (int *, float *, int *);
110
+ double BLASFUNC(dzmax) (int *, double *, int *);
111
+ double BLASFUNC(qxmax) (int *, double *, int *);
112
+
113
+ float BLASFUNC(smin) (int *, float *, int *);
114
+ double BLASFUNC(dmin) (int *, double *, int *);
115
+ double BLASFUNC(qmin) (int *, double *, int *);
116
+ float BLASFUNC(scmin) (int *, float *, int *);
117
+ double BLASFUNC(dzmin) (int *, double *, int *);
118
+ double BLASFUNC(qxmin) (int *, double *, int *);
119
+
120
+ int BLASFUNC(sscal) (int *, float *, float *, int *);
121
+ int BLASFUNC(dscal) (int *, double *, double *, int *);
122
+ int BLASFUNC(qscal) (int *, double *, double *, int *);
123
+ int BLASFUNC(cscal) (int *, float *, float *, int *);
124
+ int BLASFUNC(zscal) (int *, double *, double *, int *);
125
+ int BLASFUNC(xscal) (int *, double *, double *, int *);
126
+ int BLASFUNC(csscal)(int *, float *, float *, int *);
127
+ int BLASFUNC(zdscal)(int *, double *, double *, int *);
128
+ int BLASFUNC(xqscal)(int *, double *, double *, int *);
129
+
130
+ float BLASFUNC(snrm2) (int *, float *, int *);
131
+ float BLASFUNC(scnrm2)(int *, float *, int *);
132
+
133
+ double BLASFUNC(dnrm2) (int *, double *, int *);
134
+ double BLASFUNC(qnrm2) (int *, double *, int *);
135
+ double BLASFUNC(dznrm2)(int *, double *, int *);
136
+ double BLASFUNC(qxnrm2)(int *, double *, int *);
137
+
138
+ int BLASFUNC(srot) (int *, float *, int *, float *, int *, float *, float *);
139
+ int BLASFUNC(drot) (int *, double *, int *, double *, int *, double *, double *);
140
+ int BLASFUNC(qrot) (int *, double *, int *, double *, int *, double *, double *);
141
+ int BLASFUNC(csrot) (int *, float *, int *, float *, int *, float *, float *);
142
+ int BLASFUNC(zdrot) (int *, double *, int *, double *, int *, double *, double *);
143
+ int BLASFUNC(xqrot) (int *, double *, int *, double *, int *, double *, double *);
144
+
145
+ int BLASFUNC(srotg) (float *, float *, float *, float *);
146
+ int BLASFUNC(drotg) (double *, double *, double *, double *);
147
+ int BLASFUNC(qrotg) (double *, double *, double *, double *);
148
+ int BLASFUNC(crotg) (float *, float *, float *, float *);
149
+ int BLASFUNC(zrotg) (double *, double *, double *, double *);
150
+ int BLASFUNC(xrotg) (double *, double *, double *, double *);
151
+
152
+ int BLASFUNC(srotmg)(float *, float *, float *, float *, float *);
153
+ int BLASFUNC(drotmg)(double *, double *, double *, double *, double *);
154
+
155
+ int BLASFUNC(srotm) (int *, float *, int *, float *, int *, float *);
156
+ int BLASFUNC(drotm) (int *, double *, int *, double *, int *, double *);
157
+ int BLASFUNC(qrotm) (int *, double *, int *, double *, int *, double *);
158
+
159
+ /* Level 2 routines */
160
+
161
+ int BLASFUNC(sger)(int *, int *, float *, float *, int *,
162
+ float *, int *, float *, int *);
163
+ int BLASFUNC(dger)(int *, int *, double *, double *, int *,
164
+ double *, int *, double *, int *);
165
+ int BLASFUNC(qger)(int *, int *, double *, double *, int *,
166
+ double *, int *, double *, int *);
167
+ int BLASFUNC(cgeru)(int *, int *, float *, float *, int *,
168
+ float *, int *, float *, int *);
169
+ int BLASFUNC(cgerc)(int *, int *, float *, float *, int *,
170
+ float *, int *, float *, int *);
171
+ int BLASFUNC(zgeru)(int *, int *, double *, double *, int *,
172
+ double *, int *, double *, int *);
173
+ int BLASFUNC(zgerc)(int *, int *, double *, double *, int *,
174
+ double *, int *, double *, int *);
175
+ int BLASFUNC(xgeru)(int *, int *, double *, double *, int *,
176
+ double *, int *, double *, int *);
177
+ int BLASFUNC(xgerc)(int *, int *, double *, double *, int *,
178
+ double *, int *, double *, int *);
179
+
180
+ int BLASFUNC(sgemv)(char *, int *, int *, float *, float *, int *,
181
+ float *, int *, float *, float *, int *);
182
+ int BLASFUNC(dgemv)(char *, int *, int *, double *, double *, int *,
183
+ double *, int *, double *, double *, int *);
184
+ int BLASFUNC(qgemv)(char *, int *, int *, double *, double *, int *,
185
+ double *, int *, double *, double *, int *);
186
+ int BLASFUNC(cgemv)(char *, int *, int *, float *, float *, int *,
187
+ float *, int *, float *, float *, int *);
188
+ int BLASFUNC(zgemv)(char *, int *, int *, double *, double *, int *,
189
+ double *, int *, double *, double *, int *);
190
+ int BLASFUNC(xgemv)(char *, int *, int *, double *, double *, int *,
191
+ double *, int *, double *, double *, int *);
192
+
193
+ int BLASFUNC(strsv) (char *, char *, char *, int *, float *, int *,
194
+ float *, int *);
195
+ int BLASFUNC(dtrsv) (char *, char *, char *, int *, double *, int *,
196
+ double *, int *);
197
+ int BLASFUNC(qtrsv) (char *, char *, char *, int *, double *, int *,
198
+ double *, int *);
199
+ int BLASFUNC(ctrsv) (char *, char *, char *, int *, float *, int *,
200
+ float *, int *);
201
+ int BLASFUNC(ztrsv) (char *, char *, char *, int *, double *, int *,
202
+ double *, int *);
203
+ int BLASFUNC(xtrsv) (char *, char *, char *, int *, double *, int *,
204
+ double *, int *);
205
+
206
+ int BLASFUNC(stpsv) (char *, char *, char *, int *, float *, float *, int *);
207
+ int BLASFUNC(dtpsv) (char *, char *, char *, int *, double *, double *, int *);
208
+ int BLASFUNC(qtpsv) (char *, char *, char *, int *, double *, double *, int *);
209
+ int BLASFUNC(ctpsv) (char *, char *, char *, int *, float *, float *, int *);
210
+ int BLASFUNC(ztpsv) (char *, char *, char *, int *, double *, double *, int *);
211
+ int BLASFUNC(xtpsv) (char *, char *, char *, int *, double *, double *, int *);
212
+
213
+ int BLASFUNC(strmv) (char *, char *, char *, int *, float *, int *,
214
+ float *, int *);
215
+ int BLASFUNC(dtrmv) (char *, char *, char *, int *, double *, int *,
216
+ double *, int *);
217
+ int BLASFUNC(qtrmv) (char *, char *, char *, int *, double *, int *,
218
+ double *, int *);
219
+ int BLASFUNC(ctrmv) (char *, char *, char *, int *, float *, int *,
220
+ float *, int *);
221
+ int BLASFUNC(ztrmv) (char *, char *, char *, int *, double *, int *,
222
+ double *, int *);
223
+ int BLASFUNC(xtrmv) (char *, char *, char *, int *, double *, int *,
224
+ double *, int *);
225
+
226
+ int BLASFUNC(stpmv) (char *, char *, char *, int *, float *, float *, int *);
227
+ int BLASFUNC(dtpmv) (char *, char *, char *, int *, double *, double *, int *);
228
+ int BLASFUNC(qtpmv) (char *, char *, char *, int *, double *, double *, int *);
229
+ int BLASFUNC(ctpmv) (char *, char *, char *, int *, float *, float *, int *);
230
+ int BLASFUNC(ztpmv) (char *, char *, char *, int *, double *, double *, int *);
231
+ int BLASFUNC(xtpmv) (char *, char *, char *, int *, double *, double *, int *);
232
+
233
+ int BLASFUNC(stbmv) (char *, char *, char *, int *, int *, float *, int *, float *, int *);
234
+ int BLASFUNC(dtbmv) (char *, char *, char *, int *, int *, double *, int *, double *, int *);
235
+ int BLASFUNC(qtbmv) (char *, char *, char *, int *, int *, double *, int *, double *, int *);
236
+ int BLASFUNC(ctbmv) (char *, char *, char *, int *, int *, float *, int *, float *, int *);
237
+ int BLASFUNC(ztbmv) (char *, char *, char *, int *, int *, double *, int *, double *, int *);
238
+ int BLASFUNC(xtbmv) (char *, char *, char *, int *, int *, double *, int *, double *, int *);
239
+
240
+ int BLASFUNC(stbsv) (char *, char *, char *, int *, int *, float *, int *, float *, int *);
241
+ int BLASFUNC(dtbsv) (char *, char *, char *, int *, int *, double *, int *, double *, int *);
242
+ int BLASFUNC(qtbsv) (char *, char *, char *, int *, int *, double *, int *, double *, int *);
243
+ int BLASFUNC(ctbsv) (char *, char *, char *, int *, int *, float *, int *, float *, int *);
244
+ int BLASFUNC(ztbsv) (char *, char *, char *, int *, int *, double *, int *, double *, int *);
245
+ int BLASFUNC(xtbsv) (char *, char *, char *, int *, int *, double *, int *, double *, int *);
246
+
247
+ int BLASFUNC(ssymv) (char *, int *, float *, float *, int *,
248
+ float *, int *, float *, float *, int *);
249
+ int BLASFUNC(dsymv) (char *, int *, double *, double *, int *,
250
+ double *, int *, double *, double *, int *);
251
+ int BLASFUNC(qsymv) (char *, int *, double *, double *, int *,
252
+ double *, int *, double *, double *, int *);
253
+ int BLASFUNC(csymv) (char *, int *, float *, float *, int *,
254
+ float *, int *, float *, float *, int *);
255
+ int BLASFUNC(zsymv) (char *, int *, double *, double *, int *,
256
+ double *, int *, double *, double *, int *);
257
+ int BLASFUNC(xsymv) (char *, int *, double *, double *, int *,
258
+ double *, int *, double *, double *, int *);
259
+
260
+ int BLASFUNC(sspmv) (char *, int *, float *, float *,
261
+ float *, int *, float *, float *, int *);
262
+ int BLASFUNC(dspmv) (char *, int *, double *, double *,
263
+ double *, int *, double *, double *, int *);
264
+ int BLASFUNC(qspmv) (char *, int *, double *, double *,
265
+ double *, int *, double *, double *, int *);
266
+ int BLASFUNC(cspmv) (char *, int *, float *, float *,
267
+ float *, int *, float *, float *, int *);
268
+ int BLASFUNC(zspmv) (char *, int *, double *, double *,
269
+ double *, int *, double *, double *, int *);
270
+ int BLASFUNC(xspmv) (char *, int *, double *, double *,
271
+ double *, int *, double *, double *, int *);
272
+
273
+ int BLASFUNC(ssyr) (char *, int *, float *, float *, int *,
274
+ float *, int *);
275
+ int BLASFUNC(dsyr) (char *, int *, double *, double *, int *,
276
+ double *, int *);
277
+ int BLASFUNC(qsyr) (char *, int *, double *, double *, int *,
278
+ double *, int *);
279
+ int BLASFUNC(csyr) (char *, int *, float *, float *, int *,
280
+ float *, int *);
281
+ int BLASFUNC(zsyr) (char *, int *, double *, double *, int *,
282
+ double *, int *);
283
+ int BLASFUNC(xsyr) (char *, int *, double *, double *, int *,
284
+ double *, int *);
285
+
286
+ int BLASFUNC(ssyr2) (char *, int *, float *,
287
+ float *, int *, float *, int *, float *, int *);
288
+ int BLASFUNC(dsyr2) (char *, int *, double *,
289
+ double *, int *, double *, int *, double *, int *);
290
+ int BLASFUNC(qsyr2) (char *, int *, double *,
291
+ double *, int *, double *, int *, double *, int *);
292
+ int BLASFUNC(csyr2) (char *, int *, float *,
293
+ float *, int *, float *, int *, float *, int *);
294
+ int BLASFUNC(zsyr2) (char *, int *, double *,
295
+ double *, int *, double *, int *, double *, int *);
296
+ int BLASFUNC(xsyr2) (char *, int *, double *,
297
+ double *, int *, double *, int *, double *, int *);
298
+
299
+ int BLASFUNC(sspr) (char *, int *, float *, float *, int *,
300
+ float *);
301
+ int BLASFUNC(dspr) (char *, int *, double *, double *, int *,
302
+ double *);
303
+ int BLASFUNC(qspr) (char *, int *, double *, double *, int *,
304
+ double *);
305
+ int BLASFUNC(cspr) (char *, int *, float *, float *, int *,
306
+ float *);
307
+ int BLASFUNC(zspr) (char *, int *, double *, double *, int *,
308
+ double *);
309
+ int BLASFUNC(xspr) (char *, int *, double *, double *, int *,
310
+ double *);
311
+
312
+ int BLASFUNC(sspr2) (char *, int *, float *,
313
+ float *, int *, float *, int *, float *);
314
+ int BLASFUNC(dspr2) (char *, int *, double *,
315
+ double *, int *, double *, int *, double *);
316
+ int BLASFUNC(qspr2) (char *, int *, double *,
317
+ double *, int *, double *, int *, double *);
318
+ int BLASFUNC(cspr2) (char *, int *, float *,
319
+ float *, int *, float *, int *, float *);
320
+ int BLASFUNC(zspr2) (char *, int *, double *,
321
+ double *, int *, double *, int *, double *);
322
+ int BLASFUNC(xspr2) (char *, int *, double *,
323
+ double *, int *, double *, int *, double *);
324
+
325
+ int BLASFUNC(cher) (char *, int *, float *, float *, int *,
326
+ float *, int *);
327
+ int BLASFUNC(zher) (char *, int *, double *, double *, int *,
328
+ double *, int *);
329
+ int BLASFUNC(xher) (char *, int *, double *, double *, int *,
330
+ double *, int *);
331
+
332
+ int BLASFUNC(chpr) (char *, int *, float *, float *, int *, float *);
333
+ int BLASFUNC(zhpr) (char *, int *, double *, double *, int *, double *);
334
+ int BLASFUNC(xhpr) (char *, int *, double *, double *, int *, double *);
335
+
336
+ int BLASFUNC(cher2) (char *, int *, float *,
337
+ float *, int *, float *, int *, float *, int *);
338
+ int BLASFUNC(zher2) (char *, int *, double *,
339
+ double *, int *, double *, int *, double *, int *);
340
+ int BLASFUNC(xher2) (char *, int *, double *,
341
+ double *, int *, double *, int *, double *, int *);
342
+
343
+ int BLASFUNC(chpr2) (char *, int *, float *,
344
+ float *, int *, float *, int *, float *);
345
+ int BLASFUNC(zhpr2) (char *, int *, double *,
346
+ double *, int *, double *, int *, double *);
347
+ int BLASFUNC(xhpr2) (char *, int *, double *,
348
+ double *, int *, double *, int *, double *);
349
+
350
+ int BLASFUNC(chemv) (char *, int *, float *, float *, int *,
351
+ float *, int *, float *, float *, int *);
352
+ int BLASFUNC(zhemv) (char *, int *, double *, double *, int *,
353
+ double *, int *, double *, double *, int *);
354
+ int BLASFUNC(xhemv) (char *, int *, double *, double *, int *,
355
+ double *, int *, double *, double *, int *);
356
+
357
+ int BLASFUNC(chpmv) (char *, int *, float *, float *,
358
+ float *, int *, float *, float *, int *);
359
+ int BLASFUNC(zhpmv) (char *, int *, double *, double *,
360
+ double *, int *, double *, double *, int *);
361
+ int BLASFUNC(xhpmv) (char *, int *, double *, double *,
362
+ double *, int *, double *, double *, int *);
363
+
364
+ int BLASFUNC(snorm)(char *, int *, int *, float *, int *);
365
+ int BLASFUNC(dnorm)(char *, int *, int *, double *, int *);
366
+ int BLASFUNC(cnorm)(char *, int *, int *, float *, int *);
367
+ int BLASFUNC(znorm)(char *, int *, int *, double *, int *);
368
+
369
+ int BLASFUNC(sgbmv)(char *, int *, int *, int *, int *, float *, float *, int *,
370
+ float *, int *, float *, float *, int *);
371
+ int BLASFUNC(dgbmv)(char *, int *, int *, int *, int *, double *, double *, int *,
372
+ double *, int *, double *, double *, int *);
373
+ int BLASFUNC(qgbmv)(char *, int *, int *, int *, int *, double *, double *, int *,
374
+ double *, int *, double *, double *, int *);
375
+ int BLASFUNC(cgbmv)(char *, int *, int *, int *, int *, float *, float *, int *,
376
+ float *, int *, float *, float *, int *);
377
+ int BLASFUNC(zgbmv)(char *, int *, int *, int *, int *, double *, double *, int *,
378
+ double *, int *, double *, double *, int *);
379
+ int BLASFUNC(xgbmv)(char *, int *, int *, int *, int *, double *, double *, int *,
380
+ double *, int *, double *, double *, int *);
381
+
382
+ int BLASFUNC(ssbmv)(char *, int *, int *, float *, float *, int *,
383
+ float *, int *, float *, float *, int *);
384
+ int BLASFUNC(dsbmv)(char *, int *, int *, double *, double *, int *,
385
+ double *, int *, double *, double *, int *);
386
+ int BLASFUNC(qsbmv)(char *, int *, int *, double *, double *, int *,
387
+ double *, int *, double *, double *, int *);
388
+ int BLASFUNC(csbmv)(char *, int *, int *, float *, float *, int *,
389
+ float *, int *, float *, float *, int *);
390
+ int BLASFUNC(zsbmv)(char *, int *, int *, double *, double *, int *,
391
+ double *, int *, double *, double *, int *);
392
+ int BLASFUNC(xsbmv)(char *, int *, int *, double *, double *, int *,
393
+ double *, int *, double *, double *, int *);
394
+
395
+ int BLASFUNC(chbmv)(char *, int *, int *, float *, float *, int *,
396
+ float *, int *, float *, float *, int *);
397
+ int BLASFUNC(zhbmv)(char *, int *, int *, double *, double *, int *,
398
+ double *, int *, double *, double *, int *);
399
+ int BLASFUNC(xhbmv)(char *, int *, int *, double *, double *, int *,
400
+ double *, int *, double *, double *, int *);
401
+
402
+ /* Level 3 routines */
403
+
404
+ int BLASFUNC(sgemm)(char *, char *, int *, int *, int *, float *,
405
+ float *, int *, float *, int *, float *, float *, int *);
406
+ int BLASFUNC(dgemm)(char *, char *, int *, int *, int *, double *,
407
+ double *, int *, double *, int *, double *, double *, int *);
408
+ int BLASFUNC(qgemm)(char *, char *, int *, int *, int *, double *,
409
+ double *, int *, double *, int *, double *, double *, int *);
410
+ int BLASFUNC(cgemm)(char *, char *, int *, int *, int *, float *,
411
+ float *, int *, float *, int *, float *, float *, int *);
412
+ int BLASFUNC(zgemm)(char *, char *, int *, int *, int *, double *,
413
+ double *, int *, double *, int *, double *, double *, int *);
414
+ int BLASFUNC(xgemm)(char *, char *, int *, int *, int *, double *,
415
+ double *, int *, double *, int *, double *, double *, int *);
416
+
417
+ int BLASFUNC(cgemm3m)(char *, char *, int *, int *, int *, float *,
418
+ float *, int *, float *, int *, float *, float *, int *);
419
+ int BLASFUNC(zgemm3m)(char *, char *, int *, int *, int *, double *,
420
+ double *, int *, double *, int *, double *, double *, int *);
421
+ int BLASFUNC(xgemm3m)(char *, char *, int *, int *, int *, double *,
422
+ double *, int *, double *, int *, double *, double *, int *);
423
+
424
+ int BLASFUNC(sge2mm)(char *, char *, char *, int *, int *,
425
+ float *, float *, int *, float *, int *,
426
+ float *, float *, int *);
427
+ int BLASFUNC(dge2mm)(char *, char *, char *, int *, int *,
428
+ double *, double *, int *, double *, int *,
429
+ double *, double *, int *);
430
+ int BLASFUNC(cge2mm)(char *, char *, char *, int *, int *,
431
+ float *, float *, int *, float *, int *,
432
+ float *, float *, int *);
433
+ int BLASFUNC(zge2mm)(char *, char *, char *, int *, int *,
434
+ double *, double *, int *, double *, int *,
435
+ double *, double *, int *);
436
+
437
+ int BLASFUNC(strsm)(char *, char *, char *, char *, int *, int *,
438
+ float *, float *, int *, float *, int *);
439
+ int BLASFUNC(dtrsm)(char *, char *, char *, char *, int *, int *,
440
+ double *, double *, int *, double *, int *);
441
+ int BLASFUNC(qtrsm)(char *, char *, char *, char *, int *, int *,
442
+ double *, double *, int *, double *, int *);
443
+ int BLASFUNC(ctrsm)(char *, char *, char *, char *, int *, int *,
444
+ float *, float *, int *, float *, int *);
445
+ int BLASFUNC(ztrsm)(char *, char *, char *, char *, int *, int *,
446
+ double *, double *, int *, double *, int *);
447
+ int BLASFUNC(xtrsm)(char *, char *, char *, char *, int *, int *,
448
+ double *, double *, int *, double *, int *);
449
+
450
+ int BLASFUNC(strmm)(char *, char *, char *, char *, int *, int *,
451
+ float *, float *, int *, float *, int *);
452
+ int BLASFUNC(dtrmm)(char *, char *, char *, char *, int *, int *,
453
+ double *, double *, int *, double *, int *);
454
+ int BLASFUNC(qtrmm)(char *, char *, char *, char *, int *, int *,
455
+ double *, double *, int *, double *, int *);
456
+ int BLASFUNC(ctrmm)(char *, char *, char *, char *, int *, int *,
457
+ float *, float *, int *, float *, int *);
458
+ int BLASFUNC(ztrmm)(char *, char *, char *, char *, int *, int *,
459
+ double *, double *, int *, double *, int *);
460
+ int BLASFUNC(xtrmm)(char *, char *, char *, char *, int *, int *,
461
+ double *, double *, int *, double *, int *);
462
+
463
+ int BLASFUNC(ssymm)(char *, char *, int *, int *, float *, float *, int *,
464
+ float *, int *, float *, float *, int *);
465
+ int BLASFUNC(dsymm)(char *, char *, int *, int *, double *, double *, int *,
466
+ double *, int *, double *, double *, int *);
467
+ int BLASFUNC(qsymm)(char *, char *, int *, int *, double *, double *, int *,
468
+ double *, int *, double *, double *, int *);
469
+ int BLASFUNC(csymm)(char *, char *, int *, int *, float *, float *, int *,
470
+ float *, int *, float *, float *, int *);
471
+ int BLASFUNC(zsymm)(char *, char *, int *, int *, double *, double *, int *,
472
+ double *, int *, double *, double *, int *);
473
+ int BLASFUNC(xsymm)(char *, char *, int *, int *, double *, double *, int *,
474
+ double *, int *, double *, double *, int *);
475
+
476
+ int BLASFUNC(csymm3m)(char *, char *, int *, int *, float *, float *, int *,
477
+ float *, int *, float *, float *, int *);
478
+ int BLASFUNC(zsymm3m)(char *, char *, int *, int *, double *, double *, int *,
479
+ double *, int *, double *, double *, int *);
480
+ int BLASFUNC(xsymm3m)(char *, char *, int *, int *, double *, double *, int *,
481
+ double *, int *, double *, double *, int *);
482
+
483
+ int BLASFUNC(ssyrk)(char *, char *, int *, int *, float *, float *, int *,
484
+ float *, float *, int *);
485
+ int BLASFUNC(dsyrk)(char *, char *, int *, int *, double *, double *, int *,
486
+ double *, double *, int *);
487
+ int BLASFUNC(qsyrk)(char *, char *, int *, int *, double *, double *, int *,
488
+ double *, double *, int *);
489
+ int BLASFUNC(csyrk)(char *, char *, int *, int *, float *, float *, int *,
490
+ float *, float *, int *);
491
+ int BLASFUNC(zsyrk)(char *, char *, int *, int *, double *, double *, int *,
492
+ double *, double *, int *);
493
+ int BLASFUNC(xsyrk)(char *, char *, int *, int *, double *, double *, int *,
494
+ double *, double *, int *);
495
+
496
+ int BLASFUNC(ssyr2k)(char *, char *, int *, int *, float *, float *, int *,
497
+ float *, int *, float *, float *, int *);
498
+ int BLASFUNC(dsyr2k)(char *, char *, int *, int *, double *, double *, int *,
499
+ double*, int *, double *, double *, int *);
500
+ int BLASFUNC(qsyr2k)(char *, char *, int *, int *, double *, double *, int *,
501
+ double*, int *, double *, double *, int *);
502
+ int BLASFUNC(csyr2k)(char *, char *, int *, int *, float *, float *, int *,
503
+ float *, int *, float *, float *, int *);
504
+ int BLASFUNC(zsyr2k)(char *, char *, int *, int *, double *, double *, int *,
505
+ double*, int *, double *, double *, int *);
506
+ int BLASFUNC(xsyr2k)(char *, char *, int *, int *, double *, double *, int *,
507
+ double*, int *, double *, double *, int *);
508
+
509
+ int BLASFUNC(chemm)(char *, char *, int *, int *, float *, float *, int *,
510
+ float *, int *, float *, float *, int *);
511
+ int BLASFUNC(zhemm)(char *, char *, int *, int *, double *, double *, int *,
512
+ double *, int *, double *, double *, int *);
513
+ int BLASFUNC(xhemm)(char *, char *, int *, int *, double *, double *, int *,
514
+ double *, int *, double *, double *, int *);
515
+
516
+ int BLASFUNC(chemm3m)(char *, char *, int *, int *, float *, float *, int *,
517
+ float *, int *, float *, float *, int *);
518
+ int BLASFUNC(zhemm3m)(char *, char *, int *, int *, double *, double *, int *,
519
+ double *, int *, double *, double *, int *);
520
+ int BLASFUNC(xhemm3m)(char *, char *, int *, int *, double *, double *, int *,
521
+ double *, int *, double *, double *, int *);
522
+
523
+ int BLASFUNC(cherk)(char *, char *, int *, int *, float *, float *, int *,
524
+ float *, float *, int *);
525
+ int BLASFUNC(zherk)(char *, char *, int *, int *, double *, double *, int *,
526
+ double *, double *, int *);
527
+ int BLASFUNC(xherk)(char *, char *, int *, int *, double *, double *, int *,
528
+ double *, double *, int *);
529
+
530
+ int BLASFUNC(cher2k)(char *, char *, int *, int *, float *, float *, int *,
531
+ float *, int *, float *, float *, int *);
532
+ int BLASFUNC(zher2k)(char *, char *, int *, int *, double *, double *, int *,
533
+ double*, int *, double *, double *, int *);
534
+ int BLASFUNC(xher2k)(char *, char *, int *, int *, double *, double *, int *,
535
+ double*, int *, double *, double *, int *);
536
+ int BLASFUNC(cher2m)(char *, char *, char *, int *, int *, float *, float *, int *,
537
+ float *, int *, float *, float *, int *);
538
+ int BLASFUNC(zher2m)(char *, char *, char *, int *, int *, double *, double *, int *,
539
+ double*, int *, double *, double *, int *);
540
+ int BLASFUNC(xher2m)(char *, char *, char *, int *, int *, double *, double *, int *,
541
+ double*, int *, double *, double *, int *);
542
+
543
+ int BLASFUNC(sgemt)(char *, int *, int *, float *, float *, int *,
544
+ float *, int *);
545
+ int BLASFUNC(dgemt)(char *, int *, int *, double *, double *, int *,
546
+ double *, int *);
547
+ int BLASFUNC(cgemt)(char *, int *, int *, float *, float *, int *,
548
+ float *, int *);
549
+ int BLASFUNC(zgemt)(char *, int *, int *, double *, double *, int *,
550
+ double *, int *);
551
+
552
+ int BLASFUNC(sgema)(char *, char *, int *, int *, float *,
553
+ float *, int *, float *, float *, int *, float *, int *);
554
+ int BLASFUNC(dgema)(char *, char *, int *, int *, double *,
555
+ double *, int *, double*, double *, int *, double*, int *);
556
+ int BLASFUNC(cgema)(char *, char *, int *, int *, float *,
557
+ float *, int *, float *, float *, int *, float *, int *);
558
+ int BLASFUNC(zgema)(char *, char *, int *, int *, double *,
559
+ double *, int *, double*, double *, int *, double*, int *);
560
+
561
+ int BLASFUNC(sgems)(char *, char *, int *, int *, float *,
562
+ float *, int *, float *, float *, int *, float *, int *);
563
+ int BLASFUNC(dgems)(char *, char *, int *, int *, double *,
564
+ double *, int *, double*, double *, int *, double*, int *);
565
+ int BLASFUNC(cgems)(char *, char *, int *, int *, float *,
566
+ float *, int *, float *, float *, int *, float *, int *);
567
+ int BLASFUNC(zgems)(char *, char *, int *, int *, double *,
568
+ double *, int *, double*, double *, int *, double*, int *);
569
+
570
+ int BLASFUNC(sgetf2)(int *, int *, float *, int *, int *, int *);
571
+ int BLASFUNC(dgetf2)(int *, int *, double *, int *, int *, int *);
572
+ int BLASFUNC(qgetf2)(int *, int *, double *, int *, int *, int *);
573
+ int BLASFUNC(cgetf2)(int *, int *, float *, int *, int *, int *);
574
+ int BLASFUNC(zgetf2)(int *, int *, double *, int *, int *, int *);
575
+ int BLASFUNC(xgetf2)(int *, int *, double *, int *, int *, int *);
576
+
577
+ int BLASFUNC(sgetrf)(int *, int *, float *, int *, int *, int *);
578
+ int BLASFUNC(dgetrf)(int *, int *, double *, int *, int *, int *);
579
+ int BLASFUNC(qgetrf)(int *, int *, double *, int *, int *, int *);
580
+ int BLASFUNC(cgetrf)(int *, int *, float *, int *, int *, int *);
581
+ int BLASFUNC(zgetrf)(int *, int *, double *, int *, int *, int *);
582
+ int BLASFUNC(xgetrf)(int *, int *, double *, int *, int *, int *);
583
+
584
+ int BLASFUNC(slaswp)(int *, float *, int *, int *, int *, int *, int *);
585
+ int BLASFUNC(dlaswp)(int *, double *, int *, int *, int *, int *, int *);
586
+ int BLASFUNC(qlaswp)(int *, double *, int *, int *, int *, int *, int *);
587
+ int BLASFUNC(claswp)(int *, float *, int *, int *, int *, int *, int *);
588
+ int BLASFUNC(zlaswp)(int *, double *, int *, int *, int *, int *, int *);
589
+ int BLASFUNC(xlaswp)(int *, double *, int *, int *, int *, int *, int *);
590
+
591
+ int BLASFUNC(sgetrs)(char *, int *, int *, float *, int *, int *, float *, int *, int *);
592
+ int BLASFUNC(dgetrs)(char *, int *, int *, double *, int *, int *, double *, int *, int *);
593
+ int BLASFUNC(qgetrs)(char *, int *, int *, double *, int *, int *, double *, int *, int *);
594
+ int BLASFUNC(cgetrs)(char *, int *, int *, float *, int *, int *, float *, int *, int *);
595
+ int BLASFUNC(zgetrs)(char *, int *, int *, double *, int *, int *, double *, int *, int *);
596
+ int BLASFUNC(xgetrs)(char *, int *, int *, double *, int *, int *, double *, int *, int *);
597
+
598
+ int BLASFUNC(sgesv)(int *, int *, float *, int *, int *, float *, int *, int *);
599
+ int BLASFUNC(dgesv)(int *, int *, double *, int *, int *, double*, int *, int *);
600
+ int BLASFUNC(qgesv)(int *, int *, double *, int *, int *, double*, int *, int *);
601
+ int BLASFUNC(cgesv)(int *, int *, float *, int *, int *, float *, int *, int *);
602
+ int BLASFUNC(zgesv)(int *, int *, double *, int *, int *, double*, int *, int *);
603
+ int BLASFUNC(xgesv)(int *, int *, double *, int *, int *, double*, int *, int *);
604
+
605
+ int BLASFUNC(spotf2)(char *, int *, float *, int *, int *);
606
+ int BLASFUNC(dpotf2)(char *, int *, double *, int *, int *);
607
+ int BLASFUNC(qpotf2)(char *, int *, double *, int *, int *);
608
+ int BLASFUNC(cpotf2)(char *, int *, float *, int *, int *);
609
+ int BLASFUNC(zpotf2)(char *, int *, double *, int *, int *);
610
+ int BLASFUNC(xpotf2)(char *, int *, double *, int *, int *);
611
+
612
+ int BLASFUNC(spotrf)(char *, int *, float *, int *, int *);
613
+ int BLASFUNC(dpotrf)(char *, int *, double *, int *, int *);
614
+ int BLASFUNC(qpotrf)(char *, int *, double *, int *, int *);
615
+ int BLASFUNC(cpotrf)(char *, int *, float *, int *, int *);
616
+ int BLASFUNC(zpotrf)(char *, int *, double *, int *, int *);
617
+ int BLASFUNC(xpotrf)(char *, int *, double *, int *, int *);
618
+
619
+ int BLASFUNC(slauu2)(char *, int *, float *, int *, int *);
620
+ int BLASFUNC(dlauu2)(char *, int *, double *, int *, int *);
621
+ int BLASFUNC(qlauu2)(char *, int *, double *, int *, int *);
622
+ int BLASFUNC(clauu2)(char *, int *, float *, int *, int *);
623
+ int BLASFUNC(zlauu2)(char *, int *, double *, int *, int *);
624
+ int BLASFUNC(xlauu2)(char *, int *, double *, int *, int *);
625
+
626
+ int BLASFUNC(slauum)(char *, int *, float *, int *, int *);
627
+ int BLASFUNC(dlauum)(char *, int *, double *, int *, int *);
628
+ int BLASFUNC(qlauum)(char *, int *, double *, int *, int *);
629
+ int BLASFUNC(clauum)(char *, int *, float *, int *, int *);
630
+ int BLASFUNC(zlauum)(char *, int *, double *, int *, int *);
631
+ int BLASFUNC(xlauum)(char *, int *, double *, int *, int *);
632
+
633
+ int BLASFUNC(strti2)(char *, char *, int *, float *, int *, int *);
634
+ int BLASFUNC(dtrti2)(char *, char *, int *, double *, int *, int *);
635
+ int BLASFUNC(qtrti2)(char *, char *, int *, double *, int *, int *);
636
+ int BLASFUNC(ctrti2)(char *, char *, int *, float *, int *, int *);
637
+ int BLASFUNC(ztrti2)(char *, char *, int *, double *, int *, int *);
638
+ int BLASFUNC(xtrti2)(char *, char *, int *, double *, int *, int *);
639
+
640
+ int BLASFUNC(strtri)(char *, char *, int *, float *, int *, int *);
641
+ int BLASFUNC(dtrtri)(char *, char *, int *, double *, int *, int *);
642
+ int BLASFUNC(qtrtri)(char *, char *, int *, double *, int *, int *);
643
+ int BLASFUNC(ctrtri)(char *, char *, int *, float *, int *, int *);
644
+ int BLASFUNC(ztrtri)(char *, char *, int *, double *, int *, int *);
645
+ int BLASFUNC(xtrtri)(char *, char *, int *, double *, int *, int *);
646
+
647
+ int BLASFUNC(spotri)(char *, int *, float *, int *, int *);
648
+ int BLASFUNC(dpotri)(char *, int *, double *, int *, int *);
649
+ int BLASFUNC(qpotri)(char *, int *, double *, int *, int *);
650
+ int BLASFUNC(cpotri)(char *, int *, float *, int *, int *);
651
+ int BLASFUNC(zpotri)(char *, int *, double *, int *, int *);
652
+ int BLASFUNC(xpotri)(char *, int *, double *, int *, int *);
653
+
654
+ #ifdef __cplusplus
655
+ }
656
+ #endif
657
+
658
+ #endif