robotpy-native-wpimath 2025.3.2__py3-none-win_amd64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (629) hide show
  1. native/wpimath/_init_robotpy_native_wpimath.py +22 -0
  2. native/wpimath/include/.clang-format +19 -0
  3. native/wpimath/include/.styleguide +17 -0
  4. native/wpimath/include/Eigen/Cholesky +43 -0
  5. native/wpimath/include/Eigen/Core +418 -0
  6. native/wpimath/include/Eigen/Eigenvalues +63 -0
  7. native/wpimath/include/Eigen/Geometry +61 -0
  8. native/wpimath/include/Eigen/Householder +31 -0
  9. native/wpimath/include/Eigen/IterativeLinearSolvers +52 -0
  10. native/wpimath/include/Eigen/Jacobi +33 -0
  11. native/wpimath/include/Eigen/LU +46 -0
  12. native/wpimath/include/Eigen/OrderingMethods +73 -0
  13. native/wpimath/include/Eigen/QR +48 -0
  14. native/wpimath/include/Eigen/SVD +56 -0
  15. native/wpimath/include/Eigen/SparseCholesky +40 -0
  16. native/wpimath/include/Eigen/SparseCore +70 -0
  17. native/wpimath/include/Eigen/SparseLU +50 -0
  18. native/wpimath/include/Eigen/SparseQR +38 -0
  19. native/wpimath/include/Eigen/src/Cholesky/InternalHeaderCheck.h +3 -0
  20. native/wpimath/include/Eigen/src/Cholesky/LDLT.h +649 -0
  21. native/wpimath/include/Eigen/src/Cholesky/LLT.h +514 -0
  22. native/wpimath/include/Eigen/src/Core/ArithmeticSequence.h +239 -0
  23. native/wpimath/include/Eigen/src/Core/Array.h +363 -0
  24. native/wpimath/include/Eigen/src/Core/ArrayBase.h +222 -0
  25. native/wpimath/include/Eigen/src/Core/ArrayWrapper.h +173 -0
  26. native/wpimath/include/Eigen/src/Core/Assign.h +80 -0
  27. native/wpimath/include/Eigen/src/Core/AssignEvaluator.h +986 -0
  28. native/wpimath/include/Eigen/src/Core/BandMatrix.h +338 -0
  29. native/wpimath/include/Eigen/src/Core/Block.h +439 -0
  30. native/wpimath/include/Eigen/src/Core/CommaInitializer.h +149 -0
  31. native/wpimath/include/Eigen/src/Core/ConditionEstimator.h +173 -0
  32. native/wpimath/include/Eigen/src/Core/CoreEvaluators.h +1688 -0
  33. native/wpimath/include/Eigen/src/Core/CoreIterators.h +141 -0
  34. native/wpimath/include/Eigen/src/Core/CwiseBinaryOp.h +166 -0
  35. native/wpimath/include/Eigen/src/Core/CwiseNullaryOp.h +971 -0
  36. native/wpimath/include/Eigen/src/Core/CwiseTernaryOp.h +171 -0
  37. native/wpimath/include/Eigen/src/Core/CwiseUnaryOp.h +91 -0
  38. native/wpimath/include/Eigen/src/Core/CwiseUnaryView.h +167 -0
  39. native/wpimath/include/Eigen/src/Core/DenseBase.h +659 -0
  40. native/wpimath/include/Eigen/src/Core/DenseCoeffsBase.h +569 -0
  41. native/wpimath/include/Eigen/src/Core/DenseStorage.h +578 -0
  42. native/wpimath/include/Eigen/src/Core/DeviceWrapper.h +155 -0
  43. native/wpimath/include/Eigen/src/Core/Diagonal.h +221 -0
  44. native/wpimath/include/Eigen/src/Core/DiagonalMatrix.h +414 -0
  45. native/wpimath/include/Eigen/src/Core/DiagonalProduct.h +30 -0
  46. native/wpimath/include/Eigen/src/Core/Dot.h +268 -0
  47. native/wpimath/include/Eigen/src/Core/EigenBase.h +149 -0
  48. native/wpimath/include/Eigen/src/Core/ForceAlignedAccess.h +131 -0
  49. native/wpimath/include/Eigen/src/Core/Fuzzy.h +132 -0
  50. native/wpimath/include/Eigen/src/Core/GeneralProduct.h +519 -0
  51. native/wpimath/include/Eigen/src/Core/GenericPacketMath.h +1532 -0
  52. native/wpimath/include/Eigen/src/Core/GlobalFunctions.h +230 -0
  53. native/wpimath/include/Eigen/src/Core/IO.h +233 -0
  54. native/wpimath/include/Eigen/src/Core/IndexedView.h +315 -0
  55. native/wpimath/include/Eigen/src/Core/InnerProduct.h +250 -0
  56. native/wpimath/include/Eigen/src/Core/InternalHeaderCheck.h +3 -0
  57. native/wpimath/include/Eigen/src/Core/Inverse.h +108 -0
  58. native/wpimath/include/Eigen/src/Core/Map.h +153 -0
  59. native/wpimath/include/Eigen/src/Core/MapBase.h +283 -0
  60. native/wpimath/include/Eigen/src/Core/MathFunctions.h +2006 -0
  61. native/wpimath/include/Eigen/src/Core/MathFunctionsImpl.h +262 -0
  62. native/wpimath/include/Eigen/src/Core/Matrix.h +523 -0
  63. native/wpimath/include/Eigen/src/Core/MatrixBase.h +542 -0
  64. native/wpimath/include/Eigen/src/Core/NestByValue.h +91 -0
  65. native/wpimath/include/Eigen/src/Core/NoAlias.h +102 -0
  66. native/wpimath/include/Eigen/src/Core/NumTraits.h +328 -0
  67. native/wpimath/include/Eigen/src/Core/PartialReduxEvaluator.h +209 -0
  68. native/wpimath/include/Eigen/src/Core/PermutationMatrix.h +552 -0
  69. native/wpimath/include/Eigen/src/Core/PlainObjectBase.h +1035 -0
  70. native/wpimath/include/Eigen/src/Core/Product.h +307 -0
  71. native/wpimath/include/Eigen/src/Core/ProductEvaluators.h +1156 -0
  72. native/wpimath/include/Eigen/src/Core/Random.h +207 -0
  73. native/wpimath/include/Eigen/src/Core/RandomImpl.h +255 -0
  74. native/wpimath/include/Eigen/src/Core/Redux.h +528 -0
  75. native/wpimath/include/Eigen/src/Core/Ref.h +383 -0
  76. native/wpimath/include/Eigen/src/Core/Replicate.h +130 -0
  77. native/wpimath/include/Eigen/src/Core/Reshaped.h +398 -0
  78. native/wpimath/include/Eigen/src/Core/ReturnByValue.h +115 -0
  79. native/wpimath/include/Eigen/src/Core/Reverse.h +202 -0
  80. native/wpimath/include/Eigen/src/Core/Select.h +156 -0
  81. native/wpimath/include/Eigen/src/Core/SelfAdjointView.h +329 -0
  82. native/wpimath/include/Eigen/src/Core/SelfCwiseBinaryOp.h +50 -0
  83. native/wpimath/include/Eigen/src/Core/SkewSymmetricMatrix3.h +382 -0
  84. native/wpimath/include/Eigen/src/Core/Solve.h +174 -0
  85. native/wpimath/include/Eigen/src/Core/SolveTriangular.h +237 -0
  86. native/wpimath/include/Eigen/src/Core/SolverBase.h +159 -0
  87. native/wpimath/include/Eigen/src/Core/StableNorm.h +217 -0
  88. native/wpimath/include/Eigen/src/Core/StlIterators.h +620 -0
  89. native/wpimath/include/Eigen/src/Core/Stride.h +114 -0
  90. native/wpimath/include/Eigen/src/Core/Swap.h +74 -0
  91. native/wpimath/include/Eigen/src/Core/Transpose.h +427 -0
  92. native/wpimath/include/Eigen/src/Core/Transpositions.h +323 -0
  93. native/wpimath/include/Eigen/src/Core/TriangularMatrix.h +900 -0
  94. native/wpimath/include/Eigen/src/Core/VectorBlock.h +83 -0
  95. native/wpimath/include/Eigen/src/Core/VectorwiseOp.h +713 -0
  96. native/wpimath/include/Eigen/src/Core/Visitor.h +789 -0
  97. native/wpimath/include/Eigen/src/Core/arch/AVX/Complex.h +530 -0
  98. native/wpimath/include/Eigen/src/Core/arch/AVX/MathFunctions.h +126 -0
  99. native/wpimath/include/Eigen/src/Core/arch/AVX/PacketMath.h +2883 -0
  100. native/wpimath/include/Eigen/src/Core/arch/AVX/TypeCasting.h +306 -0
  101. native/wpimath/include/Eigen/src/Core/arch/Default/BFloat16.h +855 -0
  102. native/wpimath/include/Eigen/src/Core/arch/Default/ConjHelper.h +128 -0
  103. native/wpimath/include/Eigen/src/Core/arch/Default/GenericPacketMathFunctions.h +2612 -0
  104. native/wpimath/include/Eigen/src/Core/arch/Default/GenericPacketMathFunctionsFwd.h +205 -0
  105. native/wpimath/include/Eigen/src/Core/arch/Default/Half.h +989 -0
  106. native/wpimath/include/Eigen/src/Core/arch/Default/Settings.h +47 -0
  107. native/wpimath/include/Eigen/src/Core/arch/NEON/Complex.h +752 -0
  108. native/wpimath/include/Eigen/src/Core/arch/NEON/GeneralBlockPanelKernel.h +243 -0
  109. native/wpimath/include/Eigen/src/Core/arch/NEON/MathFunctions.h +68 -0
  110. native/wpimath/include/Eigen/src/Core/arch/NEON/PacketMath.h +6177 -0
  111. native/wpimath/include/Eigen/src/Core/arch/NEON/TypeCasting.h +1642 -0
  112. native/wpimath/include/Eigen/src/Core/arch/NEON/UnaryFunctors.h +57 -0
  113. native/wpimath/include/Eigen/src/Core/arch/SSE/Complex.h +519 -0
  114. native/wpimath/include/Eigen/src/Core/arch/SSE/MathFunctions.h +88 -0
  115. native/wpimath/include/Eigen/src/Core/arch/SSE/PacketMath.h +2551 -0
  116. native/wpimath/include/Eigen/src/Core/arch/SSE/TypeCasting.h +230 -0
  117. native/wpimath/include/Eigen/src/Core/functors/AssignmentFunctors.h +181 -0
  118. native/wpimath/include/Eigen/src/Core/functors/BinaryFunctors.h +763 -0
  119. native/wpimath/include/Eigen/src/Core/functors/NullaryFunctors.h +263 -0
  120. native/wpimath/include/Eigen/src/Core/functors/StlFunctors.h +149 -0
  121. native/wpimath/include/Eigen/src/Core/functors/TernaryFunctors.h +52 -0
  122. native/wpimath/include/Eigen/src/Core/functors/UnaryFunctors.h +1416 -0
  123. native/wpimath/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h +3152 -0
  124. native/wpimath/include/Eigen/src/Core/products/GeneralMatrixMatrix.h +459 -0
  125. native/wpimath/include/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h +326 -0
  126. native/wpimath/include/Eigen/src/Core/products/GeneralMatrixVector.h +473 -0
  127. native/wpimath/include/Eigen/src/Core/products/Parallelizer.h +275 -0
  128. native/wpimath/include/Eigen/src/Core/products/SelfadjointMatrixMatrix.h +483 -0
  129. native/wpimath/include/Eigen/src/Core/products/SelfadjointMatrixVector.h +248 -0
  130. native/wpimath/include/Eigen/src/Core/products/SelfadjointProduct.h +133 -0
  131. native/wpimath/include/Eigen/src/Core/products/SelfadjointRank2Update.h +95 -0
  132. native/wpimath/include/Eigen/src/Core/products/TriangularMatrixMatrix.h +397 -0
  133. native/wpimath/include/Eigen/src/Core/products/TriangularMatrixVector.h +347 -0
  134. native/wpimath/include/Eigen/src/Core/products/TriangularSolverMatrix.h +388 -0
  135. native/wpimath/include/Eigen/src/Core/products/TriangularSolverVector.h +122 -0
  136. native/wpimath/include/Eigen/src/Core/util/Assert.h +158 -0
  137. native/wpimath/include/Eigen/src/Core/util/BlasUtil.h +622 -0
  138. native/wpimath/include/Eigen/src/Core/util/ConfigureVectorization.h +536 -0
  139. native/wpimath/include/Eigen/src/Core/util/Constants.h +595 -0
  140. native/wpimath/include/Eigen/src/Core/util/DisableStupidWarnings.h +152 -0
  141. native/wpimath/include/Eigen/src/Core/util/EmulateArray.h +270 -0
  142. native/wpimath/include/Eigen/src/Core/util/ForwardDeclarations.h +510 -0
  143. native/wpimath/include/Eigen/src/Core/util/IndexedViewHelper.h +487 -0
  144. native/wpimath/include/Eigen/src/Core/util/IntegralConstant.h +279 -0
  145. native/wpimath/include/Eigen/src/Core/util/Macros.h +1305 -0
  146. native/wpimath/include/Eigen/src/Core/util/MaxSizeVector.h +139 -0
  147. native/wpimath/include/Eigen/src/Core/util/Memory.h +1337 -0
  148. native/wpimath/include/Eigen/src/Core/util/Meta.h +753 -0
  149. native/wpimath/include/Eigen/src/Core/util/MoreMeta.h +630 -0
  150. native/wpimath/include/Eigen/src/Core/util/ReenableStupidWarnings.h +44 -0
  151. native/wpimath/include/Eigen/src/Core/util/ReshapedHelper.h +51 -0
  152. native/wpimath/include/Eigen/src/Core/util/Serializer.h +208 -0
  153. native/wpimath/include/Eigen/src/Core/util/StaticAssert.h +105 -0
  154. native/wpimath/include/Eigen/src/Core/util/SymbolicIndex.h +445 -0
  155. native/wpimath/include/Eigen/src/Core/util/XprHelper.h +1089 -0
  156. native/wpimath/include/Eigen/src/Eigenvalues/ComplexEigenSolver.h +315 -0
  157. native/wpimath/include/Eigen/src/Eigenvalues/ComplexSchur.h +442 -0
  158. native/wpimath/include/Eigen/src/Eigenvalues/EigenSolver.h +579 -0
  159. native/wpimath/include/Eigen/src/Eigenvalues/GeneralizedEigenSolver.h +402 -0
  160. native/wpimath/include/Eigen/src/Eigenvalues/GeneralizedSelfAdjointEigenSolver.h +212 -0
  161. native/wpimath/include/Eigen/src/Eigenvalues/HessenbergDecomposition.h +356 -0
  162. native/wpimath/include/Eigen/src/Eigenvalues/InternalHeaderCheck.h +3 -0
  163. native/wpimath/include/Eigen/src/Eigenvalues/MatrixBaseEigenvalues.h +142 -0
  164. native/wpimath/include/Eigen/src/Eigenvalues/RealQZ.h +587 -0
  165. native/wpimath/include/Eigen/src/Eigenvalues/RealSchur.h +519 -0
  166. native/wpimath/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h +850 -0
  167. native/wpimath/include/Eigen/src/Eigenvalues/Tridiagonalization.h +527 -0
  168. native/wpimath/include/Eigen/src/Geometry/AlignedBox.h +485 -0
  169. native/wpimath/include/Eigen/src/Geometry/AngleAxis.h +245 -0
  170. native/wpimath/include/Eigen/src/Geometry/EulerAngles.h +203 -0
  171. native/wpimath/include/Eigen/src/Geometry/Homogeneous.h +455 -0
  172. native/wpimath/include/Eigen/src/Geometry/Hyperplane.h +273 -0
  173. native/wpimath/include/Eigen/src/Geometry/InternalHeaderCheck.h +3 -0
  174. native/wpimath/include/Eigen/src/Geometry/OrthoMethods.h +259 -0
  175. native/wpimath/include/Eigen/src/Geometry/ParametrizedLine.h +232 -0
  176. native/wpimath/include/Eigen/src/Geometry/Quaternion.h +857 -0
  177. native/wpimath/include/Eigen/src/Geometry/Rotation2D.h +201 -0
  178. native/wpimath/include/Eigen/src/Geometry/RotationBase.h +209 -0
  179. native/wpimath/include/Eigen/src/Geometry/Scaling.h +195 -0
  180. native/wpimath/include/Eigen/src/Geometry/Transform.h +1484 -0
  181. native/wpimath/include/Eigen/src/Geometry/Translation.h +204 -0
  182. native/wpimath/include/Eigen/src/Geometry/Umeyama.h +165 -0
  183. native/wpimath/include/Eigen/src/Geometry/arch/Geometry_SIMD.h +154 -0
  184. native/wpimath/include/Eigen/src/Householder/BlockHouseholder.h +115 -0
  185. native/wpimath/include/Eigen/src/Householder/Householder.h +155 -0
  186. native/wpimath/include/Eigen/src/Householder/HouseholderSequence.h +502 -0
  187. native/wpimath/include/Eigen/src/Householder/InternalHeaderCheck.h +3 -0
  188. native/wpimath/include/Eigen/src/IterativeLinearSolvers/BasicPreconditioners.h +213 -0
  189. native/wpimath/include/Eigen/src/IterativeLinearSolvers/BiCGSTAB.h +202 -0
  190. native/wpimath/include/Eigen/src/IterativeLinearSolvers/ConjugateGradient.h +217 -0
  191. native/wpimath/include/Eigen/src/IterativeLinearSolvers/IncompleteCholesky.h +402 -0
  192. native/wpimath/include/Eigen/src/IterativeLinearSolvers/IncompleteLUT.h +421 -0
  193. native/wpimath/include/Eigen/src/IterativeLinearSolvers/InternalHeaderCheck.h +3 -0
  194. native/wpimath/include/Eigen/src/IterativeLinearSolvers/IterativeSolverBase.h +395 -0
  195. native/wpimath/include/Eigen/src/IterativeLinearSolvers/LeastSquareConjugateGradient.h +193 -0
  196. native/wpimath/include/Eigen/src/IterativeLinearSolvers/SolveWithGuess.h +111 -0
  197. native/wpimath/include/Eigen/src/Jacobi/InternalHeaderCheck.h +3 -0
  198. native/wpimath/include/Eigen/src/Jacobi/Jacobi.h +427 -0
  199. native/wpimath/include/Eigen/src/LU/Determinant.h +98 -0
  200. native/wpimath/include/Eigen/src/LU/FullPivLU.h +812 -0
  201. native/wpimath/include/Eigen/src/LU/InternalHeaderCheck.h +3 -0
  202. native/wpimath/include/Eigen/src/LU/InverseImpl.h +353 -0
  203. native/wpimath/include/Eigen/src/LU/PartialPivLU.h +575 -0
  204. native/wpimath/include/Eigen/src/LU/arch/InverseSize4.h +353 -0
  205. native/wpimath/include/Eigen/src/OrderingMethods/Amd.h +413 -0
  206. native/wpimath/include/Eigen/src/OrderingMethods/Eigen_Colamd.h +1690 -0
  207. native/wpimath/include/Eigen/src/OrderingMethods/InternalHeaderCheck.h +3 -0
  208. native/wpimath/include/Eigen/src/OrderingMethods/Ordering.h +148 -0
  209. native/wpimath/include/Eigen/src/QR/ColPivHouseholderQR.h +674 -0
  210. native/wpimath/include/Eigen/src/QR/CompleteOrthogonalDecomposition.h +648 -0
  211. native/wpimath/include/Eigen/src/QR/FullPivHouseholderQR.h +722 -0
  212. native/wpimath/include/Eigen/src/QR/HouseholderQR.h +532 -0
  213. native/wpimath/include/Eigen/src/QR/InternalHeaderCheck.h +3 -0
  214. native/wpimath/include/Eigen/src/SVD/BDCSVD.h +1453 -0
  215. native/wpimath/include/Eigen/src/SVD/InternalHeaderCheck.h +3 -0
  216. native/wpimath/include/Eigen/src/SVD/JacobiSVD.h +807 -0
  217. native/wpimath/include/Eigen/src/SVD/SVDBase.h +436 -0
  218. native/wpimath/include/Eigen/src/SVD/UpperBidiagonalization.h +379 -0
  219. native/wpimath/include/Eigen/src/SparseCholesky/InternalHeaderCheck.h +3 -0
  220. native/wpimath/include/Eigen/src/SparseCholesky/SimplicialCholesky.h +863 -0
  221. native/wpimath/include/Eigen/src/SparseCholesky/SimplicialCholesky_impl.h +158 -0
  222. native/wpimath/include/Eigen/src/SparseCore/AmbiVector.h +329 -0
  223. native/wpimath/include/Eigen/src/SparseCore/CompressedStorage.h +206 -0
  224. native/wpimath/include/Eigen/src/SparseCore/ConservativeSparseSparseProduct.h +308 -0
  225. native/wpimath/include/Eigen/src/SparseCore/InternalHeaderCheck.h +3 -0
  226. native/wpimath/include/Eigen/src/SparseCore/SparseAssign.h +279 -0
  227. native/wpimath/include/Eigen/src/SparseCore/SparseBlock.h +534 -0
  228. native/wpimath/include/Eigen/src/SparseCore/SparseColEtree.h +194 -0
  229. native/wpimath/include/Eigen/src/SparseCore/SparseCompressedBase.h +591 -0
  230. native/wpimath/include/Eigen/src/SparseCore/SparseCwiseBinaryOp.h +938 -0
  231. native/wpimath/include/Eigen/src/SparseCore/SparseCwiseUnaryOp.h +142 -0
  232. native/wpimath/include/Eigen/src/SparseCore/SparseDenseProduct.h +314 -0
  233. native/wpimath/include/Eigen/src/SparseCore/SparseDiagonalProduct.h +138 -0
  234. native/wpimath/include/Eigen/src/SparseCore/SparseDot.h +100 -0
  235. native/wpimath/include/Eigen/src/SparseCore/SparseFuzzy.h +31 -0
  236. native/wpimath/include/Eigen/src/SparseCore/SparseMap.h +295 -0
  237. native/wpimath/include/Eigen/src/SparseCore/SparseMatrix.h +1868 -0
  238. native/wpimath/include/Eigen/src/SparseCore/SparseMatrixBase.h +400 -0
  239. native/wpimath/include/Eigen/src/SparseCore/SparsePermutation.h +249 -0
  240. native/wpimath/include/Eigen/src/SparseCore/SparseProduct.h +178 -0
  241. native/wpimath/include/Eigen/src/SparseCore/SparseRedux.h +47 -0
  242. native/wpimath/include/Eigen/src/SparseCore/SparseRef.h +370 -0
  243. native/wpimath/include/Eigen/src/SparseCore/SparseSelfAdjointView.h +613 -0
  244. native/wpimath/include/Eigen/src/SparseCore/SparseSolverBase.h +115 -0
  245. native/wpimath/include/Eigen/src/SparseCore/SparseSparseProductWithPruning.h +184 -0
  246. native/wpimath/include/Eigen/src/SparseCore/SparseTranspose.h +83 -0
  247. native/wpimath/include/Eigen/src/SparseCore/SparseTriangularView.h +177 -0
  248. native/wpimath/include/Eigen/src/SparseCore/SparseUtil.h +209 -0
  249. native/wpimath/include/Eigen/src/SparseCore/SparseVector.h +532 -0
  250. native/wpimath/include/Eigen/src/SparseCore/SparseView.h +225 -0
  251. native/wpimath/include/Eigen/src/SparseCore/TriangularSolver.h +266 -0
  252. native/wpimath/include/Eigen/src/SparseLU/InternalHeaderCheck.h +3 -0
  253. native/wpimath/include/Eigen/src/SparseLU/SparseLU.h +969 -0
  254. native/wpimath/include/Eigen/src/SparseLU/SparseLUImpl.h +79 -0
  255. native/wpimath/include/Eigen/src/SparseLU/SparseLU_Memory.h +210 -0
  256. native/wpimath/include/Eigen/src/SparseLU/SparseLU_Structs.h +113 -0
  257. native/wpimath/include/Eigen/src/SparseLU/SparseLU_SupernodalMatrix.h +319 -0
  258. native/wpimath/include/Eigen/src/SparseLU/SparseLU_Utils.h +75 -0
  259. native/wpimath/include/Eigen/src/SparseLU/SparseLU_column_bmod.h +177 -0
  260. native/wpimath/include/Eigen/src/SparseLU/SparseLU_column_dfs.h +168 -0
  261. native/wpimath/include/Eigen/src/SparseLU/SparseLU_copy_to_ucol.h +106 -0
  262. native/wpimath/include/Eigen/src/SparseLU/SparseLU_heap_relax_snode.h +114 -0
  263. native/wpimath/include/Eigen/src/SparseLU/SparseLU_kernel_bmod.h +133 -0
  264. native/wpimath/include/Eigen/src/SparseLU/SparseLU_panel_bmod.h +215 -0
  265. native/wpimath/include/Eigen/src/SparseLU/SparseLU_panel_dfs.h +235 -0
  266. native/wpimath/include/Eigen/src/SparseLU/SparseLU_pivotL.h +136 -0
  267. native/wpimath/include/Eigen/src/SparseLU/SparseLU_pruneL.h +130 -0
  268. native/wpimath/include/Eigen/src/SparseLU/SparseLU_relax_snode.h +81 -0
  269. native/wpimath/include/Eigen/src/SparseQR/InternalHeaderCheck.h +3 -0
  270. native/wpimath/include/Eigen/src/SparseQR/SparseQR.h +704 -0
  271. native/wpimath/include/Eigen/src/ThreadPool/CoreThreadPoolDevice.h +327 -0
  272. native/wpimath/include/Eigen/src/misc/Image.h +80 -0
  273. native/wpimath/include/Eigen/src/misc/InternalHeaderCheck.h +3 -0
  274. native/wpimath/include/Eigen/src/misc/Kernel.h +77 -0
  275. native/wpimath/include/Eigen/src/misc/RealSvd2x2.h +53 -0
  276. native/wpimath/include/Eigen/src/plugins/ArrayCwiseBinaryOps.inc +347 -0
  277. native/wpimath/include/Eigen/src/plugins/ArrayCwiseUnaryOps.inc +548 -0
  278. native/wpimath/include/Eigen/src/plugins/BlockMethods.inc +1370 -0
  279. native/wpimath/include/Eigen/src/plugins/CommonCwiseBinaryOps.inc +133 -0
  280. native/wpimath/include/Eigen/src/plugins/CommonCwiseUnaryOps.inc +167 -0
  281. native/wpimath/include/Eigen/src/plugins/IndexedViewMethods.inc +192 -0
  282. native/wpimath/include/Eigen/src/plugins/InternalHeaderCheck.inc +3 -0
  283. native/wpimath/include/Eigen/src/plugins/MatrixCwiseBinaryOps.inc +331 -0
  284. native/wpimath/include/Eigen/src/plugins/MatrixCwiseUnaryOps.inc +121 -0
  285. native/wpimath/include/Eigen/src/plugins/ReshapedMethods.inc +133 -0
  286. native/wpimath/include/frc/ComputerVisionUtil.h +41 -0
  287. native/wpimath/include/frc/DARE.h +359 -0
  288. native/wpimath/include/frc/EigenCore.h +23 -0
  289. native/wpimath/include/frc/MathUtil.h +277 -0
  290. native/wpimath/include/frc/StateSpaceUtil.h +369 -0
  291. native/wpimath/include/frc/controller/ArmFeedforward.h +322 -0
  292. native/wpimath/include/frc/controller/BangBangController.h +143 -0
  293. native/wpimath/include/frc/controller/ControlAffinePlantInversionFeedforward.h +195 -0
  294. native/wpimath/include/frc/controller/DifferentialDriveAccelerationLimiter.h +98 -0
  295. native/wpimath/include/frc/controller/DifferentialDriveFeedforward.h +103 -0
  296. native/wpimath/include/frc/controller/DifferentialDriveWheelVoltages.h +25 -0
  297. native/wpimath/include/frc/controller/ElevatorFeedforward.h +294 -0
  298. native/wpimath/include/frc/controller/HolonomicDriveController.h +218 -0
  299. native/wpimath/include/frc/controller/ImplicitModelFollower.h +127 -0
  300. native/wpimath/include/frc/controller/LTVDifferentialDriveController.h +138 -0
  301. native/wpimath/include/frc/controller/LTVUnicycleController.h +135 -0
  302. native/wpimath/include/frc/controller/LinearPlantInversionFeedforward.h +162 -0
  303. native/wpimath/include/frc/controller/LinearQuadraticRegulator.h +320 -0
  304. native/wpimath/include/frc/controller/PIDController.h +460 -0
  305. native/wpimath/include/frc/controller/ProfiledPIDController.h +457 -0
  306. native/wpimath/include/frc/controller/RamseteController.h +193 -0
  307. native/wpimath/include/frc/controller/SimpleMotorFeedforward.h +260 -0
  308. native/wpimath/include/frc/controller/proto/ArmFeedforwardProto.h +21 -0
  309. native/wpimath/include/frc/controller/proto/DifferentialDriveFeedforwardProto.h +24 -0
  310. native/wpimath/include/frc/controller/proto/DifferentialDriveWheelVoltagesProto.h +25 -0
  311. native/wpimath/include/frc/controller/proto/ElevatorFeedforwardProto.h +21 -0
  312. native/wpimath/include/frc/controller/proto/SimpleMotorFeedforwardProto.h +60 -0
  313. native/wpimath/include/frc/controller/struct/ArmFeedforwardStruct.h +24 -0
  314. native/wpimath/include/frc/controller/struct/DifferentialDriveFeedforwardStruct.h +29 -0
  315. native/wpimath/include/frc/controller/struct/DifferentialDriveWheelVoltagesStruct.h +28 -0
  316. native/wpimath/include/frc/controller/struct/ElevatorFeedforwardStruct.h +27 -0
  317. native/wpimath/include/frc/controller/struct/SimpleMotorFeedforwardStruct.h +69 -0
  318. native/wpimath/include/frc/ct_matrix.h +389 -0
  319. native/wpimath/include/frc/estimator/AngleStatistics.h +128 -0
  320. native/wpimath/include/frc/estimator/DifferentialDrivePoseEstimator.h +134 -0
  321. native/wpimath/include/frc/estimator/DifferentialDrivePoseEstimator3d.h +139 -0
  322. native/wpimath/include/frc/estimator/ExtendedKalmanFilter.h +428 -0
  323. native/wpimath/include/frc/estimator/KalmanFilter.h +267 -0
  324. native/wpimath/include/frc/estimator/KalmanFilterLatencyCompensator.h +180 -0
  325. native/wpimath/include/frc/estimator/MecanumDrivePoseEstimator.h +85 -0
  326. native/wpimath/include/frc/estimator/MecanumDrivePoseEstimator3d.h +90 -0
  327. native/wpimath/include/frc/estimator/MerweScaledSigmaPoints.h +131 -0
  328. native/wpimath/include/frc/estimator/PoseEstimator.h +440 -0
  329. native/wpimath/include/frc/estimator/PoseEstimator3d.h +451 -0
  330. native/wpimath/include/frc/estimator/SteadyStateKalmanFilter.h +241 -0
  331. native/wpimath/include/frc/estimator/SwerveDrivePoseEstimator.h +98 -0
  332. native/wpimath/include/frc/estimator/SwerveDrivePoseEstimator3d.h +104 -0
  333. native/wpimath/include/frc/estimator/UnscentedKalmanFilter.h +496 -0
  334. native/wpimath/include/frc/estimator/UnscentedTransform.h +101 -0
  335. native/wpimath/include/frc/filter/Debouncer.h +94 -0
  336. native/wpimath/include/frc/filter/LinearFilter.h +410 -0
  337. native/wpimath/include/frc/filter/MedianFilter.h +85 -0
  338. native/wpimath/include/frc/filter/SlewRateLimiter.h +101 -0
  339. native/wpimath/include/frc/fmt/Eigen.h +51 -0
  340. native/wpimath/include/frc/geometry/CoordinateAxis.h +77 -0
  341. native/wpimath/include/frc/geometry/CoordinateSystem.h +143 -0
  342. native/wpimath/include/frc/geometry/Ellipse2d.h +214 -0
  343. native/wpimath/include/frc/geometry/Pose2d.h +370 -0
  344. native/wpimath/include/frc/geometry/Pose3d.h +468 -0
  345. native/wpimath/include/frc/geometry/Quaternion.h +338 -0
  346. native/wpimath/include/frc/geometry/Rectangle2d.h +210 -0
  347. native/wpimath/include/frc/geometry/Rotation2d.h +262 -0
  348. native/wpimath/include/frc/geometry/Rotation3d.h +453 -0
  349. native/wpimath/include/frc/geometry/Transform2d.h +186 -0
  350. native/wpimath/include/frc/geometry/Transform3d.h +211 -0
  351. native/wpimath/include/frc/geometry/Translation2d.h +274 -0
  352. native/wpimath/include/frc/geometry/Translation3d.h +262 -0
  353. native/wpimath/include/frc/geometry/Twist2d.h +64 -0
  354. native/wpimath/include/frc/geometry/Twist3d.h +83 -0
  355. native/wpimath/include/frc/geometry/proto/Ellipse2dProto.h +20 -0
  356. native/wpimath/include/frc/geometry/proto/Pose2dProto.h +21 -0
  357. native/wpimath/include/frc/geometry/proto/Pose3dProto.h +20 -0
  358. native/wpimath/include/frc/geometry/proto/QuaternionProto.h +20 -0
  359. native/wpimath/include/frc/geometry/proto/Rectangle2dProto.h +20 -0
  360. native/wpimath/include/frc/geometry/proto/Rotation2dProto.h +21 -0
  361. native/wpimath/include/frc/geometry/proto/Rotation3dProto.h +20 -0
  362. native/wpimath/include/frc/geometry/proto/Transform2dProto.h +20 -0
  363. native/wpimath/include/frc/geometry/proto/Transform3dProto.h +20 -0
  364. native/wpimath/include/frc/geometry/proto/Translation2dProto.h +21 -0
  365. native/wpimath/include/frc/geometry/proto/Translation3dProto.h +20 -0
  366. native/wpimath/include/frc/geometry/proto/Twist2dProto.h +20 -0
  367. native/wpimath/include/frc/geometry/proto/Twist3dProto.h +20 -0
  368. native/wpimath/include/frc/geometry/struct/Ellipse2dStruct.h +31 -0
  369. native/wpimath/include/frc/geometry/struct/Pose2dStruct.h +33 -0
  370. native/wpimath/include/frc/geometry/struct/Pose3dStruct.h +33 -0
  371. native/wpimath/include/frc/geometry/struct/QuaternionStruct.h +24 -0
  372. native/wpimath/include/frc/geometry/struct/Rectangle2dStruct.h +31 -0
  373. native/wpimath/include/frc/geometry/struct/Rotation2dStruct.h +22 -0
  374. native/wpimath/include/frc/geometry/struct/Rotation3dStruct.h +29 -0
  375. native/wpimath/include/frc/geometry/struct/Transform2dStruct.h +33 -0
  376. native/wpimath/include/frc/geometry/struct/Transform3dStruct.h +33 -0
  377. native/wpimath/include/frc/geometry/struct/Translation2dStruct.h +22 -0
  378. native/wpimath/include/frc/geometry/struct/Translation3dStruct.h +24 -0
  379. native/wpimath/include/frc/geometry/struct/Twist2dStruct.h +24 -0
  380. native/wpimath/include/frc/geometry/struct/Twist3dStruct.h +24 -0
  381. native/wpimath/include/frc/interpolation/TimeInterpolatableBuffer.h +175 -0
  382. native/wpimath/include/frc/kinematics/ChassisSpeeds.h +291 -0
  383. native/wpimath/include/frc/kinematics/DifferentialDriveKinematics.h +108 -0
  384. native/wpimath/include/frc/kinematics/DifferentialDriveOdometry.h +87 -0
  385. native/wpimath/include/frc/kinematics/DifferentialDriveOdometry3d.h +87 -0
  386. native/wpimath/include/frc/kinematics/DifferentialDriveWheelPositions.h +46 -0
  387. native/wpimath/include/frc/kinematics/DifferentialDriveWheelSpeeds.h +126 -0
  388. native/wpimath/include/frc/kinematics/Kinematics.h +79 -0
  389. native/wpimath/include/frc/kinematics/MecanumDriveKinematics.h +204 -0
  390. native/wpimath/include/frc/kinematics/MecanumDriveOdometry.h +48 -0
  391. native/wpimath/include/frc/kinematics/MecanumDriveOdometry3d.h +48 -0
  392. native/wpimath/include/frc/kinematics/MecanumDriveWheelPositions.h +57 -0
  393. native/wpimath/include/frc/kinematics/MecanumDriveWheelSpeeds.h +148 -0
  394. native/wpimath/include/frc/kinematics/Odometry.h +143 -0
  395. native/wpimath/include/frc/kinematics/Odometry3d.h +152 -0
  396. native/wpimath/include/frc/kinematics/SwerveDriveKinematics.h +462 -0
  397. native/wpimath/include/frc/kinematics/SwerveDriveOdometry.h +62 -0
  398. native/wpimath/include/frc/kinematics/SwerveDriveOdometry3d.h +70 -0
  399. native/wpimath/include/frc/kinematics/SwerveModulePosition.h +49 -0
  400. native/wpimath/include/frc/kinematics/SwerveModuleState.h +90 -0
  401. native/wpimath/include/frc/kinematics/proto/ChassisSpeedsProto.h +20 -0
  402. native/wpimath/include/frc/kinematics/proto/DifferentialDriveKinematicsProto.h +22 -0
  403. native/wpimath/include/frc/kinematics/proto/DifferentialDriveWheelPositionsProto.h +24 -0
  404. native/wpimath/include/frc/kinematics/proto/DifferentialDriveWheelSpeedsProto.h +23 -0
  405. native/wpimath/include/frc/kinematics/proto/MecanumDriveKinematicsProto.h +21 -0
  406. native/wpimath/include/frc/kinematics/proto/MecanumDriveWheelPositionsProto.h +22 -0
  407. native/wpimath/include/frc/kinematics/proto/MecanumDriveWheelSpeedsProto.h +22 -0
  408. native/wpimath/include/frc/kinematics/proto/SwerveDriveKinematicsProto.h +46 -0
  409. native/wpimath/include/frc/kinematics/proto/SwerveModulePositionProto.h +21 -0
  410. native/wpimath/include/frc/kinematics/proto/SwerveModuleStateProto.h +20 -0
  411. native/wpimath/include/frc/kinematics/struct/ChassisSpeedsStruct.h +24 -0
  412. native/wpimath/include/frc/kinematics/struct/DifferentialDriveKinematicsStruct.h +25 -0
  413. native/wpimath/include/frc/kinematics/struct/DifferentialDriveWheelPositionsStruct.h +28 -0
  414. native/wpimath/include/frc/kinematics/struct/DifferentialDriveWheelSpeedsStruct.h +28 -0
  415. native/wpimath/include/frc/kinematics/struct/MecanumDriveKinematicsStruct.h +35 -0
  416. native/wpimath/include/frc/kinematics/struct/MecanumDriveWheelPositionsStruct.h +28 -0
  417. native/wpimath/include/frc/kinematics/struct/MecanumDriveWheelSpeedsStruct.h +28 -0
  418. native/wpimath/include/frc/kinematics/struct/SwerveDriveKinematicsStruct.h +49 -0
  419. native/wpimath/include/frc/kinematics/struct/SwerveModulePositionStruct.h +34 -0
  420. native/wpimath/include/frc/kinematics/struct/SwerveModuleStateStruct.h +34 -0
  421. native/wpimath/include/frc/optimization/SimulatedAnnealing.h +101 -0
  422. native/wpimath/include/frc/path/TravelingSalesman.h +179 -0
  423. native/wpimath/include/frc/proto/MatrixProto.h +71 -0
  424. native/wpimath/include/frc/proto/VectorProto.h +64 -0
  425. native/wpimath/include/frc/spline/CubicHermiteSpline.h +151 -0
  426. native/wpimath/include/frc/spline/QuinticHermiteSpline.h +158 -0
  427. native/wpimath/include/frc/spline/Spline.h +150 -0
  428. native/wpimath/include/frc/spline/SplineHelper.h +369 -0
  429. native/wpimath/include/frc/spline/SplineParameterizer.h +151 -0
  430. native/wpimath/include/frc/spline/proto/CubicHermiteSplineProto.h +20 -0
  431. native/wpimath/include/frc/spline/proto/QuinticHermiteSplineProto.h +21 -0
  432. native/wpimath/include/frc/spline/struct/CubicHermiteSplineStruct.h +28 -0
  433. native/wpimath/include/frc/spline/struct/QuinticHermiteSplineStruct.h +28 -0
  434. native/wpimath/include/frc/struct/MatrixStruct.h +51 -0
  435. native/wpimath/include/frc/struct/VectorStruct.h +48 -0
  436. native/wpimath/include/frc/system/Discretization.h +119 -0
  437. native/wpimath/include/frc/system/LinearSystem.h +258 -0
  438. native/wpimath/include/frc/system/LinearSystemLoop.h +294 -0
  439. native/wpimath/include/frc/system/NumericalIntegration.h +240 -0
  440. native/wpimath/include/frc/system/NumericalJacobian.h +77 -0
  441. native/wpimath/include/frc/system/plant/DCMotor.h +262 -0
  442. native/wpimath/include/frc/system/plant/LinearSystemId.h +466 -0
  443. native/wpimath/include/frc/system/plant/proto/DCMotorProto.h +20 -0
  444. native/wpimath/include/frc/system/plant/struct/DCMotorStruct.h +26 -0
  445. native/wpimath/include/frc/system/proto/LinearSystemProto.h +88 -0
  446. native/wpimath/include/frc/system/struct/LinearSystemStruct.h +77 -0
  447. native/wpimath/include/frc/trajectory/ExponentialProfile.h +483 -0
  448. native/wpimath/include/frc/trajectory/Trajectory.h +276 -0
  449. native/wpimath/include/frc/trajectory/TrajectoryConfig.h +164 -0
  450. native/wpimath/include/frc/trajectory/TrajectoryGenerator.h +130 -0
  451. native/wpimath/include/frc/trajectory/TrajectoryParameterizer.h +106 -0
  452. native/wpimath/include/frc/trajectory/TrajectoryUtil.h +61 -0
  453. native/wpimath/include/frc/trajectory/TrapezoidProfile.h +324 -0
  454. native/wpimath/include/frc/trajectory/constraint/CentripetalAccelerationConstraint.h +61 -0
  455. native/wpimath/include/frc/trajectory/constraint/DifferentialDriveKinematicsConstraint.h +50 -0
  456. native/wpimath/include/frc/trajectory/constraint/DifferentialDriveVoltageConstraint.h +130 -0
  457. native/wpimath/include/frc/trajectory/constraint/EllipticalRegionConstraint.h +81 -0
  458. native/wpimath/include/frc/trajectory/constraint/MaxVelocityConstraint.h +47 -0
  459. native/wpimath/include/frc/trajectory/constraint/MecanumDriveKinematicsConstraint.h +53 -0
  460. native/wpimath/include/frc/trajectory/constraint/RectangularRegionConstraint.h +76 -0
  461. native/wpimath/include/frc/trajectory/constraint/SwerveDriveKinematicsConstraint.h +53 -0
  462. native/wpimath/include/frc/trajectory/constraint/TrajectoryConstraint.h +79 -0
  463. native/wpimath/include/frc/trajectory/proto/TrajectoryProto.h +20 -0
  464. native/wpimath/include/frc/trajectory/proto/TrajectoryStateProto.h +20 -0
  465. native/wpimath/include/gcem.hpp +104 -0
  466. native/wpimath/include/gcem_incl/abs.hpp +57 -0
  467. native/wpimath/include/gcem_incl/acos.hpp +96 -0
  468. native/wpimath/include/gcem_incl/acosh.hpp +80 -0
  469. native/wpimath/include/gcem_incl/asin.hpp +94 -0
  470. native/wpimath/include/gcem_incl/asinh.hpp +77 -0
  471. native/wpimath/include/gcem_incl/atan.hpp +229 -0
  472. native/wpimath/include/gcem_incl/atan2.hpp +100 -0
  473. native/wpimath/include/gcem_incl/atanh.hpp +91 -0
  474. native/wpimath/include/gcem_incl/beta.hpp +58 -0
  475. native/wpimath/include/gcem_incl/binomial_coef.hpp +96 -0
  476. native/wpimath/include/gcem_incl/ceil.hpp +142 -0
  477. native/wpimath/include/gcem_incl/copysign.hpp +53 -0
  478. native/wpimath/include/gcem_incl/cos.hpp +95 -0
  479. native/wpimath/include/gcem_incl/cosh.hpp +77 -0
  480. native/wpimath/include/gcem_incl/erf.hpp +203 -0
  481. native/wpimath/include/gcem_incl/erf_inv.hpp +268 -0
  482. native/wpimath/include/gcem_incl/exp.hpp +142 -0
  483. native/wpimath/include/gcem_incl/expm1.hpp +88 -0
  484. native/wpimath/include/gcem_incl/fabs.hpp +45 -0
  485. native/wpimath/include/gcem_incl/fabsf.hpp +45 -0
  486. native/wpimath/include/gcem_incl/fabsl.hpp +45 -0
  487. native/wpimath/include/gcem_incl/factorial.hpp +105 -0
  488. native/wpimath/include/gcem_incl/find_exponent.hpp +62 -0
  489. native/wpimath/include/gcem_incl/find_fraction.hpp +51 -0
  490. native/wpimath/include/gcem_incl/find_whole.hpp +51 -0
  491. native/wpimath/include/gcem_incl/floor.hpp +142 -0
  492. native/wpimath/include/gcem_incl/fmod.hpp +82 -0
  493. native/wpimath/include/gcem_incl/gcd.hpp +87 -0
  494. native/wpimath/include/gcem_incl/gcem_options.hpp +213 -0
  495. native/wpimath/include/gcem_incl/hypot.hpp +181 -0
  496. native/wpimath/include/gcem_incl/incomplete_beta.hpp +199 -0
  497. native/wpimath/include/gcem_incl/incomplete_beta_inv.hpp +357 -0
  498. native/wpimath/include/gcem_incl/incomplete_gamma.hpp +252 -0
  499. native/wpimath/include/gcem_incl/incomplete_gamma_inv.hpp +276 -0
  500. native/wpimath/include/gcem_incl/inv_sqrt.hpp +93 -0
  501. native/wpimath/include/gcem_incl/is_even.hpp +46 -0
  502. native/wpimath/include/gcem_incl/is_finite.hpp +83 -0
  503. native/wpimath/include/gcem_incl/is_inf.hpp +177 -0
  504. native/wpimath/include/gcem_incl/is_nan.hpp +85 -0
  505. native/wpimath/include/gcem_incl/is_odd.hpp +47 -0
  506. native/wpimath/include/gcem_incl/lbeta.hpp +47 -0
  507. native/wpimath/include/gcem_incl/lcm.hpp +70 -0
  508. native/wpimath/include/gcem_incl/lgamma.hpp +147 -0
  509. native/wpimath/include/gcem_incl/lmgamma.hpp +78 -0
  510. native/wpimath/include/gcem_incl/log.hpp +198 -0
  511. native/wpimath/include/gcem_incl/log10.hpp +71 -0
  512. native/wpimath/include/gcem_incl/log1p.hpp +92 -0
  513. native/wpimath/include/gcem_incl/log2.hpp +71 -0
  514. native/wpimath/include/gcem_incl/log_binomial_coef.hpp +70 -0
  515. native/wpimath/include/gcem_incl/mantissa.hpp +52 -0
  516. native/wpimath/include/gcem_incl/max.hpp +53 -0
  517. native/wpimath/include/gcem_incl/min.hpp +53 -0
  518. native/wpimath/include/gcem_incl/neg_zero.hpp +42 -0
  519. native/wpimath/include/gcem_incl/pow.hpp +94 -0
  520. native/wpimath/include/gcem_incl/pow_integral.hpp +133 -0
  521. native/wpimath/include/gcem_incl/quadrature/gauss_legendre_30.hpp +96 -0
  522. native/wpimath/include/gcem_incl/quadrature/gauss_legendre_50.hpp +136 -0
  523. native/wpimath/include/gcem_incl/round.hpp +137 -0
  524. native/wpimath/include/gcem_incl/sgn.hpp +50 -0
  525. native/wpimath/include/gcem_incl/signbit.hpp +56 -0
  526. native/wpimath/include/gcem_incl/sin.hpp +97 -0
  527. native/wpimath/include/gcem_incl/sinh.hpp +77 -0
  528. native/wpimath/include/gcem_incl/sqrt.hpp +121 -0
  529. native/wpimath/include/gcem_incl/tan.hpp +152 -0
  530. native/wpimath/include/gcem_incl/tanh.hpp +125 -0
  531. native/wpimath/include/gcem_incl/tgamma.hpp +92 -0
  532. native/wpimath/include/gcem_incl/trunc.hpp +133 -0
  533. native/wpimath/include/sleipnir/autodiff/Expression.hpp +1144 -0
  534. native/wpimath/include/sleipnir/autodiff/ExpressionGraph.hpp +244 -0
  535. native/wpimath/include/sleipnir/autodiff/ExpressionType.hpp +27 -0
  536. native/wpimath/include/sleipnir/autodiff/Gradient.hpp +73 -0
  537. native/wpimath/include/sleipnir/autodiff/Hessian.hpp +79 -0
  538. native/wpimath/include/sleipnir/autodiff/Jacobian.hpp +155 -0
  539. native/wpimath/include/sleipnir/autodiff/Profiler.hpp +79 -0
  540. native/wpimath/include/sleipnir/autodiff/Slice.hpp +158 -0
  541. native/wpimath/include/sleipnir/autodiff/Variable.hpp +761 -0
  542. native/wpimath/include/sleipnir/autodiff/VariableBlock.hpp +765 -0
  543. native/wpimath/include/sleipnir/autodiff/VariableMatrix.hpp +1096 -0
  544. native/wpimath/include/sleipnir/control/OCPSolver.hpp +471 -0
  545. native/wpimath/include/sleipnir/optimization/Multistart.hpp +75 -0
  546. native/wpimath/include/sleipnir/optimization/OptimizationProblem.hpp +386 -0
  547. native/wpimath/include/sleipnir/optimization/SolverConfig.hpp +54 -0
  548. native/wpimath/include/sleipnir/optimization/SolverExitCondition.hpp +80 -0
  549. native/wpimath/include/sleipnir/optimization/SolverIterationInfo.hpp +36 -0
  550. native/wpimath/include/sleipnir/optimization/SolverStatus.hpp +32 -0
  551. native/wpimath/include/sleipnir/optimization/solver/InteriorPoint.hpp +55 -0
  552. native/wpimath/include/sleipnir/optimization/solver/SQP.hpp +46 -0
  553. native/wpimath/include/sleipnir/util/Assert.hpp +25 -0
  554. native/wpimath/include/sleipnir/util/Concepts.hpp +33 -0
  555. native/wpimath/include/sleipnir/util/FunctionRef.hpp +100 -0
  556. native/wpimath/include/sleipnir/util/IntrusiveSharedPtr.hpp +216 -0
  557. native/wpimath/include/sleipnir/util/Pool.hpp +162 -0
  558. native/wpimath/include/sleipnir/util/Print.hpp +61 -0
  559. native/wpimath/include/sleipnir/util/Spy.hpp +89 -0
  560. native/wpimath/include/sleipnir/util/SymbolExports.hpp +192 -0
  561. native/wpimath/include/units/acceleration.h +56 -0
  562. native/wpimath/include/units/angle.h +56 -0
  563. native/wpimath/include/units/angular_acceleration.h +42 -0
  564. native/wpimath/include/units/angular_jerk.h +34 -0
  565. native/wpimath/include/units/angular_velocity.h +60 -0
  566. native/wpimath/include/units/area.h +56 -0
  567. native/wpimath/include/units/base.h +3450 -0
  568. native/wpimath/include/units/capacitance.h +51 -0
  569. native/wpimath/include/units/charge.h +53 -0
  570. native/wpimath/include/units/concentration.h +56 -0
  571. native/wpimath/include/units/conductance.h +51 -0
  572. native/wpimath/include/units/constants.h +102 -0
  573. native/wpimath/include/units/current.h +50 -0
  574. native/wpimath/include/units/curvature.h +14 -0
  575. native/wpimath/include/units/data.h +52 -0
  576. native/wpimath/include/units/data_transfer_rate.h +57 -0
  577. native/wpimath/include/units/density.h +70 -0
  578. native/wpimath/include/units/dimensionless.h +36 -0
  579. native/wpimath/include/units/energy.h +65 -0
  580. native/wpimath/include/units/force.h +62 -0
  581. native/wpimath/include/units/formatter.h +221 -0
  582. native/wpimath/include/units/frequency.h +50 -0
  583. native/wpimath/include/units/illuminance.h +61 -0
  584. native/wpimath/include/units/impedance.h +50 -0
  585. native/wpimath/include/units/inductance.h +50 -0
  586. native/wpimath/include/units/length.h +72 -0
  587. native/wpimath/include/units/luminous_flux.h +51 -0
  588. native/wpimath/include/units/luminous_intensity.h +51 -0
  589. native/wpimath/include/units/magnetic_field_strength.h +59 -0
  590. native/wpimath/include/units/magnetic_flux.h +53 -0
  591. native/wpimath/include/units/mass.h +58 -0
  592. native/wpimath/include/units/math.h +757 -0
  593. native/wpimath/include/units/moment_of_inertia.h +16 -0
  594. native/wpimath/include/units/power.h +51 -0
  595. native/wpimath/include/units/pressure.h +59 -0
  596. native/wpimath/include/units/radiation.h +69 -0
  597. native/wpimath/include/units/solid_angle.h +56 -0
  598. native/wpimath/include/units/substance.h +49 -0
  599. native/wpimath/include/units/temperature.h +59 -0
  600. native/wpimath/include/units/time.h +57 -0
  601. native/wpimath/include/units/torque.h +60 -0
  602. native/wpimath/include/units/velocity.h +59 -0
  603. native/wpimath/include/units/voltage.h +52 -0
  604. native/wpimath/include/units/volume.h +83 -0
  605. native/wpimath/include/unsupported/Eigen/MatrixFunctions +504 -0
  606. native/wpimath/include/unsupported/Eigen/src/MatrixFunctions/InternalHeaderCheck.h +4 -0
  607. native/wpimath/include/unsupported/Eigen/src/MatrixFunctions/MatrixExponential.h +444 -0
  608. native/wpimath/include/unsupported/Eigen/src/MatrixFunctions/MatrixFunction.h +543 -0
  609. native/wpimath/include/unsupported/Eigen/src/MatrixFunctions/MatrixLogarithm.h +366 -0
  610. native/wpimath/include/unsupported/Eigen/src/MatrixFunctions/MatrixPower.h +694 -0
  611. native/wpimath/include/unsupported/Eigen/src/MatrixFunctions/MatrixSquareRoot.h +346 -0
  612. native/wpimath/include/unsupported/Eigen/src/MatrixFunctions/StemFunction.h +115 -0
  613. native/wpimath/include/wpimath/MathShared.h +84 -0
  614. native/wpimath/include/wpimath/protobuf/controller.npb.h +158 -0
  615. native/wpimath/include/wpimath/protobuf/geometry2d.npb.h +180 -0
  616. native/wpimath/include/wpimath/protobuf/geometry3d.npb.h +171 -0
  617. native/wpimath/include/wpimath/protobuf/kinematics.npb.h +251 -0
  618. native/wpimath/include/wpimath/protobuf/plant.npb.h +57 -0
  619. native/wpimath/include/wpimath/protobuf/spline.npb.h +79 -0
  620. native/wpimath/include/wpimath/protobuf/system.npb.h +67 -0
  621. native/wpimath/include/wpimath/protobuf/trajectory.npb.h +76 -0
  622. native/wpimath/include/wpimath/protobuf/wpimath.npb.h +67 -0
  623. native/wpimath/lib/wpimath.dll +0 -0
  624. native/wpimath/lib/wpimath.lib +0 -0
  625. native/wpimath/robotpy-native-wpimath.pc +11 -0
  626. robotpy_native_wpimath-2025.3.2.dist-info/METADATA +6 -0
  627. robotpy_native_wpimath-2025.3.2.dist-info/RECORD +629 -0
  628. robotpy_native_wpimath-2025.3.2.dist-info/WHEEL +4 -0
  629. robotpy_native_wpimath-2025.3.2.dist-info/entry_points.txt +2 -0
