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.
- native/wpimath/_init_robotpy_native_wpimath.py +22 -0
- native/wpimath/include/.clang-format +19 -0
- native/wpimath/include/.styleguide +17 -0
- native/wpimath/include/Eigen/Cholesky +43 -0
- native/wpimath/include/Eigen/Core +418 -0
- native/wpimath/include/Eigen/Eigenvalues +63 -0
- native/wpimath/include/Eigen/Geometry +61 -0
- native/wpimath/include/Eigen/Householder +31 -0
- native/wpimath/include/Eigen/IterativeLinearSolvers +52 -0
- native/wpimath/include/Eigen/Jacobi +33 -0
- native/wpimath/include/Eigen/LU +46 -0
- native/wpimath/include/Eigen/OrderingMethods +73 -0
- native/wpimath/include/Eigen/QR +48 -0
- native/wpimath/include/Eigen/SVD +56 -0
- native/wpimath/include/Eigen/SparseCholesky +40 -0
- native/wpimath/include/Eigen/SparseCore +70 -0
- native/wpimath/include/Eigen/SparseLU +50 -0
- native/wpimath/include/Eigen/SparseQR +38 -0
- native/wpimath/include/Eigen/src/Cholesky/InternalHeaderCheck.h +3 -0
- native/wpimath/include/Eigen/src/Cholesky/LDLT.h +649 -0
- native/wpimath/include/Eigen/src/Cholesky/LLT.h +514 -0
- native/wpimath/include/Eigen/src/Core/ArithmeticSequence.h +239 -0
- native/wpimath/include/Eigen/src/Core/Array.h +363 -0
- native/wpimath/include/Eigen/src/Core/ArrayBase.h +222 -0
- native/wpimath/include/Eigen/src/Core/ArrayWrapper.h +173 -0
- native/wpimath/include/Eigen/src/Core/Assign.h +80 -0
- native/wpimath/include/Eigen/src/Core/AssignEvaluator.h +986 -0
- native/wpimath/include/Eigen/src/Core/BandMatrix.h +338 -0
- native/wpimath/include/Eigen/src/Core/Block.h +439 -0
- native/wpimath/include/Eigen/src/Core/CommaInitializer.h +149 -0
- native/wpimath/include/Eigen/src/Core/ConditionEstimator.h +173 -0
- native/wpimath/include/Eigen/src/Core/CoreEvaluators.h +1688 -0
- native/wpimath/include/Eigen/src/Core/CoreIterators.h +141 -0
- native/wpimath/include/Eigen/src/Core/CwiseBinaryOp.h +166 -0
- native/wpimath/include/Eigen/src/Core/CwiseNullaryOp.h +971 -0
- native/wpimath/include/Eigen/src/Core/CwiseTernaryOp.h +171 -0
- native/wpimath/include/Eigen/src/Core/CwiseUnaryOp.h +91 -0
- native/wpimath/include/Eigen/src/Core/CwiseUnaryView.h +167 -0
- native/wpimath/include/Eigen/src/Core/DenseBase.h +659 -0
- native/wpimath/include/Eigen/src/Core/DenseCoeffsBase.h +569 -0
- native/wpimath/include/Eigen/src/Core/DenseStorage.h +578 -0
- native/wpimath/include/Eigen/src/Core/DeviceWrapper.h +155 -0
- native/wpimath/include/Eigen/src/Core/Diagonal.h +221 -0
- native/wpimath/include/Eigen/src/Core/DiagonalMatrix.h +414 -0
- native/wpimath/include/Eigen/src/Core/DiagonalProduct.h +30 -0
- native/wpimath/include/Eigen/src/Core/Dot.h +268 -0
- native/wpimath/include/Eigen/src/Core/EigenBase.h +149 -0
- native/wpimath/include/Eigen/src/Core/ForceAlignedAccess.h +131 -0
- native/wpimath/include/Eigen/src/Core/Fuzzy.h +132 -0
- native/wpimath/include/Eigen/src/Core/GeneralProduct.h +519 -0
- native/wpimath/include/Eigen/src/Core/GenericPacketMath.h +1532 -0
- native/wpimath/include/Eigen/src/Core/GlobalFunctions.h +230 -0
- native/wpimath/include/Eigen/src/Core/IO.h +233 -0
- native/wpimath/include/Eigen/src/Core/IndexedView.h +315 -0
- native/wpimath/include/Eigen/src/Core/InnerProduct.h +250 -0
- native/wpimath/include/Eigen/src/Core/InternalHeaderCheck.h +3 -0
- native/wpimath/include/Eigen/src/Core/Inverse.h +108 -0
- native/wpimath/include/Eigen/src/Core/Map.h +153 -0
- native/wpimath/include/Eigen/src/Core/MapBase.h +283 -0
- native/wpimath/include/Eigen/src/Core/MathFunctions.h +2006 -0
- native/wpimath/include/Eigen/src/Core/MathFunctionsImpl.h +262 -0
- native/wpimath/include/Eigen/src/Core/Matrix.h +523 -0
- native/wpimath/include/Eigen/src/Core/MatrixBase.h +542 -0
- native/wpimath/include/Eigen/src/Core/NestByValue.h +91 -0
- native/wpimath/include/Eigen/src/Core/NoAlias.h +102 -0
- native/wpimath/include/Eigen/src/Core/NumTraits.h +328 -0
- native/wpimath/include/Eigen/src/Core/PartialReduxEvaluator.h +209 -0
- native/wpimath/include/Eigen/src/Core/PermutationMatrix.h +552 -0
- native/wpimath/include/Eigen/src/Core/PlainObjectBase.h +1035 -0
- native/wpimath/include/Eigen/src/Core/Product.h +307 -0
- native/wpimath/include/Eigen/src/Core/ProductEvaluators.h +1156 -0
- native/wpimath/include/Eigen/src/Core/Random.h +207 -0
- native/wpimath/include/Eigen/src/Core/RandomImpl.h +255 -0
- native/wpimath/include/Eigen/src/Core/Redux.h +528 -0
- native/wpimath/include/Eigen/src/Core/Ref.h +383 -0
- native/wpimath/include/Eigen/src/Core/Replicate.h +130 -0
- native/wpimath/include/Eigen/src/Core/Reshaped.h +398 -0
- native/wpimath/include/Eigen/src/Core/ReturnByValue.h +115 -0
- native/wpimath/include/Eigen/src/Core/Reverse.h +202 -0
- native/wpimath/include/Eigen/src/Core/Select.h +156 -0
- native/wpimath/include/Eigen/src/Core/SelfAdjointView.h +329 -0
- native/wpimath/include/Eigen/src/Core/SelfCwiseBinaryOp.h +50 -0
- native/wpimath/include/Eigen/src/Core/SkewSymmetricMatrix3.h +382 -0
- native/wpimath/include/Eigen/src/Core/Solve.h +174 -0
- native/wpimath/include/Eigen/src/Core/SolveTriangular.h +237 -0
- native/wpimath/include/Eigen/src/Core/SolverBase.h +159 -0
- native/wpimath/include/Eigen/src/Core/StableNorm.h +217 -0
- native/wpimath/include/Eigen/src/Core/StlIterators.h +620 -0
- native/wpimath/include/Eigen/src/Core/Stride.h +114 -0
- native/wpimath/include/Eigen/src/Core/Swap.h +74 -0
- native/wpimath/include/Eigen/src/Core/Transpose.h +427 -0
- native/wpimath/include/Eigen/src/Core/Transpositions.h +323 -0
- native/wpimath/include/Eigen/src/Core/TriangularMatrix.h +900 -0
- native/wpimath/include/Eigen/src/Core/VectorBlock.h +83 -0
- native/wpimath/include/Eigen/src/Core/VectorwiseOp.h +713 -0
- native/wpimath/include/Eigen/src/Core/Visitor.h +789 -0
- native/wpimath/include/Eigen/src/Core/arch/AVX/Complex.h +530 -0
- native/wpimath/include/Eigen/src/Core/arch/AVX/MathFunctions.h +126 -0
- native/wpimath/include/Eigen/src/Core/arch/AVX/PacketMath.h +2883 -0
- native/wpimath/include/Eigen/src/Core/arch/AVX/TypeCasting.h +306 -0
- native/wpimath/include/Eigen/src/Core/arch/Default/BFloat16.h +855 -0
- native/wpimath/include/Eigen/src/Core/arch/Default/ConjHelper.h +128 -0
- native/wpimath/include/Eigen/src/Core/arch/Default/GenericPacketMathFunctions.h +2612 -0
- native/wpimath/include/Eigen/src/Core/arch/Default/GenericPacketMathFunctionsFwd.h +205 -0
- native/wpimath/include/Eigen/src/Core/arch/Default/Half.h +989 -0
- native/wpimath/include/Eigen/src/Core/arch/Default/Settings.h +47 -0
- native/wpimath/include/Eigen/src/Core/arch/NEON/Complex.h +752 -0
- native/wpimath/include/Eigen/src/Core/arch/NEON/GeneralBlockPanelKernel.h +243 -0
- native/wpimath/include/Eigen/src/Core/arch/NEON/MathFunctions.h +68 -0
- native/wpimath/include/Eigen/src/Core/arch/NEON/PacketMath.h +6177 -0
- native/wpimath/include/Eigen/src/Core/arch/NEON/TypeCasting.h +1642 -0
- native/wpimath/include/Eigen/src/Core/arch/NEON/UnaryFunctors.h +57 -0
- native/wpimath/include/Eigen/src/Core/arch/SSE/Complex.h +519 -0
- native/wpimath/include/Eigen/src/Core/arch/SSE/MathFunctions.h +88 -0
- native/wpimath/include/Eigen/src/Core/arch/SSE/PacketMath.h +2551 -0
- native/wpimath/include/Eigen/src/Core/arch/SSE/TypeCasting.h +230 -0
- native/wpimath/include/Eigen/src/Core/functors/AssignmentFunctors.h +181 -0
- native/wpimath/include/Eigen/src/Core/functors/BinaryFunctors.h +763 -0
- native/wpimath/include/Eigen/src/Core/functors/NullaryFunctors.h +263 -0
- native/wpimath/include/Eigen/src/Core/functors/StlFunctors.h +149 -0
- native/wpimath/include/Eigen/src/Core/functors/TernaryFunctors.h +52 -0
- native/wpimath/include/Eigen/src/Core/functors/UnaryFunctors.h +1416 -0
- native/wpimath/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h +3152 -0
- native/wpimath/include/Eigen/src/Core/products/GeneralMatrixMatrix.h +459 -0
- native/wpimath/include/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h +326 -0
- native/wpimath/include/Eigen/src/Core/products/GeneralMatrixVector.h +473 -0
- native/wpimath/include/Eigen/src/Core/products/Parallelizer.h +275 -0
- native/wpimath/include/Eigen/src/Core/products/SelfadjointMatrixMatrix.h +483 -0
- native/wpimath/include/Eigen/src/Core/products/SelfadjointMatrixVector.h +248 -0
- native/wpimath/include/Eigen/src/Core/products/SelfadjointProduct.h +133 -0
- native/wpimath/include/Eigen/src/Core/products/SelfadjointRank2Update.h +95 -0
- native/wpimath/include/Eigen/src/Core/products/TriangularMatrixMatrix.h +397 -0
- native/wpimath/include/Eigen/src/Core/products/TriangularMatrixVector.h +347 -0
- native/wpimath/include/Eigen/src/Core/products/TriangularSolverMatrix.h +388 -0
- native/wpimath/include/Eigen/src/Core/products/TriangularSolverVector.h +122 -0
- native/wpimath/include/Eigen/src/Core/util/Assert.h +158 -0
- native/wpimath/include/Eigen/src/Core/util/BlasUtil.h +622 -0
- native/wpimath/include/Eigen/src/Core/util/ConfigureVectorization.h +536 -0
- native/wpimath/include/Eigen/src/Core/util/Constants.h +595 -0
- native/wpimath/include/Eigen/src/Core/util/DisableStupidWarnings.h +152 -0
- native/wpimath/include/Eigen/src/Core/util/EmulateArray.h +270 -0
- native/wpimath/include/Eigen/src/Core/util/ForwardDeclarations.h +510 -0
- native/wpimath/include/Eigen/src/Core/util/IndexedViewHelper.h +487 -0
- native/wpimath/include/Eigen/src/Core/util/IntegralConstant.h +279 -0
- native/wpimath/include/Eigen/src/Core/util/Macros.h +1305 -0
- native/wpimath/include/Eigen/src/Core/util/MaxSizeVector.h +139 -0
- native/wpimath/include/Eigen/src/Core/util/Memory.h +1337 -0
- native/wpimath/include/Eigen/src/Core/util/Meta.h +753 -0
- native/wpimath/include/Eigen/src/Core/util/MoreMeta.h +630 -0
- native/wpimath/include/Eigen/src/Core/util/ReenableStupidWarnings.h +44 -0
- native/wpimath/include/Eigen/src/Core/util/ReshapedHelper.h +51 -0
- native/wpimath/include/Eigen/src/Core/util/Serializer.h +208 -0
- native/wpimath/include/Eigen/src/Core/util/StaticAssert.h +105 -0
- native/wpimath/include/Eigen/src/Core/util/SymbolicIndex.h +445 -0
- native/wpimath/include/Eigen/src/Core/util/XprHelper.h +1089 -0
- native/wpimath/include/Eigen/src/Eigenvalues/ComplexEigenSolver.h +315 -0
- native/wpimath/include/Eigen/src/Eigenvalues/ComplexSchur.h +442 -0
- native/wpimath/include/Eigen/src/Eigenvalues/EigenSolver.h +579 -0
- native/wpimath/include/Eigen/src/Eigenvalues/GeneralizedEigenSolver.h +402 -0
- native/wpimath/include/Eigen/src/Eigenvalues/GeneralizedSelfAdjointEigenSolver.h +212 -0
- native/wpimath/include/Eigen/src/Eigenvalues/HessenbergDecomposition.h +356 -0
- native/wpimath/include/Eigen/src/Eigenvalues/InternalHeaderCheck.h +3 -0
- native/wpimath/include/Eigen/src/Eigenvalues/MatrixBaseEigenvalues.h +142 -0
- native/wpimath/include/Eigen/src/Eigenvalues/RealQZ.h +587 -0
- native/wpimath/include/Eigen/src/Eigenvalues/RealSchur.h +519 -0
- native/wpimath/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h +850 -0
- native/wpimath/include/Eigen/src/Eigenvalues/Tridiagonalization.h +527 -0
- native/wpimath/include/Eigen/src/Geometry/AlignedBox.h +485 -0
- native/wpimath/include/Eigen/src/Geometry/AngleAxis.h +245 -0
- native/wpimath/include/Eigen/src/Geometry/EulerAngles.h +203 -0
- native/wpimath/include/Eigen/src/Geometry/Homogeneous.h +455 -0
- native/wpimath/include/Eigen/src/Geometry/Hyperplane.h +273 -0
- native/wpimath/include/Eigen/src/Geometry/InternalHeaderCheck.h +3 -0
- native/wpimath/include/Eigen/src/Geometry/OrthoMethods.h +259 -0
- native/wpimath/include/Eigen/src/Geometry/ParametrizedLine.h +232 -0
- native/wpimath/include/Eigen/src/Geometry/Quaternion.h +857 -0
- native/wpimath/include/Eigen/src/Geometry/Rotation2D.h +201 -0
- native/wpimath/include/Eigen/src/Geometry/RotationBase.h +209 -0
- native/wpimath/include/Eigen/src/Geometry/Scaling.h +195 -0
- native/wpimath/include/Eigen/src/Geometry/Transform.h +1484 -0
- native/wpimath/include/Eigen/src/Geometry/Translation.h +204 -0
- native/wpimath/include/Eigen/src/Geometry/Umeyama.h +165 -0
- native/wpimath/include/Eigen/src/Geometry/arch/Geometry_SIMD.h +154 -0
- native/wpimath/include/Eigen/src/Householder/BlockHouseholder.h +115 -0
- native/wpimath/include/Eigen/src/Householder/Householder.h +155 -0
- native/wpimath/include/Eigen/src/Householder/HouseholderSequence.h +502 -0
- native/wpimath/include/Eigen/src/Householder/InternalHeaderCheck.h +3 -0
- native/wpimath/include/Eigen/src/IterativeLinearSolvers/BasicPreconditioners.h +213 -0
- native/wpimath/include/Eigen/src/IterativeLinearSolvers/BiCGSTAB.h +202 -0
- native/wpimath/include/Eigen/src/IterativeLinearSolvers/ConjugateGradient.h +217 -0
- native/wpimath/include/Eigen/src/IterativeLinearSolvers/IncompleteCholesky.h +402 -0
- native/wpimath/include/Eigen/src/IterativeLinearSolvers/IncompleteLUT.h +421 -0
- native/wpimath/include/Eigen/src/IterativeLinearSolvers/InternalHeaderCheck.h +3 -0
- native/wpimath/include/Eigen/src/IterativeLinearSolvers/IterativeSolverBase.h +395 -0
- native/wpimath/include/Eigen/src/IterativeLinearSolvers/LeastSquareConjugateGradient.h +193 -0
- native/wpimath/include/Eigen/src/IterativeLinearSolvers/SolveWithGuess.h +111 -0
- native/wpimath/include/Eigen/src/Jacobi/InternalHeaderCheck.h +3 -0
- native/wpimath/include/Eigen/src/Jacobi/Jacobi.h +427 -0
- native/wpimath/include/Eigen/src/LU/Determinant.h +98 -0
- native/wpimath/include/Eigen/src/LU/FullPivLU.h +812 -0
- native/wpimath/include/Eigen/src/LU/InternalHeaderCheck.h +3 -0
- native/wpimath/include/Eigen/src/LU/InverseImpl.h +353 -0
- native/wpimath/include/Eigen/src/LU/PartialPivLU.h +575 -0
- native/wpimath/include/Eigen/src/LU/arch/InverseSize4.h +353 -0
- native/wpimath/include/Eigen/src/OrderingMethods/Amd.h +413 -0
- native/wpimath/include/Eigen/src/OrderingMethods/Eigen_Colamd.h +1690 -0
- native/wpimath/include/Eigen/src/OrderingMethods/InternalHeaderCheck.h +3 -0
- native/wpimath/include/Eigen/src/OrderingMethods/Ordering.h +148 -0
- native/wpimath/include/Eigen/src/QR/ColPivHouseholderQR.h +674 -0
- native/wpimath/include/Eigen/src/QR/CompleteOrthogonalDecomposition.h +648 -0
- native/wpimath/include/Eigen/src/QR/FullPivHouseholderQR.h +722 -0
- native/wpimath/include/Eigen/src/QR/HouseholderQR.h +532 -0
- native/wpimath/include/Eigen/src/QR/InternalHeaderCheck.h +3 -0
- native/wpimath/include/Eigen/src/SVD/BDCSVD.h +1453 -0
- native/wpimath/include/Eigen/src/SVD/InternalHeaderCheck.h +3 -0
- native/wpimath/include/Eigen/src/SVD/JacobiSVD.h +807 -0
- native/wpimath/include/Eigen/src/SVD/SVDBase.h +436 -0
- native/wpimath/include/Eigen/src/SVD/UpperBidiagonalization.h +379 -0
- native/wpimath/include/Eigen/src/SparseCholesky/InternalHeaderCheck.h +3 -0
- native/wpimath/include/Eigen/src/SparseCholesky/SimplicialCholesky.h +863 -0
- native/wpimath/include/Eigen/src/SparseCholesky/SimplicialCholesky_impl.h +158 -0
- native/wpimath/include/Eigen/src/SparseCore/AmbiVector.h +329 -0
- native/wpimath/include/Eigen/src/SparseCore/CompressedStorage.h +206 -0
- native/wpimath/include/Eigen/src/SparseCore/ConservativeSparseSparseProduct.h +308 -0
- native/wpimath/include/Eigen/src/SparseCore/InternalHeaderCheck.h +3 -0
- native/wpimath/include/Eigen/src/SparseCore/SparseAssign.h +279 -0
- native/wpimath/include/Eigen/src/SparseCore/SparseBlock.h +534 -0
- native/wpimath/include/Eigen/src/SparseCore/SparseColEtree.h +194 -0
- native/wpimath/include/Eigen/src/SparseCore/SparseCompressedBase.h +591 -0
- native/wpimath/include/Eigen/src/SparseCore/SparseCwiseBinaryOp.h +938 -0
- native/wpimath/include/Eigen/src/SparseCore/SparseCwiseUnaryOp.h +142 -0
- native/wpimath/include/Eigen/src/SparseCore/SparseDenseProduct.h +314 -0
- native/wpimath/include/Eigen/src/SparseCore/SparseDiagonalProduct.h +138 -0
- native/wpimath/include/Eigen/src/SparseCore/SparseDot.h +100 -0
- native/wpimath/include/Eigen/src/SparseCore/SparseFuzzy.h +31 -0
- native/wpimath/include/Eigen/src/SparseCore/SparseMap.h +295 -0
- native/wpimath/include/Eigen/src/SparseCore/SparseMatrix.h +1868 -0
- native/wpimath/include/Eigen/src/SparseCore/SparseMatrixBase.h +400 -0
- native/wpimath/include/Eigen/src/SparseCore/SparsePermutation.h +249 -0
- native/wpimath/include/Eigen/src/SparseCore/SparseProduct.h +178 -0
- native/wpimath/include/Eigen/src/SparseCore/SparseRedux.h +47 -0
- native/wpimath/include/Eigen/src/SparseCore/SparseRef.h +370 -0
- native/wpimath/include/Eigen/src/SparseCore/SparseSelfAdjointView.h +613 -0
- native/wpimath/include/Eigen/src/SparseCore/SparseSolverBase.h +115 -0
- native/wpimath/include/Eigen/src/SparseCore/SparseSparseProductWithPruning.h +184 -0
- native/wpimath/include/Eigen/src/SparseCore/SparseTranspose.h +83 -0
- native/wpimath/include/Eigen/src/SparseCore/SparseTriangularView.h +177 -0
- native/wpimath/include/Eigen/src/SparseCore/SparseUtil.h +209 -0
- native/wpimath/include/Eigen/src/SparseCore/SparseVector.h +532 -0
- native/wpimath/include/Eigen/src/SparseCore/SparseView.h +225 -0
- native/wpimath/include/Eigen/src/SparseCore/TriangularSolver.h +266 -0
- native/wpimath/include/Eigen/src/SparseLU/InternalHeaderCheck.h +3 -0
- native/wpimath/include/Eigen/src/SparseLU/SparseLU.h +969 -0
- native/wpimath/include/Eigen/src/SparseLU/SparseLUImpl.h +79 -0
- native/wpimath/include/Eigen/src/SparseLU/SparseLU_Memory.h +210 -0
- native/wpimath/include/Eigen/src/SparseLU/SparseLU_Structs.h +113 -0
- native/wpimath/include/Eigen/src/SparseLU/SparseLU_SupernodalMatrix.h +319 -0
- native/wpimath/include/Eigen/src/SparseLU/SparseLU_Utils.h +75 -0
- native/wpimath/include/Eigen/src/SparseLU/SparseLU_column_bmod.h +177 -0
- native/wpimath/include/Eigen/src/SparseLU/SparseLU_column_dfs.h +168 -0
- native/wpimath/include/Eigen/src/SparseLU/SparseLU_copy_to_ucol.h +106 -0
- native/wpimath/include/Eigen/src/SparseLU/SparseLU_heap_relax_snode.h +114 -0
- native/wpimath/include/Eigen/src/SparseLU/SparseLU_kernel_bmod.h +133 -0
- native/wpimath/include/Eigen/src/SparseLU/SparseLU_panel_bmod.h +215 -0
- native/wpimath/include/Eigen/src/SparseLU/SparseLU_panel_dfs.h +235 -0
- native/wpimath/include/Eigen/src/SparseLU/SparseLU_pivotL.h +136 -0
- native/wpimath/include/Eigen/src/SparseLU/SparseLU_pruneL.h +130 -0
- native/wpimath/include/Eigen/src/SparseLU/SparseLU_relax_snode.h +81 -0
- native/wpimath/include/Eigen/src/SparseQR/InternalHeaderCheck.h +3 -0
- native/wpimath/include/Eigen/src/SparseQR/SparseQR.h +704 -0
- native/wpimath/include/Eigen/src/ThreadPool/CoreThreadPoolDevice.h +327 -0
- native/wpimath/include/Eigen/src/misc/Image.h +80 -0
- native/wpimath/include/Eigen/src/misc/InternalHeaderCheck.h +3 -0
- native/wpimath/include/Eigen/src/misc/Kernel.h +77 -0
- native/wpimath/include/Eigen/src/misc/RealSvd2x2.h +53 -0
- native/wpimath/include/Eigen/src/plugins/ArrayCwiseBinaryOps.inc +347 -0
- native/wpimath/include/Eigen/src/plugins/ArrayCwiseUnaryOps.inc +548 -0
- native/wpimath/include/Eigen/src/plugins/BlockMethods.inc +1370 -0
- native/wpimath/include/Eigen/src/plugins/CommonCwiseBinaryOps.inc +133 -0
- native/wpimath/include/Eigen/src/plugins/CommonCwiseUnaryOps.inc +167 -0
- native/wpimath/include/Eigen/src/plugins/IndexedViewMethods.inc +192 -0
- native/wpimath/include/Eigen/src/plugins/InternalHeaderCheck.inc +3 -0
- native/wpimath/include/Eigen/src/plugins/MatrixCwiseBinaryOps.inc +331 -0
- native/wpimath/include/Eigen/src/plugins/MatrixCwiseUnaryOps.inc +121 -0
- native/wpimath/include/Eigen/src/plugins/ReshapedMethods.inc +133 -0
- native/wpimath/include/frc/ComputerVisionUtil.h +41 -0
- native/wpimath/include/frc/DARE.h +359 -0
- native/wpimath/include/frc/EigenCore.h +23 -0
- native/wpimath/include/frc/MathUtil.h +277 -0
- native/wpimath/include/frc/StateSpaceUtil.h +369 -0
- native/wpimath/include/frc/controller/ArmFeedforward.h +322 -0
- native/wpimath/include/frc/controller/BangBangController.h +143 -0
- native/wpimath/include/frc/controller/ControlAffinePlantInversionFeedforward.h +195 -0
- native/wpimath/include/frc/controller/DifferentialDriveAccelerationLimiter.h +98 -0
- native/wpimath/include/frc/controller/DifferentialDriveFeedforward.h +103 -0
- native/wpimath/include/frc/controller/DifferentialDriveWheelVoltages.h +25 -0
- native/wpimath/include/frc/controller/ElevatorFeedforward.h +294 -0
- native/wpimath/include/frc/controller/HolonomicDriveController.h +218 -0
- native/wpimath/include/frc/controller/ImplicitModelFollower.h +127 -0
- native/wpimath/include/frc/controller/LTVDifferentialDriveController.h +138 -0
- native/wpimath/include/frc/controller/LTVUnicycleController.h +135 -0
- native/wpimath/include/frc/controller/LinearPlantInversionFeedforward.h +162 -0
- native/wpimath/include/frc/controller/LinearQuadraticRegulator.h +320 -0
- native/wpimath/include/frc/controller/PIDController.h +460 -0
- native/wpimath/include/frc/controller/ProfiledPIDController.h +457 -0
- native/wpimath/include/frc/controller/RamseteController.h +193 -0
- native/wpimath/include/frc/controller/SimpleMotorFeedforward.h +260 -0
- native/wpimath/include/frc/controller/proto/ArmFeedforwardProto.h +21 -0
- native/wpimath/include/frc/controller/proto/DifferentialDriveFeedforwardProto.h +24 -0
- native/wpimath/include/frc/controller/proto/DifferentialDriveWheelVoltagesProto.h +25 -0
- native/wpimath/include/frc/controller/proto/ElevatorFeedforwardProto.h +21 -0
- native/wpimath/include/frc/controller/proto/SimpleMotorFeedforwardProto.h +60 -0
- native/wpimath/include/frc/controller/struct/ArmFeedforwardStruct.h +24 -0
- native/wpimath/include/frc/controller/struct/DifferentialDriveFeedforwardStruct.h +29 -0
- native/wpimath/include/frc/controller/struct/DifferentialDriveWheelVoltagesStruct.h +28 -0
- native/wpimath/include/frc/controller/struct/ElevatorFeedforwardStruct.h +27 -0
- native/wpimath/include/frc/controller/struct/SimpleMotorFeedforwardStruct.h +69 -0
- native/wpimath/include/frc/ct_matrix.h +389 -0
- native/wpimath/include/frc/estimator/AngleStatistics.h +128 -0
- native/wpimath/include/frc/estimator/DifferentialDrivePoseEstimator.h +134 -0
- native/wpimath/include/frc/estimator/DifferentialDrivePoseEstimator3d.h +139 -0
- native/wpimath/include/frc/estimator/ExtendedKalmanFilter.h +428 -0
- native/wpimath/include/frc/estimator/KalmanFilter.h +267 -0
- native/wpimath/include/frc/estimator/KalmanFilterLatencyCompensator.h +180 -0
- native/wpimath/include/frc/estimator/MecanumDrivePoseEstimator.h +85 -0
- native/wpimath/include/frc/estimator/MecanumDrivePoseEstimator3d.h +90 -0
- native/wpimath/include/frc/estimator/MerweScaledSigmaPoints.h +131 -0
- native/wpimath/include/frc/estimator/PoseEstimator.h +440 -0
- native/wpimath/include/frc/estimator/PoseEstimator3d.h +451 -0
- native/wpimath/include/frc/estimator/SteadyStateKalmanFilter.h +241 -0
- native/wpimath/include/frc/estimator/SwerveDrivePoseEstimator.h +98 -0
- native/wpimath/include/frc/estimator/SwerveDrivePoseEstimator3d.h +104 -0
- native/wpimath/include/frc/estimator/UnscentedKalmanFilter.h +496 -0
- native/wpimath/include/frc/estimator/UnscentedTransform.h +101 -0
- native/wpimath/include/frc/filter/Debouncer.h +94 -0
- native/wpimath/include/frc/filter/LinearFilter.h +410 -0
- native/wpimath/include/frc/filter/MedianFilter.h +85 -0
- native/wpimath/include/frc/filter/SlewRateLimiter.h +101 -0
- native/wpimath/include/frc/fmt/Eigen.h +51 -0
- native/wpimath/include/frc/geometry/CoordinateAxis.h +77 -0
- native/wpimath/include/frc/geometry/CoordinateSystem.h +143 -0
- native/wpimath/include/frc/geometry/Ellipse2d.h +214 -0
- native/wpimath/include/frc/geometry/Pose2d.h +370 -0
- native/wpimath/include/frc/geometry/Pose3d.h +468 -0
- native/wpimath/include/frc/geometry/Quaternion.h +338 -0
- native/wpimath/include/frc/geometry/Rectangle2d.h +210 -0
- native/wpimath/include/frc/geometry/Rotation2d.h +262 -0
- native/wpimath/include/frc/geometry/Rotation3d.h +453 -0
- native/wpimath/include/frc/geometry/Transform2d.h +186 -0
- native/wpimath/include/frc/geometry/Transform3d.h +211 -0
- native/wpimath/include/frc/geometry/Translation2d.h +274 -0
- native/wpimath/include/frc/geometry/Translation3d.h +262 -0
- native/wpimath/include/frc/geometry/Twist2d.h +64 -0
- native/wpimath/include/frc/geometry/Twist3d.h +83 -0
- native/wpimath/include/frc/geometry/proto/Ellipse2dProto.h +20 -0
- native/wpimath/include/frc/geometry/proto/Pose2dProto.h +21 -0
- native/wpimath/include/frc/geometry/proto/Pose3dProto.h +20 -0
- native/wpimath/include/frc/geometry/proto/QuaternionProto.h +20 -0
- native/wpimath/include/frc/geometry/proto/Rectangle2dProto.h +20 -0
- native/wpimath/include/frc/geometry/proto/Rotation2dProto.h +21 -0
- native/wpimath/include/frc/geometry/proto/Rotation3dProto.h +20 -0
- native/wpimath/include/frc/geometry/proto/Transform2dProto.h +20 -0
- native/wpimath/include/frc/geometry/proto/Transform3dProto.h +20 -0
- native/wpimath/include/frc/geometry/proto/Translation2dProto.h +21 -0
- native/wpimath/include/frc/geometry/proto/Translation3dProto.h +20 -0
- native/wpimath/include/frc/geometry/proto/Twist2dProto.h +20 -0
- native/wpimath/include/frc/geometry/proto/Twist3dProto.h +20 -0
- native/wpimath/include/frc/geometry/struct/Ellipse2dStruct.h +31 -0
- native/wpimath/include/frc/geometry/struct/Pose2dStruct.h +33 -0
- native/wpimath/include/frc/geometry/struct/Pose3dStruct.h +33 -0
- native/wpimath/include/frc/geometry/struct/QuaternionStruct.h +24 -0
- native/wpimath/include/frc/geometry/struct/Rectangle2dStruct.h +31 -0
- native/wpimath/include/frc/geometry/struct/Rotation2dStruct.h +22 -0
- native/wpimath/include/frc/geometry/struct/Rotation3dStruct.h +29 -0
- native/wpimath/include/frc/geometry/struct/Transform2dStruct.h +33 -0
- native/wpimath/include/frc/geometry/struct/Transform3dStruct.h +33 -0
- native/wpimath/include/frc/geometry/struct/Translation2dStruct.h +22 -0
- native/wpimath/include/frc/geometry/struct/Translation3dStruct.h +24 -0
- native/wpimath/include/frc/geometry/struct/Twist2dStruct.h +24 -0
- native/wpimath/include/frc/geometry/struct/Twist3dStruct.h +24 -0
- native/wpimath/include/frc/interpolation/TimeInterpolatableBuffer.h +175 -0
- native/wpimath/include/frc/kinematics/ChassisSpeeds.h +291 -0
- native/wpimath/include/frc/kinematics/DifferentialDriveKinematics.h +108 -0
- native/wpimath/include/frc/kinematics/DifferentialDriveOdometry.h +87 -0
- native/wpimath/include/frc/kinematics/DifferentialDriveOdometry3d.h +87 -0
- native/wpimath/include/frc/kinematics/DifferentialDriveWheelPositions.h +46 -0
- native/wpimath/include/frc/kinematics/DifferentialDriveWheelSpeeds.h +126 -0
- native/wpimath/include/frc/kinematics/Kinematics.h +79 -0
- native/wpimath/include/frc/kinematics/MecanumDriveKinematics.h +204 -0
- native/wpimath/include/frc/kinematics/MecanumDriveOdometry.h +48 -0
- native/wpimath/include/frc/kinematics/MecanumDriveOdometry3d.h +48 -0
- native/wpimath/include/frc/kinematics/MecanumDriveWheelPositions.h +57 -0
- native/wpimath/include/frc/kinematics/MecanumDriveWheelSpeeds.h +148 -0
- native/wpimath/include/frc/kinematics/Odometry.h +143 -0
- native/wpimath/include/frc/kinematics/Odometry3d.h +152 -0
- native/wpimath/include/frc/kinematics/SwerveDriveKinematics.h +462 -0
- native/wpimath/include/frc/kinematics/SwerveDriveOdometry.h +62 -0
- native/wpimath/include/frc/kinematics/SwerveDriveOdometry3d.h +70 -0
- native/wpimath/include/frc/kinematics/SwerveModulePosition.h +49 -0
- native/wpimath/include/frc/kinematics/SwerveModuleState.h +90 -0
- native/wpimath/include/frc/kinematics/proto/ChassisSpeedsProto.h +20 -0
- native/wpimath/include/frc/kinematics/proto/DifferentialDriveKinematicsProto.h +22 -0
- native/wpimath/include/frc/kinematics/proto/DifferentialDriveWheelPositionsProto.h +24 -0
- native/wpimath/include/frc/kinematics/proto/DifferentialDriveWheelSpeedsProto.h +23 -0
- native/wpimath/include/frc/kinematics/proto/MecanumDriveKinematicsProto.h +21 -0
- native/wpimath/include/frc/kinematics/proto/MecanumDriveWheelPositionsProto.h +22 -0
- native/wpimath/include/frc/kinematics/proto/MecanumDriveWheelSpeedsProto.h +22 -0
- native/wpimath/include/frc/kinematics/proto/SwerveDriveKinematicsProto.h +46 -0
- native/wpimath/include/frc/kinematics/proto/SwerveModulePositionProto.h +21 -0
- native/wpimath/include/frc/kinematics/proto/SwerveModuleStateProto.h +20 -0
- native/wpimath/include/frc/kinematics/struct/ChassisSpeedsStruct.h +24 -0
- native/wpimath/include/frc/kinematics/struct/DifferentialDriveKinematicsStruct.h +25 -0
- native/wpimath/include/frc/kinematics/struct/DifferentialDriveWheelPositionsStruct.h +28 -0
- native/wpimath/include/frc/kinematics/struct/DifferentialDriveWheelSpeedsStruct.h +28 -0
- native/wpimath/include/frc/kinematics/struct/MecanumDriveKinematicsStruct.h +35 -0
- native/wpimath/include/frc/kinematics/struct/MecanumDriveWheelPositionsStruct.h +28 -0
- native/wpimath/include/frc/kinematics/struct/MecanumDriveWheelSpeedsStruct.h +28 -0
- native/wpimath/include/frc/kinematics/struct/SwerveDriveKinematicsStruct.h +49 -0
- native/wpimath/include/frc/kinematics/struct/SwerveModulePositionStruct.h +34 -0
- native/wpimath/include/frc/kinematics/struct/SwerveModuleStateStruct.h +34 -0
- native/wpimath/include/frc/optimization/SimulatedAnnealing.h +101 -0
- native/wpimath/include/frc/path/TravelingSalesman.h +179 -0
- native/wpimath/include/frc/proto/MatrixProto.h +71 -0
- native/wpimath/include/frc/proto/VectorProto.h +64 -0
- native/wpimath/include/frc/spline/CubicHermiteSpline.h +151 -0
- native/wpimath/include/frc/spline/QuinticHermiteSpline.h +158 -0
- native/wpimath/include/frc/spline/Spline.h +150 -0
- native/wpimath/include/frc/spline/SplineHelper.h +369 -0
- native/wpimath/include/frc/spline/SplineParameterizer.h +151 -0
- native/wpimath/include/frc/spline/proto/CubicHermiteSplineProto.h +20 -0
- native/wpimath/include/frc/spline/proto/QuinticHermiteSplineProto.h +21 -0
- native/wpimath/include/frc/spline/struct/CubicHermiteSplineStruct.h +28 -0
- native/wpimath/include/frc/spline/struct/QuinticHermiteSplineStruct.h +28 -0
- native/wpimath/include/frc/struct/MatrixStruct.h +51 -0
- native/wpimath/include/frc/struct/VectorStruct.h +48 -0
- native/wpimath/include/frc/system/Discretization.h +119 -0
- native/wpimath/include/frc/system/LinearSystem.h +258 -0
- native/wpimath/include/frc/system/LinearSystemLoop.h +294 -0
- native/wpimath/include/frc/system/NumericalIntegration.h +240 -0
- native/wpimath/include/frc/system/NumericalJacobian.h +77 -0
- native/wpimath/include/frc/system/plant/DCMotor.h +262 -0
- native/wpimath/include/frc/system/plant/LinearSystemId.h +466 -0
- native/wpimath/include/frc/system/plant/proto/DCMotorProto.h +20 -0
- native/wpimath/include/frc/system/plant/struct/DCMotorStruct.h +26 -0
- native/wpimath/include/frc/system/proto/LinearSystemProto.h +88 -0
- native/wpimath/include/frc/system/struct/LinearSystemStruct.h +77 -0
- native/wpimath/include/frc/trajectory/ExponentialProfile.h +483 -0
- native/wpimath/include/frc/trajectory/Trajectory.h +276 -0
- native/wpimath/include/frc/trajectory/TrajectoryConfig.h +164 -0
- native/wpimath/include/frc/trajectory/TrajectoryGenerator.h +130 -0
- native/wpimath/include/frc/trajectory/TrajectoryParameterizer.h +106 -0
- native/wpimath/include/frc/trajectory/TrajectoryUtil.h +61 -0
- native/wpimath/include/frc/trajectory/TrapezoidProfile.h +324 -0
- native/wpimath/include/frc/trajectory/constraint/CentripetalAccelerationConstraint.h +61 -0
- native/wpimath/include/frc/trajectory/constraint/DifferentialDriveKinematicsConstraint.h +50 -0
- native/wpimath/include/frc/trajectory/constraint/DifferentialDriveVoltageConstraint.h +130 -0
- native/wpimath/include/frc/trajectory/constraint/EllipticalRegionConstraint.h +81 -0
- native/wpimath/include/frc/trajectory/constraint/MaxVelocityConstraint.h +47 -0
- native/wpimath/include/frc/trajectory/constraint/MecanumDriveKinematicsConstraint.h +53 -0
- native/wpimath/include/frc/trajectory/constraint/RectangularRegionConstraint.h +76 -0
- native/wpimath/include/frc/trajectory/constraint/SwerveDriveKinematicsConstraint.h +53 -0
- native/wpimath/include/frc/trajectory/constraint/TrajectoryConstraint.h +79 -0
- native/wpimath/include/frc/trajectory/proto/TrajectoryProto.h +20 -0
- native/wpimath/include/frc/trajectory/proto/TrajectoryStateProto.h +20 -0
- native/wpimath/include/gcem.hpp +104 -0
- native/wpimath/include/gcem_incl/abs.hpp +57 -0
- native/wpimath/include/gcem_incl/acos.hpp +96 -0
- native/wpimath/include/gcem_incl/acosh.hpp +80 -0
- native/wpimath/include/gcem_incl/asin.hpp +94 -0
- native/wpimath/include/gcem_incl/asinh.hpp +77 -0
- native/wpimath/include/gcem_incl/atan.hpp +229 -0
- native/wpimath/include/gcem_incl/atan2.hpp +100 -0
- native/wpimath/include/gcem_incl/atanh.hpp +91 -0
- native/wpimath/include/gcem_incl/beta.hpp +58 -0
- native/wpimath/include/gcem_incl/binomial_coef.hpp +96 -0
- native/wpimath/include/gcem_incl/ceil.hpp +142 -0
- native/wpimath/include/gcem_incl/copysign.hpp +53 -0
- native/wpimath/include/gcem_incl/cos.hpp +95 -0
- native/wpimath/include/gcem_incl/cosh.hpp +77 -0
- native/wpimath/include/gcem_incl/erf.hpp +203 -0
- native/wpimath/include/gcem_incl/erf_inv.hpp +268 -0
- native/wpimath/include/gcem_incl/exp.hpp +142 -0
- native/wpimath/include/gcem_incl/expm1.hpp +88 -0
- native/wpimath/include/gcem_incl/fabs.hpp +45 -0
- native/wpimath/include/gcem_incl/fabsf.hpp +45 -0
- native/wpimath/include/gcem_incl/fabsl.hpp +45 -0
- native/wpimath/include/gcem_incl/factorial.hpp +105 -0
- native/wpimath/include/gcem_incl/find_exponent.hpp +62 -0
- native/wpimath/include/gcem_incl/find_fraction.hpp +51 -0
- native/wpimath/include/gcem_incl/find_whole.hpp +51 -0
- native/wpimath/include/gcem_incl/floor.hpp +142 -0
- native/wpimath/include/gcem_incl/fmod.hpp +82 -0
- native/wpimath/include/gcem_incl/gcd.hpp +87 -0
- native/wpimath/include/gcem_incl/gcem_options.hpp +213 -0
- native/wpimath/include/gcem_incl/hypot.hpp +181 -0
- native/wpimath/include/gcem_incl/incomplete_beta.hpp +199 -0
- native/wpimath/include/gcem_incl/incomplete_beta_inv.hpp +357 -0
- native/wpimath/include/gcem_incl/incomplete_gamma.hpp +252 -0
- native/wpimath/include/gcem_incl/incomplete_gamma_inv.hpp +276 -0
- native/wpimath/include/gcem_incl/inv_sqrt.hpp +93 -0
- native/wpimath/include/gcem_incl/is_even.hpp +46 -0
- native/wpimath/include/gcem_incl/is_finite.hpp +83 -0
- native/wpimath/include/gcem_incl/is_inf.hpp +177 -0
- native/wpimath/include/gcem_incl/is_nan.hpp +85 -0
- native/wpimath/include/gcem_incl/is_odd.hpp +47 -0
- native/wpimath/include/gcem_incl/lbeta.hpp +47 -0
- native/wpimath/include/gcem_incl/lcm.hpp +70 -0
- native/wpimath/include/gcem_incl/lgamma.hpp +147 -0
- native/wpimath/include/gcem_incl/lmgamma.hpp +78 -0
- native/wpimath/include/gcem_incl/log.hpp +198 -0
- native/wpimath/include/gcem_incl/log10.hpp +71 -0
- native/wpimath/include/gcem_incl/log1p.hpp +92 -0
- native/wpimath/include/gcem_incl/log2.hpp +71 -0
- native/wpimath/include/gcem_incl/log_binomial_coef.hpp +70 -0
- native/wpimath/include/gcem_incl/mantissa.hpp +52 -0
- native/wpimath/include/gcem_incl/max.hpp +53 -0
- native/wpimath/include/gcem_incl/min.hpp +53 -0
- native/wpimath/include/gcem_incl/neg_zero.hpp +42 -0
- native/wpimath/include/gcem_incl/pow.hpp +94 -0
- native/wpimath/include/gcem_incl/pow_integral.hpp +133 -0
- native/wpimath/include/gcem_incl/quadrature/gauss_legendre_30.hpp +96 -0
- native/wpimath/include/gcem_incl/quadrature/gauss_legendre_50.hpp +136 -0
- native/wpimath/include/gcem_incl/round.hpp +137 -0
- native/wpimath/include/gcem_incl/sgn.hpp +50 -0
- native/wpimath/include/gcem_incl/signbit.hpp +56 -0
- native/wpimath/include/gcem_incl/sin.hpp +97 -0
- native/wpimath/include/gcem_incl/sinh.hpp +77 -0
- native/wpimath/include/gcem_incl/sqrt.hpp +121 -0
- native/wpimath/include/gcem_incl/tan.hpp +152 -0
- native/wpimath/include/gcem_incl/tanh.hpp +125 -0
- native/wpimath/include/gcem_incl/tgamma.hpp +92 -0
- native/wpimath/include/gcem_incl/trunc.hpp +133 -0
- native/wpimath/include/sleipnir/autodiff/Expression.hpp +1144 -0
- native/wpimath/include/sleipnir/autodiff/ExpressionGraph.hpp +244 -0
- native/wpimath/include/sleipnir/autodiff/ExpressionType.hpp +27 -0
- native/wpimath/include/sleipnir/autodiff/Gradient.hpp +73 -0
- native/wpimath/include/sleipnir/autodiff/Hessian.hpp +79 -0
- native/wpimath/include/sleipnir/autodiff/Jacobian.hpp +155 -0
- native/wpimath/include/sleipnir/autodiff/Profiler.hpp +79 -0
- native/wpimath/include/sleipnir/autodiff/Slice.hpp +158 -0
- native/wpimath/include/sleipnir/autodiff/Variable.hpp +761 -0
- native/wpimath/include/sleipnir/autodiff/VariableBlock.hpp +765 -0
- native/wpimath/include/sleipnir/autodiff/VariableMatrix.hpp +1096 -0
- native/wpimath/include/sleipnir/control/OCPSolver.hpp +471 -0
- native/wpimath/include/sleipnir/optimization/Multistart.hpp +75 -0
- native/wpimath/include/sleipnir/optimization/OptimizationProblem.hpp +386 -0
- native/wpimath/include/sleipnir/optimization/SolverConfig.hpp +54 -0
- native/wpimath/include/sleipnir/optimization/SolverExitCondition.hpp +80 -0
- native/wpimath/include/sleipnir/optimization/SolverIterationInfo.hpp +36 -0
- native/wpimath/include/sleipnir/optimization/SolverStatus.hpp +32 -0
- native/wpimath/include/sleipnir/optimization/solver/InteriorPoint.hpp +55 -0
- native/wpimath/include/sleipnir/optimization/solver/SQP.hpp +46 -0
- native/wpimath/include/sleipnir/util/Assert.hpp +25 -0
- native/wpimath/include/sleipnir/util/Concepts.hpp +33 -0
- native/wpimath/include/sleipnir/util/FunctionRef.hpp +100 -0
- native/wpimath/include/sleipnir/util/IntrusiveSharedPtr.hpp +216 -0
- native/wpimath/include/sleipnir/util/Pool.hpp +162 -0
- native/wpimath/include/sleipnir/util/Print.hpp +61 -0
- native/wpimath/include/sleipnir/util/Spy.hpp +89 -0
- native/wpimath/include/sleipnir/util/SymbolExports.hpp +192 -0
- native/wpimath/include/units/acceleration.h +56 -0
- native/wpimath/include/units/angle.h +56 -0
- native/wpimath/include/units/angular_acceleration.h +42 -0
- native/wpimath/include/units/angular_jerk.h +34 -0
- native/wpimath/include/units/angular_velocity.h +60 -0
- native/wpimath/include/units/area.h +56 -0
- native/wpimath/include/units/base.h +3450 -0
- native/wpimath/include/units/capacitance.h +51 -0
- native/wpimath/include/units/charge.h +53 -0
- native/wpimath/include/units/concentration.h +56 -0
- native/wpimath/include/units/conductance.h +51 -0
- native/wpimath/include/units/constants.h +102 -0
- native/wpimath/include/units/current.h +50 -0
- native/wpimath/include/units/curvature.h +14 -0
- native/wpimath/include/units/data.h +52 -0
- native/wpimath/include/units/data_transfer_rate.h +57 -0
- native/wpimath/include/units/density.h +70 -0
- native/wpimath/include/units/dimensionless.h +36 -0
- native/wpimath/include/units/energy.h +65 -0
- native/wpimath/include/units/force.h +62 -0
- native/wpimath/include/units/formatter.h +221 -0
- native/wpimath/include/units/frequency.h +50 -0
- native/wpimath/include/units/illuminance.h +61 -0
- native/wpimath/include/units/impedance.h +50 -0
- native/wpimath/include/units/inductance.h +50 -0
- native/wpimath/include/units/length.h +72 -0
- native/wpimath/include/units/luminous_flux.h +51 -0
- native/wpimath/include/units/luminous_intensity.h +51 -0
- native/wpimath/include/units/magnetic_field_strength.h +59 -0
- native/wpimath/include/units/magnetic_flux.h +53 -0
- native/wpimath/include/units/mass.h +58 -0
- native/wpimath/include/units/math.h +757 -0
- native/wpimath/include/units/moment_of_inertia.h +16 -0
- native/wpimath/include/units/power.h +51 -0
- native/wpimath/include/units/pressure.h +59 -0
- native/wpimath/include/units/radiation.h +69 -0
- native/wpimath/include/units/solid_angle.h +56 -0
- native/wpimath/include/units/substance.h +49 -0
- native/wpimath/include/units/temperature.h +59 -0
- native/wpimath/include/units/time.h +57 -0
- native/wpimath/include/units/torque.h +60 -0
- native/wpimath/include/units/velocity.h +59 -0
- native/wpimath/include/units/voltage.h +52 -0
- native/wpimath/include/units/volume.h +83 -0
- native/wpimath/include/unsupported/Eigen/MatrixFunctions +504 -0
- native/wpimath/include/unsupported/Eigen/src/MatrixFunctions/InternalHeaderCheck.h +4 -0
- native/wpimath/include/unsupported/Eigen/src/MatrixFunctions/MatrixExponential.h +444 -0
- native/wpimath/include/unsupported/Eigen/src/MatrixFunctions/MatrixFunction.h +543 -0
- native/wpimath/include/unsupported/Eigen/src/MatrixFunctions/MatrixLogarithm.h +366 -0
- native/wpimath/include/unsupported/Eigen/src/MatrixFunctions/MatrixPower.h +694 -0
- native/wpimath/include/unsupported/Eigen/src/MatrixFunctions/MatrixSquareRoot.h +346 -0
- native/wpimath/include/unsupported/Eigen/src/MatrixFunctions/StemFunction.h +115 -0
- native/wpimath/include/wpimath/MathShared.h +84 -0
- native/wpimath/include/wpimath/protobuf/controller.npb.h +158 -0
- native/wpimath/include/wpimath/protobuf/geometry2d.npb.h +180 -0
- native/wpimath/include/wpimath/protobuf/geometry3d.npb.h +171 -0
- native/wpimath/include/wpimath/protobuf/kinematics.npb.h +251 -0
- native/wpimath/include/wpimath/protobuf/plant.npb.h +57 -0
- native/wpimath/include/wpimath/protobuf/spline.npb.h +79 -0
- native/wpimath/include/wpimath/protobuf/system.npb.h +67 -0
- native/wpimath/include/wpimath/protobuf/trajectory.npb.h +76 -0
- native/wpimath/include/wpimath/protobuf/wpimath.npb.h +67 -0
- native/wpimath/lib/wpimath.dll +0 -0
- native/wpimath/lib/wpimath.lib +0 -0
- native/wpimath/robotpy-native-wpimath.pc +11 -0
- robotpy_native_wpimath-2025.3.2.dist-info/METADATA +6 -0
- robotpy_native_wpimath-2025.3.2.dist-info/RECORD +629 -0
- robotpy_native_wpimath-2025.3.2.dist-info/WHEEL +4 -0
- 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,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
|