@@ -0,0 +1,22 @@
1
+ # This file is automatically generated, DO NOT EDIT
2
+ # fmt: off
3
+
4
+ import native.wpiutil._init_robotpy_native_wpiutil
5
+
6
+ def __load_library():
7
+ from os.path import abspath, join, dirname, exists
8
+ from ctypes import cdll
9
+
10
+ root = abspath(dirname(__file__))
11
+
12
+ lib_path = join(root, 'lib', 'wpimath.dll')
13
+
14
+ try:
15
+ return cdll.LoadLibrary(lib_path)
16
+ except FileNotFoundError:
17
+ if not exists(lib_path):
18
+ raise FileNotFoundError("wpimath.dll was not found on your system. Is this package correctly installed?")
19
+ raise Exception("wpimath.dll could not be loaded. Do you have Visual Studio C++ Redistributible installed?")
20
+
21
+ __lib = __load_library()
22
+
@@ -0,0 +1,19 @@
1
+ ---
2
+ BasedOnStyle: Google
3
+ ColumnLimit: 120
4
+ ---
5
+ Language: Cpp
6
+ BasedOnStyle: Google
7
+ ColumnLimit: 120
8
+ StatementMacros:
9
+ - EIGEN_STATIC_ASSERT
10
+ - EIGEN_INITIALIZE_COEFFS_IF_THAT_OPTION_IS_ENABLED
11
+ - EIGEN_INTERNAL_DENSE_STORAGE_CTOR_PLUGIN
12
+ SortIncludes: false
13
+ AttributeMacros:
14
+ - EIGEN_STRONG_INLINE
15
+ - EIGEN_ALWAYS_INLINE
16
+ - EIGEN_DEVICE_FUNC
17
+ - EIGEN_DONT_INLINE
18
+ - EIGEN_DEPRECATED
19
+ - EIGEN_UNUSED
@@ -0,0 +1,17 @@
1
+ cppHeaderFileInclude {
2
+ \.hpp$
3
+ }
4
+
5
+ cppSrcFileInclude {
6
+ \.cpp$
7
+ }
8
+
9
+ licenseUpdateExclude {
10
+ include/sleipnir/util/small_vector\.hpp$
11
+ }
12
+
13
+ includeOtherLibs {
14
+ ^Eigen/
15
+ ^fmt/
16
+ ^wpi/
17
+ }
@@ -0,0 +1,43 @@
1
+ // This file is part of Eigen, a lightweight C++ template library
2
+ // for linear algebra.
3
+ //
4
+ // This Source Code Form is subject to the terms of the Mozilla
5
+ // Public License v. 2.0. If a copy of the MPL was not distributed
6
+ // with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
7
+
8
+ #ifndef EIGEN_CHOLESKY_MODULE_H
9
+ #define EIGEN_CHOLESKY_MODULE_H
10
+
11
+ #include "Core"
12
+ #include "Jacobi"
13
+
14
+ #include "src/Core/util/DisableStupidWarnings.h"
15
+
16
+ /** \defgroup Cholesky_Module Cholesky module
17
+ *
18
+ *
19
+ *
20
+ * This module provides two variants of the Cholesky decomposition for selfadjoint (hermitian) matrices.
21
+ * Those decompositions are also accessible via the following methods:
22
+ * - MatrixBase::llt()
23
+ * - MatrixBase::ldlt()
24
+ * - SelfAdjointView::llt()
25
+ * - SelfAdjointView::ldlt()
26
+ *
27
+ * \code
28
+ * #include <Eigen/Cholesky>
29
+ * \endcode
30
+ */
31
+
32
+ // IWYU pragma: begin_exports
33
+ #include "src/Cholesky/LLT.h"
34
+ #include "src/Cholesky/LDLT.h"
35
+ #ifdef EIGEN_USE_LAPACKE
36
+ // #include "src/misc/lapacke_helpers.h"
37
+ // #include "src/Cholesky/LLT_LAPACKE.h"
38
+ #endif
39
+ // IWYU pragma: end_exports
40
+
41
+ #include "src/Core/util/ReenableStupidWarnings.h"
42
+
43
+ #endif // EIGEN_CHOLESKY_MODULE_H
@@ -0,0 +1,418 @@
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) 2007-2011 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_CORE_MODULE_H
12
+ #define EIGEN_CORE_MODULE_H
13
+
14
+ // first thing Eigen does: stop the compiler from reporting useless warnings.
15
+ #include "src/Core/util/DisableStupidWarnings.h"
16
+
17
+ // then include this file where all our macros are defined. It's really important to do it first because
18
+ // it's where we do all the compiler/OS/arch detections and define most defaults.
19
+ #include "src/Core/util/Macros.h"
20
+
21
+ // This detects SSE/AVX/NEON/etc. and configure alignment settings
22
+ #include "src/Core/util/ConfigureVectorization.h"
23
+
24
+ // We need cuda_runtime.h/hip_runtime.h to ensure that
25
+ // the EIGEN_USING_STD macro works properly on the device side
26
+ #if defined(EIGEN_CUDACC)
27
+ #include <cuda_runtime.h>
28
+ #elif defined(EIGEN_HIPCC)
29
+ #include <hip/hip_runtime.h>
30
+ #endif
31
+
32
+ #ifdef EIGEN_EXCEPTIONS
33
+ #include <new>
34
+ #endif
35
+
36
+ // Disable the ipa-cp-clone optimization flag with MinGW 6.x or older (enabled by default with -O3)
37
+ // See http://eigen.tuxfamily.org/bz/show_bug.cgi?id=556 for details.
38
+ #if EIGEN_COMP_MINGW && EIGEN_GNUC_STRICT_LESS_THAN(6, 0, 0)
39
+ #pragma GCC optimize("-fno-ipa-cp-clone")
40
+ #endif
41
+
42
+ // Prevent ICC from specializing std::complex operators that silently fail
43
+ // on device. This allows us to use our own device-compatible specializations
44
+ // instead.
45
+ #if EIGEN_COMP_ICC && defined(EIGEN_GPU_COMPILE_PHASE) && !defined(_OVERRIDE_COMPLEX_SPECIALIZATION_)
46
+ #define _OVERRIDE_COMPLEX_SPECIALIZATION_ 1
47
+ #endif
48
+ #include <complex>
49
+
50
+ // this include file manages BLAS and MKL related macros
51
+ // and inclusion of their respective header files
52
+ // #include "src/Core/util/MKL_support.h"
53
+
54
+ #if defined(EIGEN_HAS_CUDA_FP16) || defined(EIGEN_HAS_HIP_FP16)
55
+ #define EIGEN_HAS_GPU_FP16
56
+ #endif
57
+
58
+ #if defined(EIGEN_HAS_CUDA_BF16) || defined(EIGEN_HAS_HIP_BF16)
59
+ #define EIGEN_HAS_GPU_BF16
60
+ #endif
61
+
62
+ #if (defined _OPENMP) && (!defined EIGEN_DONT_PARALLELIZE)
63
+ #define EIGEN_HAS_OPENMP
64
+ #endif
65
+
66
+ #ifdef EIGEN_HAS_OPENMP
67
+ #include <atomic>
68
+ #include <omp.h>
69
+ #endif
70
+
71
+ // MSVC for windows mobile does not have the errno.h file
72
+ #if !(EIGEN_COMP_MSVC && EIGEN_OS_WINCE) && !EIGEN_COMP_ARM
73
+ #define EIGEN_HAS_ERRNO
74
+ #endif
75
+
76
+ #ifdef EIGEN_HAS_ERRNO
77
+ #include <cerrno>
78
+ #endif
79
+ #include <cstddef>
80
+ #include <cstdlib>
81
+ #include <cmath>
82
+ #include <functional>
83
+ #ifndef EIGEN_NO_IO
84
+ #include <sstream>
85
+ #include <iosfwd>
86
+ #endif
87
+ #include <cstring>
88
+ #include <string>
89
+ #include <limits>
90
+ #include <climits> // for CHAR_BIT
91
+ // for min/max:
92
+ #include <algorithm>
93
+
94
+ #include <array>
95
+ #include <vector>
96
+
97
+ // for std::is_nothrow_move_assignable
98
+ #include <type_traits>
99
+
100
+ // for std::this_thread::yield().
101
+ #if !defined(EIGEN_USE_BLAS) && (defined(EIGEN_HAS_OPENMP) || defined(EIGEN_GEMM_THREADPOOL))
102
+ #include <thread>
103
+ #endif
104
+
105
+ // for outputting debug info
106
+ #ifdef EIGEN_DEBUG_ASSIGN
107
+ #include <iostream>
108
+ #endif
109
+
110
+ // required for __cpuid, needs to be included after cmath
111
+ // also required for _BitScanReverse on Windows on ARM
112
+ #if EIGEN_COMP_MSVC && (EIGEN_ARCH_i386_OR_x86_64 || EIGEN_ARCH_ARM64) && !EIGEN_OS_WINCE
113
+ #include <intrin.h>
114
+ #endif
115
+
116
+ #if defined(EIGEN_USE_SYCL)
117
+ #undef min
118
+ #undef max
119
+ #undef isnan
120
+ #undef isinf
121
+ #undef isfinite
122
+ #include <CL/sycl.hpp>
123
+ #include <map>
124
+ #include <memory>
125
+ #include <thread>
126
+ #include <utility>
127
+ #ifndef EIGEN_SYCL_LOCAL_THREAD_DIM0
128
+ #define EIGEN_SYCL_LOCAL_THREAD_DIM0 16
129
+ #endif
130
+ #ifndef EIGEN_SYCL_LOCAL_THREAD_DIM1
131
+ #define EIGEN_SYCL_LOCAL_THREAD_DIM1 16
132
+ #endif
133
+ #endif
134
+
135
+ #if defined EIGEN2_SUPPORT_STAGE40_FULL_EIGEN3_STRICTNESS || defined EIGEN2_SUPPORT_STAGE30_FULL_EIGEN3_API || \
136
+ defined EIGEN2_SUPPORT_STAGE20_RESOLVE_API_CONFLICTS || defined EIGEN2_SUPPORT_STAGE10_FULL_EIGEN2_API || \
137
+ defined EIGEN2_SUPPORT
138
+ // This will generate an error message:
139
+ #error Eigen2-support is only available up to version 3.2. Please go to "http://eigen.tuxfamily.org/index.php?title=Eigen2" for further information
140
+ #endif
141
+
142
+ namespace Eigen {
143
+
144
+ // we use size_t frequently and we'll never remember to prepend it with std:: every time just to
145
+ // ensure QNX/QCC support
146
+ using std::size_t;
147
+ // gcc 4.6.0 wants std:: for ptrdiff_t
148
+ using std::ptrdiff_t;
149
+
150
+ } // namespace Eigen
151
+
152
+ /** \defgroup Core_Module Core module
153
+ * This is the main module of Eigen providing dense matrix and vector support
154
+ * (both fixed and dynamic size) with all the features corresponding to a BLAS library
155
+ * and much more...
156
+ *
157
+ * \code
158
+ * #include <Eigen/Core>
159
+ * \endcode
160
+ */
161
+
162
+ #ifdef EIGEN_USE_LAPACKE
163
+ #ifdef EIGEN_USE_MKL
164
+ // #include "mkl_lapacke.h"
165
+ #else
166
+ // #include "src/misc/lapacke.h"
167
+ #endif
168
+ #endif
169
+
170
+ // IWYU pragma: begin_exports
171
+ #include "src/Core/util/Constants.h"
172
+ #include "src/Core/util/Meta.h"
173
+ #include "src/Core/util/Assert.h"
174
+ #include "src/Core/util/ForwardDeclarations.h"
175
+ #include "src/Core/util/StaticAssert.h"
176
+ #include "src/Core/util/XprHelper.h"
177
+ #include "src/Core/util/Memory.h"
178
+ #include "src/Core/util/IntegralConstant.h"
179
+ #include "src/Core/util/Serializer.h"
180
+ #include "src/Core/util/SymbolicIndex.h"
181
+ #include "src/Core/util/EmulateArray.h"
182
+ #include "src/Core/util/MoreMeta.h"
183
+
184
+ #include "src/Core/NumTraits.h"
185
+ #include "src/Core/MathFunctions.h"
186
+ #include "src/Core/RandomImpl.h"
187
+ #include "src/Core/GenericPacketMath.h"
188
+ #include "src/Core/MathFunctionsImpl.h"
189
+ #include "src/Core/arch/Default/ConjHelper.h"
190
+ // Generic half float support
191
+ #include "src/Core/arch/Default/Half.h"
192
+ #include "src/Core/arch/Default/BFloat16.h"
193
+ #include "src/Core/arch/Default/GenericPacketMathFunctionsFwd.h"
194
+
195
+ #if defined EIGEN_VECTORIZE_AVX512
196
+ #if defined EIGEN_VECTORIZE_AVX512FP16
197
+ // #include "src/Core/arch/AVX512/PacketMathFP16.h"
198
+ #endif
199
+ #include "src/Core/arch/SSE/PacketMath.h"
200
+ #include "src/Core/arch/SSE/TypeCasting.h"
201
+ #include "src/Core/arch/SSE/Complex.h"
202
+ #include "src/Core/arch/AVX/PacketMath.h"
203
+ #include "src/Core/arch/AVX/TypeCasting.h"
204
+ #include "src/Core/arch/AVX/Complex.h"
205
+ // #include "src/Core/arch/AVX512/PacketMath.h"
206
+ // #include "src/Core/arch/AVX512/TypeCasting.h"
207
+ // #include "src/Core/arch/AVX512/Complex.h"
208
+ #include "src/Core/arch/SSE/MathFunctions.h"
209
+ #include "src/Core/arch/AVX/MathFunctions.h"
210
+ // #include "src/Core/arch/AVX512/MathFunctions.h"
211
+ // #include "src/Core/arch/AVX512/TrsmKernel.h"
212
+ #elif defined EIGEN_VECTORIZE_AVX
213
+ // Use AVX for floats and doubles, SSE for integers
214
+ #include "src/Core/arch/SSE/PacketMath.h"
215
+ #include "src/Core/arch/SSE/TypeCasting.h"
216
+ #include "src/Core/arch/SSE/Complex.h"
217
+ #include "src/Core/arch/AVX/PacketMath.h"
218
+ #include "src/Core/arch/AVX/TypeCasting.h"
219
+ #include "src/Core/arch/AVX/Complex.h"
220
+ #include "src/Core/arch/SSE/MathFunctions.h"
221
+ #include "src/Core/arch/AVX/MathFunctions.h"
222
+ #elif defined EIGEN_VECTORIZE_SSE
223
+ #include "src/Core/arch/SSE/PacketMath.h"
224
+ #include "src/Core/arch/SSE/TypeCasting.h"
225
+ #include "src/Core/arch/SSE/MathFunctions.h"
226
+ #include "src/Core/arch/SSE/Complex.h"
227
+ #elif defined(EIGEN_VECTORIZE_ALTIVEC) || defined(EIGEN_VECTORIZE_VSX)
228
+ // #include "src/Core/arch/AltiVec/PacketMath.h"
229
+ // #include "src/Core/arch/AltiVec/TypeCasting.h"
230
+ // #include "src/Core/arch/AltiVec/MathFunctions.h"
231
+ // #include "src/Core/arch/AltiVec/Complex.h"
232
+ #elif defined EIGEN_VECTORIZE_NEON
233
+ #include "src/Core/arch/NEON/PacketMath.h"
234
+ #include "src/Core/arch/NEON/TypeCasting.h"
235
+ #include "src/Core/arch/NEON/MathFunctions.h"
236
+ #include "src/Core/arch/NEON/Complex.h"
237
+ #elif defined EIGEN_VECTORIZE_SVE
238
+ // #include "src/Core/arch/SVE/PacketMath.h"
239
+ // #include "src/Core/arch/SVE/TypeCasting.h"
240
+ // #include "src/Core/arch/SVE/MathFunctions.h"
241
+ #elif defined EIGEN_VECTORIZE_ZVECTOR
242
+ // #include "src/Core/arch/ZVector/PacketMath.h"
243
+ // #include "src/Core/arch/ZVector/MathFunctions.h"
244
+ // #include "src/Core/arch/ZVector/Complex.h"
245
+ #elif defined EIGEN_VECTORIZE_MSA
246
+ // #include "src/Core/arch/MSA/PacketMath.h"
247
+ // #include "src/Core/arch/MSA/MathFunctions.h"
248
+ // #include "src/Core/arch/MSA/Complex.h"
249
+ #elif defined EIGEN_VECTORIZE_HVX
250
+ // #include "src/Core/arch/HVX/PacketMath.h"
251
+ #endif
252
+
253
+ #if defined EIGEN_VECTORIZE_GPU
254
+ // #include "src/Core/arch/GPU/PacketMath.h"
255
+ // #include "src/Core/arch/GPU/MathFunctions.h"
256
+ // #include "src/Core/arch/GPU/TypeCasting.h"
257
+ #endif
258
+
259
+ #if defined(EIGEN_USE_SYCL)
260
+ // #include "src/Core/arch/SYCL/InteropHeaders.h"
261
+ #if !defined(EIGEN_DONT_VECTORIZE_SYCL)
262
+ // #include "src/Core/arch/SYCL/PacketMath.h"
263
+ // #include "src/Core/arch/SYCL/MathFunctions.h"
264
+ // #include "src/Core/arch/SYCL/TypeCasting.h"
265
+ #endif
266
+ #endif
267
+
268
+ #include "src/Core/arch/Default/Settings.h"
269
+ // This file provides generic implementations valid for scalar as well
270
+ #include "src/Core/arch/Default/GenericPacketMathFunctions.h"
271
+
272
+ #include "src/Core/functors/TernaryFunctors.h"
273
+ #include "src/Core/functors/BinaryFunctors.h"
274
+ #include "src/Core/functors/UnaryFunctors.h"
275
+ #include "src/Core/functors/NullaryFunctors.h"
276
+ #include "src/Core/functors/StlFunctors.h"
277
+ #include "src/Core/functors/AssignmentFunctors.h"
278
+
279
+ // Specialized functors for GPU.
280
+ #ifdef EIGEN_GPUCC
281
+ // #include "src/Core/arch/GPU/Complex.h"
282
+ #endif
283
+
284
+ // Specializations of vectorized activation functions for NEON.
285
+ #ifdef EIGEN_VECTORIZE_NEON
286
+ #include "src/Core/arch/NEON/UnaryFunctors.h"
287
+ #endif
288
+
289
+ #include "src/Core/util/IndexedViewHelper.h"
290
+ #include "src/Core/util/ReshapedHelper.h"
291
+ #include "src/Core/ArithmeticSequence.h"
292
+ #ifndef EIGEN_NO_IO
293
+ #include "src/Core/IO.h"
294
+ #endif
295
+ #include "src/Core/DenseCoeffsBase.h"
296
+ #include "src/Core/DenseBase.h"
297
+ #include "src/Core/MatrixBase.h"
298
+ #include "src/Core/EigenBase.h"
299
+
300
+ #include "src/Core/Product.h"
301
+ #include "src/Core/CoreEvaluators.h"
302
+ #include "src/Core/AssignEvaluator.h"
303
+
304
+ #ifndef EIGEN_PARSED_BY_DOXYGEN // work around Doxygen bug triggered by Assign.h r814874
305
+ // at least confirmed with Doxygen 1.5.5 and 1.5.6
306
+ #include "src/Core/Assign.h"
307
+ #endif
308
+
309
+ #include "src/Core/ArrayBase.h"
310
+ #include "src/Core/util/BlasUtil.h"
311
+ #include "src/Core/DenseStorage.h"
312
+ #include "src/Core/NestByValue.h"
313
+
314
+ // #include "src/Core/ForceAlignedAccess.h"
315
+
316
+ #include "src/Core/ReturnByValue.h"
317
+ #include "src/Core/NoAlias.h"
318
+ #include "src/Core/PlainObjectBase.h"
319
+ #include "src/Core/Matrix.h"
320
+ #include "src/Core/Array.h"
321
+ #include "src/Core/CwiseTernaryOp.h"
322
+ #include "src/Core/CwiseBinaryOp.h"
323
+ #include "src/Core/CwiseUnaryOp.h"
324
+ #include "src/Core/CwiseNullaryOp.h"
325
+ #include "src/Core/CwiseUnaryView.h"
326
+ #include "src/Core/SelfCwiseBinaryOp.h"
327
+ #include "src/Core/InnerProduct.h"
328
+ #include "src/Core/Dot.h"
329
+ #include "src/Core/StableNorm.h"
330
+ #include "src/Core/Stride.h"
331
+ #include "src/Core/MapBase.h"
332
+ #include "src/Core/Map.h"
333
+ #include "src/Core/Ref.h"
334
+ #include "src/Core/Block.h"
335
+ #include "src/Core/VectorBlock.h"
336
+ #include "src/Core/IndexedView.h"
337
+ #include "src/Core/Reshaped.h"
338
+ #include "src/Core/Transpose.h"
339
+ #include "src/Core/DiagonalMatrix.h"
340
+ #include "src/Core/Diagonal.h"
341
+ #include "src/Core/DiagonalProduct.h"
342
+ #include "src/Core/SkewSymmetricMatrix3.h"
343
+ #include "src/Core/Redux.h"
344
+ #include "src/Core/Visitor.h"
345
+ #include "src/Core/Fuzzy.h"
346
+ #include "src/Core/Swap.h"
347
+ #include "src/Core/CommaInitializer.h"
348
+ #include "src/Core/GeneralProduct.h"
349
+ #include "src/Core/Solve.h"
350
+ #include "src/Core/Inverse.h"
351
+ #include "src/Core/SolverBase.h"
352
+ #include "src/Core/PermutationMatrix.h"
353
+ #include "src/Core/Transpositions.h"
354
+ #include "src/Core/TriangularMatrix.h"
355
+ #include "src/Core/SelfAdjointView.h"
356
+ #include "src/Core/products/GeneralBlockPanelKernel.h"
357
+ #include "src/Core/DeviceWrapper.h"
358
+ #ifdef EIGEN_GEMM_THREADPOOL
359
+ // #include "ThreadPool"
360
+ #endif
361
+ #include "src/Core/products/Parallelizer.h"
362
+ #include "src/Core/ProductEvaluators.h"
363
+ #include "src/Core/products/GeneralMatrixVector.h"
364
+ #include "src/Core/products/GeneralMatrixMatrix.h"
365
+ #include "src/Core/SolveTriangular.h"
366
+ #include "src/Core/products/GeneralMatrixMatrixTriangular.h"
367
+ #include "src/Core/products/SelfadjointMatrixVector.h"
368
+ #include "src/Core/products/SelfadjointMatrixMatrix.h"
369
+ #include "src/Core/products/SelfadjointProduct.h"
370
+ #include "src/Core/products/SelfadjointRank2Update.h"
371
+ #include "src/Core/products/TriangularMatrixVector.h"
372
+ #include "src/Core/products/TriangularMatrixMatrix.h"
373
+ #include "src/Core/products/TriangularSolverMatrix.h"
374
+ #include "src/Core/products/TriangularSolverVector.h"
375
+ #include "src/Core/BandMatrix.h"
376
+ #include "src/Core/CoreIterators.h"
377
+ #include "src/Core/ConditionEstimator.h"
378
+
379
+ #if defined(EIGEN_VECTORIZE_VSX)
380
+ // #include "src/Core/arch/AltiVec/MatrixProduct.h"
381
+ #elif defined EIGEN_VECTORIZE_NEON
382
+ #include "src/Core/arch/NEON/GeneralBlockPanelKernel.h"
383
+ #endif
384
+
385
+ #if defined(EIGEN_VECTORIZE_AVX512)
386
+ // #include "src/Core/arch/AVX512/GemmKernel.h"
387
+ #endif
388
+
389
+ #include "src/Core/Select.h"
390
+ #include "src/Core/VectorwiseOp.h"
391
+ #include "src/Core/PartialReduxEvaluator.h"
392
+ #include "src/Core/Random.h"
393
+ #include "src/Core/Replicate.h"
394
+ #include "src/Core/Reverse.h"
395
+ #include "src/Core/ArrayWrapper.h"
396
+ #include "src/Core/StlIterators.h"
397
+
398
+ #ifdef EIGEN_USE_BLAS
399
+ // #include "src/Core/products/GeneralMatrixMatrix_BLAS.h"
400
+ // #include "src/Core/products/GeneralMatrixVector_BLAS.h"
401
+ // #include "src/Core/products/GeneralMatrixMatrixTriangular_BLAS.h"
402
+ // #include "src/Core/products/SelfadjointMatrixMatrix_BLAS.h"
403
+ // #include "src/Core/products/SelfadjointMatrixVector_BLAS.h"
404
+ // #include "src/Core/products/TriangularMatrixMatrix_BLAS.h"
405
+ // #include "src/Core/products/TriangularMatrixVector_BLAS.h"
406
+ // #include "src/Core/products/TriangularSolverMatrix_BLAS.h"
407
+ #endif // EIGEN_USE_BLAS
408
+
409
+ #ifdef EIGEN_USE_MKL_VML
410
+ // #include "src/Core/Assign_MKL.h"
411
+ #endif
412
+
413
+ #include "src/Core/GlobalFunctions.h"
414
+ // IWYU pragma: end_exports
415
+
416
+ #include "src/Core/util/ReenableStupidWarnings.h"
417
+
418
+ #endif // EIGEN_CORE_MODULE_H
@@ -0,0 +1,63 @@
1
+ // This file is part of Eigen, a lightweight C++ template library
2
+ // for linear algebra.
3
+ //
4
+ // This Source Code Form is subject to the terms of the Mozilla
5
+ // Public License v. 2.0. If a copy of the MPL was not distributed
6
+ // with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
7
+
8
+ #ifndef EIGEN_EIGENVALUES_MODULE_H
9
+ #define EIGEN_EIGENVALUES_MODULE_H
10
+
11
+ #include "Core"
12
+
13
+ #include "Cholesky"
14
+ #include "Jacobi"
15
+ #include "Householder"
16
+ #include "LU"
17
+ #include "Geometry"
18
+
19
+ #include "src/Core/util/DisableStupidWarnings.h"
20
+
21
+ /** \defgroup Eigenvalues_Module Eigenvalues module
22
+ *
23
+ *
24
+ *
25
+ * This module mainly provides various eigenvalue solvers.
26
+ * This module also provides some MatrixBase methods, including:
27
+ * - MatrixBase::eigenvalues(),
28
+ * - MatrixBase::operatorNorm()
29
+ *
30
+ * \code
31
+ * #include <Eigen/Eigenvalues>
32
+ * \endcode
33
+ */
34
+
35
+ #include "src/misc/RealSvd2x2.h"
36
+
37
+ // IWYU pragma: begin_exports
38
+ #include "src/Eigenvalues/Tridiagonalization.h"
39
+ #include "src/Eigenvalues/RealSchur.h"
40
+ #include "src/Eigenvalues/EigenSolver.h"
41
+ #include "src/Eigenvalues/SelfAdjointEigenSolver.h"
42
+ #include "src/Eigenvalues/GeneralizedSelfAdjointEigenSolver.h"
43
+ #include "src/Eigenvalues/HessenbergDecomposition.h"
44
+ #include "src/Eigenvalues/ComplexSchur.h"
45
+ #include "src/Eigenvalues/ComplexEigenSolver.h"
46
+ #include "src/Eigenvalues/RealQZ.h"
47
+ #include "src/Eigenvalues/GeneralizedEigenSolver.h"
48
+ #include "src/Eigenvalues/MatrixBaseEigenvalues.h"
49
+ #ifdef EIGEN_USE_LAPACKE
50
+ #ifdef EIGEN_USE_MKL
51
+ // #include "mkl_lapacke.h"
52
+ #else
53
+ // #include "src/misc/lapacke.h"
54
+ #endif
55
+ // #include "src/Eigenvalues/RealSchur_LAPACKE.h"
56
+ // #include "src/Eigenvalues/ComplexSchur_LAPACKE.h"
57
+ // #include "src/Eigenvalues/SelfAdjointEigenSolver_LAPACKE.h"
58
+ #endif
59
+ // IWYU pragma: end_exports
60
+
61
+ #include "src/Core/util/ReenableStupidWarnings.h"
62
+
63
+ #endif // EIGEN_EIGENVALUES_MODULE_H
@@ -0,0 +1,61 @@
1
+ // This file is part of Eigen, a lightweight C++ template library
2
+ // for linear algebra.
3
+ //
4
+ // This Source Code Form is subject to the terms of the Mozilla
5
+ // Public License v. 2.0. If a copy of the MPL was not distributed
6
+ // with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
7
+
8
+ #ifndef EIGEN_GEOMETRY_MODULE_H
9
+ #define EIGEN_GEOMETRY_MODULE_H
10
+
11
+ #include "Core"
12
+
13
+ #include "SVD"
14
+ #include "LU"
15
+ #include <limits>
16
+
17
+ #include "src/Core/util/DisableStupidWarnings.h"
18
+
19
+ /** \defgroup Geometry_Module Geometry module
20
+ *
21
+ * This module provides support for:
22
+ * - fixed-size homogeneous transformations
23
+ * - translation, scaling, 2D and 3D rotations
24
+ * - \link Quaternion quaternions \endlink
25
+ * - cross products (\ref MatrixBase::cross, \ref MatrixBase::cross3)
26
+ * - orthogonal vector generation (\ref MatrixBase::unitOrthogonal)
27
+ * - some linear components: \link ParametrizedLine parametrized-lines \endlink and \link Hyperplane hyperplanes
28
+ * \endlink
29
+ * - \link AlignedBox axis aligned bounding boxes \endlink
30
+ * - \link umeyama least-square transformation fitting \endlink
31
+ *
32
+ * \code
33
+ * #include <Eigen/Geometry>
34
+ * \endcode
35
+ */
36
+
37
+ // IWYU pragma: begin_exports
38
+ #include "src/Geometry/OrthoMethods.h"
39
+ #include "src/Geometry/EulerAngles.h"
40
+ #include "src/Geometry/Homogeneous.h"
41
+ #include "src/Geometry/RotationBase.h"
42
+ #include "src/Geometry/Rotation2D.h"
43
+ #include "src/Geometry/Quaternion.h"
44
+ #include "src/Geometry/AngleAxis.h"
45
+ #include "src/Geometry/Transform.h"
46
+ #include "src/Geometry/Translation.h"
47
+ #include "src/Geometry/Scaling.h"
48
+ #include "src/Geometry/Hyperplane.h"
49
+ #include "src/Geometry/ParametrizedLine.h"
50
+ #include "src/Geometry/AlignedBox.h"
51
+ #include "src/Geometry/Umeyama.h"
52
+
53
+ // Use the SSE optimized version whenever possible.
54
+ #if (defined EIGEN_VECTORIZE_SSE) || (defined EIGEN_VECTORIZE_NEON)
55
+ #include "src/Geometry/arch/Geometry_SIMD.h"
56
+ #endif
57
+ // IWYU pragma: end_exports
58
+
59
+ #include "src/Core/util/ReenableStupidWarnings.h"
60
+
61
+ #endif // EIGEN_GEOMETRY_MODULE_H
@@ -0,0 +1,31 @@
1
+ // This file is part of Eigen, a lightweight C++ template library
2
+ // for linear algebra.
3
+ //
4
+ // This Source Code Form is subject to the terms of the Mozilla
5
+ // Public License v. 2.0. If a copy of the MPL was not distributed
6
+ // with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
7
+
8
+ #ifndef EIGEN_HOUSEHOLDER_MODULE_H
9
+ #define EIGEN_HOUSEHOLDER_MODULE_H
10
+
11
+ #include "Core"
12
+
13
+ #include "src/Core/util/DisableStupidWarnings.h"
14
+
15
+ /** \defgroup Householder_Module Householder module
16
+ * This module provides Householder transformations.
17
+ *
18
+ * \code
19
+ * #include <Eigen/Householder>
20
+ * \endcode
21
+ */
22
+
23
+ // IWYU pragma: begin_exports
24
+ #include "src/Householder/Householder.h"
25
+ #include "src/Householder/HouseholderSequence.h"
26
+ #include "src/Householder/BlockHouseholder.h"
27
+ // IWYU pragma: end_exports
28
+
29
+ #include "src/Core/util/ReenableStupidWarnings.h"
30
+
31
+ #endif // EIGEN_HOUSEHOLDER_MODULE_H