Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

20,044

Downloads of v 3.4.0.20240224:

1,482

Last Update:

24 Feb 2024

Package Maintainer(s):

Software Author(s):

  • Benoît Jacob (founder)
  • Gaël Guennebaud (guru)

Tags:

eigen programming library c++ cpp

Eigen

  • 1
  • 2
  • 3

3.4.0.20240224 | Updated: 24 Feb 2024

Downloads:

20,044

Downloads of v 3.4.0.20240224:

1,482

Maintainer(s):

Software Author(s):

  • Benoît Jacob (founder)
  • Gaël Guennebaud (guru)

Eigen 3.4.0.20240224

  • 1
  • 2
  • 3

All Checks are Passing

3 Passing Tests


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install Eigen, run the following command from the command line or from PowerShell:

>

To upgrade Eigen, run the following command from the command line or from PowerShell:

>

To uninstall Eigen, run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

This applies to both open source and commercial editions of Chocolatey.

1. Enter Your Internal Repository Url

(this should look similar to https://community.chocolatey.org/api/v2/)


2. Setup Your Environment

1. Ensure you are set for organizational deployment

Please see the organizational deployment guide

2. Get the package into your environment

  • Open Source or Commercial:
    • Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
    • You can also just download the package and push it to a repository Download

3. Copy Your Script

choco upgrade eigen -y --source="'INTERNAL REPO URL'" [other options]

See options you can pass to upgrade.

See best practices for scripting.

Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.

If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:


choco upgrade eigen -y --source="'INTERNAL REPO URL'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install eigen
  win_chocolatey:
    name: eigen
    version: '3.4.0.20240224'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'eigen' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '3.4.0.20240224'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller eigen
{
    Name     = "eigen"
    Version  = "3.4.0.20240224"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'eigen':
  ensure   => '3.4.0.20240224',
  provider => 'chocolatey',
  source   => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

Package Approved

This package was approved by moderator Windos on 03 Mar 2024.

Description

Eigen provided for use in Windows projects.

Package parameters

The following package parameters can be set:

  • /InstallDir:INSTALLDIR - Installation directory.
  • /NoRegistry - Will not try to update Windows registry.
    To pass package parameters, use --params "''" (e.g. choco install eigen --params "'/InstallDir:C:\ /NoRegistry'")

include\eigen3\signature_of_eigen3_matrix_library
 
include\eigen3\Eigen\Cholesky
 
include\eigen3\Eigen\CholmodSupport
 
include\eigen3\Eigen\Core
 
include\eigen3\Eigen\Dense
 
include\eigen3\Eigen\Eigen
 
include\eigen3\Eigen\Eigenvalues
 
include\eigen3\Eigen\Geometry
 
include\eigen3\Eigen\Householder
 
include\eigen3\Eigen\IterativeLinearSolvers
 
include\eigen3\Eigen\Jacobi
 
include\eigen3\Eigen\KLUSupport
 
include\eigen3\Eigen\LU
 
include\eigen3\Eigen\MetisSupport
 
include\eigen3\Eigen\OrderingMethods
 
include\eigen3\Eigen\PardisoSupport
 
include\eigen3\Eigen\PaStiXSupport
 
include\eigen3\Eigen\QR
 
include\eigen3\Eigen\QtAlignedMalloc
 
include\eigen3\Eigen\Sparse
 
include\eigen3\Eigen\SparseCholesky
 
include\eigen3\Eigen\SparseCore
 
include\eigen3\Eigen\SparseLU
 
include\eigen3\Eigen\SparseQR
 
include\eigen3\Eigen\SPQRSupport
 
include\eigen3\Eigen\StdDeque
 
include\eigen3\Eigen\StdList
 
include\eigen3\Eigen\StdVector
 
include\eigen3\Eigen\SuperLUSupport
 
include\eigen3\Eigen\SVD
 
include\eigen3\Eigen\UmfPackSupport
 
include\eigen3\Eigen\src\Cholesky\LDLT.h
 
include\eigen3\Eigen\src\Cholesky\LLT.h
 
include\eigen3\Eigen\src\Cholesky\LLT_LAPACKE.h
 
include\eigen3\Eigen\src\CholmodSupport\CholmodSupport.h
 
include\eigen3\Eigen\src\Core\ArithmeticSequence.h
 
include\eigen3\Eigen\src\Core\Array.h
 
include\eigen3\Eigen\src\Core\ArrayBase.h
 
include\eigen3\Eigen\src\Core\ArrayWrapper.h
 
include\eigen3\Eigen\src\Core\Assign.h
 
include\eigen3\Eigen\src\Core\AssignEvaluator.h
 
include\eigen3\Eigen\src\Core\Assign_MKL.h
 
include\eigen3\Eigen\src\Core\BandMatrix.h
 
include\eigen3\Eigen\src\Core\Block.h
 
include\eigen3\Eigen\src\Core\BooleanRedux.h
 
include\eigen3\Eigen\src\Core\CommaInitializer.h
 
include\eigen3\Eigen\src\Core\ConditionEstimator.h
 
include\eigen3\Eigen\src\Core\CoreEvaluators.h
 
include\eigen3\Eigen\src\Core\CoreIterators.h
 
include\eigen3\Eigen\src\Core\CwiseBinaryOp.h
 
include\eigen3\Eigen\src\Core\CwiseNullaryOp.h
 
include\eigen3\Eigen\src\Core\CwiseTernaryOp.h
 
include\eigen3\Eigen\src\Core\CwiseUnaryOp.h
 
include\eigen3\Eigen\src\Core\CwiseUnaryView.h
 
include\eigen3\Eigen\src\Core\DenseBase.h
 
include\eigen3\Eigen\src\Core\DenseCoeffsBase.h
 
include\eigen3\Eigen\src\Core\DenseStorage.h
 
include\eigen3\Eigen\src\Core\Diagonal.h
 
include\eigen3\Eigen\src\Core\DiagonalMatrix.h
 
include\eigen3\Eigen\src\Core\DiagonalProduct.h
 
include\eigen3\Eigen\src\Core\Dot.h
 
include\eigen3\Eigen\src\Core\EigenBase.h
 
include\eigen3\Eigen\src\Core\ForceAlignedAccess.h
 
include\eigen3\Eigen\src\Core\Fuzzy.h
 
include\eigen3\Eigen\src\Core\GeneralProduct.h
 
include\eigen3\Eigen\src\Core\GenericPacketMath.h
 
include\eigen3\Eigen\src\Core\GlobalFunctions.h
 
include\eigen3\Eigen\src\Core\IndexedView.h
 
include\eigen3\Eigen\src\Core\Inverse.h
 
include\eigen3\Eigen\src\Core\IO.h
 
include\eigen3\Eigen\src\Core\Map.h
 
include\eigen3\Eigen\src\Core\MapBase.h
 
include\eigen3\Eigen\src\Core\MathFunctions.h
 
include\eigen3\Eigen\src\Core\MathFunctionsImpl.h
 
include\eigen3\Eigen\src\Core\Matrix.h
 
include\eigen3\Eigen\src\Core\MatrixBase.h
 
include\eigen3\Eigen\src\Core\NestByValue.h
 
include\eigen3\Eigen\src\Core\NoAlias.h
 
include\eigen3\Eigen\src\Core\NumTraits.h
 
include\eigen3\Eigen\src\Core\PartialReduxEvaluator.h
 
include\eigen3\Eigen\src\Core\PermutationMatrix.h
 
include\eigen3\Eigen\src\Core\PlainObjectBase.h
 
include\eigen3\Eigen\src\Core\Product.h
 
include\eigen3\Eigen\src\Core\ProductEvaluators.h
 
include\eigen3\Eigen\src\Core\Random.h
 
include\eigen3\Eigen\src\Core\Redux.h
 
include\eigen3\Eigen\src\Core\Ref.h
 
include\eigen3\Eigen\src\Core\Replicate.h
 
include\eigen3\Eigen\src\Core\Reshaped.h
 
include\eigen3\Eigen\src\Core\ReturnByValue.h
 
include\eigen3\Eigen\src\Core\Reverse.h
 
include\eigen3\Eigen\src\Core\Select.h
 
include\eigen3\Eigen\src\Core\SelfAdjointView.h
 
include\eigen3\Eigen\src\Core\SelfCwiseBinaryOp.h
 
include\eigen3\Eigen\src\Core\Solve.h
 
include\eigen3\Eigen\src\Core\SolverBase.h
 
include\eigen3\Eigen\src\Core\SolveTriangular.h
 
include\eigen3\Eigen\src\Core\StableNorm.h
 
include\eigen3\Eigen\src\Core\StlIterators.h
 
include\eigen3\Eigen\src\Core\Stride.h
 
include\eigen3\Eigen\src\Core\Swap.h
 
include\eigen3\Eigen\src\Core\Transpose.h
 
include\eigen3\Eigen\src\Core\Transpositions.h
 
include\eigen3\Eigen\src\Core\TriangularMatrix.h
 
include\eigen3\Eigen\src\Core\VectorBlock.h
 
include\eigen3\Eigen\src\Core\VectorwiseOp.h
 
include\eigen3\Eigen\src\Core\Visitor.h
 
include\eigen3\Eigen\src\Core\arch\AltiVec\Complex.h
 
include\eigen3\Eigen\src\Core\arch\AltiVec\MathFunctions.h
 
include\eigen3\Eigen\src\Core\arch\AltiVec\MatrixProduct.h
 
include\eigen3\Eigen\src\Core\arch\AltiVec\MatrixProductCommon.h
 
include\eigen3\Eigen\src\Core\arch\AltiVec\MatrixProductMMA.h
 
include\eigen3\Eigen\src\Core\arch\AltiVec\PacketMath.h
 
include\eigen3\Eigen\src\Core\arch\AVX\Complex.h
 
include\eigen3\Eigen\src\Core\arch\AVX\MathFunctions.h
 
include\eigen3\Eigen\src\Core\arch\AVX\PacketMath.h
 
include\eigen3\Eigen\src\Core\arch\AVX\TypeCasting.h
 
include\eigen3\Eigen\src\Core\arch\AVX512\Complex.h
 
include\eigen3\Eigen\src\Core\arch\AVX512\MathFunctions.h
 
include\eigen3\Eigen\src\Core\arch\AVX512\PacketMath.h
 
include\eigen3\Eigen\src\Core\arch\AVX512\TypeCasting.h
 
include\eigen3\Eigen\src\Core\arch\CUDA\Complex.h
 
include\eigen3\Eigen\src\Core\arch\Default\BFloat16.h
 
include\eigen3\Eigen\src\Core\arch\Default\ConjHelper.h
 
include\eigen3\Eigen\src\Core\arch\Default\GenericPacketMathFunctions.h
 
include\eigen3\Eigen\src\Core\arch\Default\GenericPacketMathFunctionsFwd.h
 
include\eigen3\Eigen\src\Core\arch\Default\Half.h
 
include\eigen3\Eigen\src\Core\arch\Default\Settings.h
 
include\eigen3\Eigen\src\Core\arch\Default\TypeCasting.h
 
include\eigen3\Eigen\src\Core\arch\GPU\MathFunctions.h
 
include\eigen3\Eigen\src\Core\arch\GPU\PacketMath.h
 
include\eigen3\Eigen\src\Core\arch\GPU\TypeCasting.h
 
include\eigen3\Eigen\src\Core\arch\HIP\hcc\math_constants.h
 
include\eigen3\Eigen\src\Core\arch\MSA\Complex.h
 
include\eigen3\Eigen\src\Core\arch\MSA\MathFunctions.h
 
include\eigen3\Eigen\src\Core\arch\MSA\PacketMath.h
 
include\eigen3\Eigen\src\Core\arch\NEON\Complex.h
 
include\eigen3\Eigen\src\Core\arch\NEON\GeneralBlockPanelKernel.h
 
include\eigen3\Eigen\src\Core\arch\NEON\MathFunctions.h
 
include\eigen3\Eigen\src\Core\arch\NEON\PacketMath.h
 
include\eigen3\Eigen\src\Core\arch\NEON\TypeCasting.h
 
include\eigen3\Eigen\src\Core\arch\SSE\Complex.h
 
include\eigen3\Eigen\src\Core\arch\SSE\MathFunctions.h
 
include\eigen3\Eigen\src\Core\arch\SSE\PacketMath.h
 
include\eigen3\Eigen\src\Core\arch\SSE\TypeCasting.h
 
include\eigen3\Eigen\src\Core\arch\SVE\MathFunctions.h
 
include\eigen3\Eigen\src\Core\arch\SVE\PacketMath.h
 
include\eigen3\Eigen\src\Core\arch\SVE\TypeCasting.h
 
include\eigen3\Eigen\src\Core\arch\SYCL\InteropHeaders.h
 
include\eigen3\Eigen\src\Core\arch\SYCL\MathFunctions.h
 
include\eigen3\Eigen\src\Core\arch\SYCL\PacketMath.h
 
include\eigen3\Eigen\src\Core\arch\SYCL\SyclMemoryModel.h
 
include\eigen3\Eigen\src\Core\arch\SYCL\TypeCasting.h
 
include\eigen3\Eigen\src\Core\arch\ZVector\Complex.h
 
include\eigen3\Eigen\src\Core\arch\ZVector\MathFunctions.h
 
include\eigen3\Eigen\src\Core\arch\ZVector\PacketMath.h
 
include\eigen3\Eigen\src\Core\functors\AssignmentFunctors.h
 
include\eigen3\Eigen\src\Core\functors\BinaryFunctors.h
 
include\eigen3\Eigen\src\Core\functors\NullaryFunctors.h
 
include\eigen3\Eigen\src\Core\functors\StlFunctors.h
 
include\eigen3\Eigen\src\Core\functors\TernaryFunctors.h
 
include\eigen3\Eigen\src\Core\functors\UnaryFunctors.h
 
include\eigen3\Eigen\src\Core\products\GeneralBlockPanelKernel.h
 
include\eigen3\Eigen\src\Core\products\GeneralMatrixMatrix.h
 
include\eigen3\Eigen\src\Core\products\GeneralMatrixMatrixTriangular.h
 
include\eigen3\Eigen\src\Core\products\GeneralMatrixMatrixTriangular_BLAS.h
 
include\eigen3\Eigen\src\Core\products\GeneralMatrixMatrix_BLAS.h
 
include\eigen3\Eigen\src\Core\products\GeneralMatrixVector.h
 
include\eigen3\Eigen\src\Core\products\GeneralMatrixVector_BLAS.h
 
include\eigen3\Eigen\src\Core\products\Parallelizer.h
 
include\eigen3\Eigen\src\Core\products\SelfadjointMatrixMatrix.h
 
include\eigen3\Eigen\src\Core\products\SelfadjointMatrixMatrix_BLAS.h
 
include\eigen3\Eigen\src\Core\products\SelfadjointMatrixVector.h
 
include\eigen3\Eigen\src\Core\products\SelfadjointMatrixVector_BLAS.h
 
include\eigen3\Eigen\src\Core\products\SelfadjointProduct.h
 
include\eigen3\Eigen\src\Core\products\SelfadjointRank2Update.h
 
include\eigen3\Eigen\src\Core\products\TriangularMatrixMatrix.h
 
include\eigen3\Eigen\src\Core\products\TriangularMatrixMatrix_BLAS.h
 
include\eigen3\Eigen\src\Core\products\TriangularMatrixVector.h
 
include\eigen3\Eigen\src\Core\products\TriangularMatrixVector_BLAS.h
 
include\eigen3\Eigen\src\Core\products\TriangularSolverMatrix.h
 
include\eigen3\Eigen\src\Core\products\TriangularSolverMatrix_BLAS.h
 
include\eigen3\Eigen\src\Core\products\TriangularSolverVector.h
 
include\eigen3\Eigen\src\Core\util\BlasUtil.h
 
include\eigen3\Eigen\src\Core\util\ConfigureVectorization.h
 
include\eigen3\Eigen\src\Core\util\Constants.h
 
include\eigen3\Eigen\src\Core\util\DisableStupidWarnings.h
 
include\eigen3\Eigen\src\Core\util\ForwardDeclarations.h
 
include\eigen3\Eigen\src\Core\util\IndexedViewHelper.h
 
include\eigen3\Eigen\src\Core\util\IntegralConstant.h
 
include\eigen3\Eigen\src\Core\util\Macros.h
 
include\eigen3\Eigen\src\Core\util\Memory.h
 
include\eigen3\Eigen\src\Core\util\Meta.h
 
include\eigen3\Eigen\src\Core\util\MKL_support.h
 
include\eigen3\Eigen\src\Core\util\NonMPL2.h
 
include\eigen3\Eigen\src\Core\util\ReenableStupidWarnings.h
 
include\eigen3\Eigen\src\Core\util\ReshapedHelper.h
 
include\eigen3\Eigen\src\Core\util\StaticAssert.h
 
include\eigen3\Eigen\src\Core\util\SymbolicIndex.h
 
include\eigen3\Eigen\src\Core\util\XprHelper.h
 
include\eigen3\Eigen\src\Eigenvalues\ComplexEigenSolver.h
 
include\eigen3\Eigen\src\Eigenvalues\ComplexSchur.h
 
include\eigen3\Eigen\src\Eigenvalues\ComplexSchur_LAPACKE.h
 
include\eigen3\Eigen\src\Eigenvalues\EigenSolver.h
 
include\eigen3\Eigen\src\Eigenvalues\GeneralizedEigenSolver.h
 
include\eigen3\Eigen\src\Eigenvalues\GeneralizedSelfAdjointEigenSolver.h
 
include\eigen3\Eigen\src\Eigenvalues\HessenbergDecomposition.h
 
include\eigen3\Eigen\src\Eigenvalues\MatrixBaseEigenvalues.h
 
include\eigen3\Eigen\src\Eigenvalues\RealQZ.h
 
include\eigen3\Eigen\src\Eigenvalues\RealSchur.h
 
include\eigen3\Eigen\src\Eigenvalues\RealSchur_LAPACKE.h
 
include\eigen3\Eigen\src\Eigenvalues\SelfAdjointEigenSolver.h
 
include\eigen3\Eigen\src\Eigenvalues\SelfAdjointEigenSolver_LAPACKE.h
 
include\eigen3\Eigen\src\Eigenvalues\Tridiagonalization.h
 
include\eigen3\Eigen\src\Geometry\AlignedBox.h
 
include\eigen3\Eigen\src\Geometry\AngleAxis.h
 
include\eigen3\Eigen\src\Geometry\EulerAngles.h
 
include\eigen3\Eigen\src\Geometry\Homogeneous.h
 
include\eigen3\Eigen\src\Geometry\Hyperplane.h
 
include\eigen3\Eigen\src\Geometry\OrthoMethods.h
 
include\eigen3\Eigen\src\Geometry\ParametrizedLine.h
 
include\eigen3\Eigen\src\Geometry\Quaternion.h
 
include\eigen3\Eigen\src\Geometry\Rotation2D.h
 
include\eigen3\Eigen\src\Geometry\RotationBase.h
 
include\eigen3\Eigen\src\Geometry\Scaling.h
 
include\eigen3\Eigen\src\Geometry\Transform.h
 
include\eigen3\Eigen\src\Geometry\Translation.h
 
include\eigen3\Eigen\src\Geometry\Umeyama.h
 
include\eigen3\Eigen\src\Geometry\arch\Geometry_SIMD.h
 
include\eigen3\Eigen\src\Householder\BlockHouseholder.h
 
include\eigen3\Eigen\src\Householder\Householder.h
 
include\eigen3\Eigen\src\Householder\HouseholderSequence.h
 
include\eigen3\Eigen\src\IterativeLinearSolvers\BasicPreconditioners.h
 
include\eigen3\Eigen\src\IterativeLinearSolvers\BiCGSTAB.h
 
include\eigen3\Eigen\src\IterativeLinearSolvers\ConjugateGradient.h
 
include\eigen3\Eigen\src\IterativeLinearSolvers\IncompleteCholesky.h
 
include\eigen3\Eigen\src\IterativeLinearSolvers\IncompleteLUT.h
 
include\eigen3\Eigen\src\IterativeLinearSolvers\IterativeSolverBase.h
 
include\eigen3\Eigen\src\IterativeLinearSolvers\LeastSquareConjugateGradient.h
 
include\eigen3\Eigen\src\IterativeLinearSolvers\SolveWithGuess.h
 
include\eigen3\Eigen\src\Jacobi\Jacobi.h
 
include\eigen3\Eigen\src\KLUSupport\KLUSupport.h
 
include\eigen3\Eigen\src\LU\Determinant.h
 
include\eigen3\Eigen\src\LU\FullPivLU.h
 
include\eigen3\Eigen\src\LU\InverseImpl.h
 
include\eigen3\Eigen\src\LU\PartialPivLU.h
 
include\eigen3\Eigen\src\LU\PartialPivLU_LAPACKE.h
 
include\eigen3\Eigen\src\LU\arch\InverseSize4.h
 
include\eigen3\Eigen\src\MetisSupport\MetisSupport.h
 
include\eigen3\Eigen\src\misc\blas.h
 
include\eigen3\Eigen\src\misc\Image.h
 
include\eigen3\Eigen\src\misc\Kernel.h
 
include\eigen3\Eigen\src\misc\lapack.h
 
include\eigen3\Eigen\src\misc\lapacke.h
 
include\eigen3\Eigen\src\misc\lapacke_mangling.h
 
include\eigen3\Eigen\src\misc\RealSvd2x2.h
 
include\eigen3\Eigen\src\OrderingMethods\Amd.h
 
include\eigen3\Eigen\src\OrderingMethods\Eigen_Colamd.h
 
include\eigen3\Eigen\src\OrderingMethods\Ordering.h
 
include\eigen3\Eigen\src\PardisoSupport\PardisoSupport.h
 
include\eigen3\Eigen\src\PaStiXSupport\PaStiXSupport.h
 
include\eigen3\Eigen\src\plugins\ArrayCwiseBinaryOps.h
 
include\eigen3\Eigen\src\plugins\ArrayCwiseUnaryOps.h
 
include\eigen3\Eigen\src\plugins\BlockMethods.h
 
include\eigen3\Eigen\src\plugins\CommonCwiseBinaryOps.h
 
include\eigen3\Eigen\src\plugins\CommonCwiseUnaryOps.h
 
include\eigen3\Eigen\src\plugins\IndexedViewMethods.h
 
include\eigen3\Eigen\src\plugins\MatrixCwiseBinaryOps.h
 
include\eigen3\Eigen\src\plugins\MatrixCwiseUnaryOps.h
 
include\eigen3\Eigen\src\plugins\ReshapedMethods.h
 
include\eigen3\Eigen\src\QR\ColPivHouseholderQR.h
 
include\eigen3\Eigen\src\QR\ColPivHouseholderQR_LAPACKE.h
 
include\eigen3\Eigen\src\QR\CompleteOrthogonalDecomposition.h
 
include\eigen3\Eigen\src\QR\FullPivHouseholderQR.h
 
include\eigen3\Eigen\src\QR\HouseholderQR.h
 
include\eigen3\Eigen\src\QR\HouseholderQR_LAPACKE.h
 
include\eigen3\Eigen\src\SparseCholesky\SimplicialCholesky.h
 
include\eigen3\Eigen\src\SparseCholesky\SimplicialCholesky_impl.h
 
include\eigen3\Eigen\src\SparseCore\AmbiVector.h
 
include\eigen3\Eigen\src\SparseCore\CompressedStorage.h
 
include\eigen3\Eigen\src\SparseCore\ConservativeSparseSparseProduct.h
 
include\eigen3\Eigen\src\SparseCore\MappedSparseMatrix.h
 
include\eigen3\Eigen\src\SparseCore\SparseAssign.h
 
include\eigen3\Eigen\src\SparseCore\SparseBlock.h
 
include\eigen3\Eigen\src\SparseCore\SparseColEtree.h
 
include\eigen3\Eigen\src\SparseCore\SparseCompressedBase.h
 
include\eigen3\Eigen\src\SparseCore\SparseCwiseBinaryOp.h
 
include\eigen3\Eigen\src\SparseCore\SparseCwiseUnaryOp.h
 
include\eigen3\Eigen\src\SparseCore\SparseDenseProduct.h
 
include\eigen3\Eigen\src\SparseCore\SparseDiagonalProduct.h
 
include\eigen3\Eigen\src\SparseCore\SparseDot.h
 
include\eigen3\Eigen\src\SparseCore\SparseFuzzy.h
 
include\eigen3\Eigen\src\SparseCore\SparseMap.h
 
include\eigen3\Eigen\src\SparseCore\SparseMatrix.h
 
include\eigen3\Eigen\src\SparseCore\SparseMatrixBase.h
 
include\eigen3\Eigen\src\SparseCore\SparsePermutation.h
 
include\eigen3\Eigen\src\SparseCore\SparseProduct.h
 
include\eigen3\Eigen\src\SparseCore\SparseRedux.h
 
include\eigen3\Eigen\src\SparseCore\SparseRef.h
 
include\eigen3\Eigen\src\SparseCore\SparseSelfAdjointView.h
 
include\eigen3\Eigen\src\SparseCore\SparseSolverBase.h
 
include\eigen3\Eigen\src\SparseCore\SparseSparseProductWithPruning.h
 
include\eigen3\Eigen\src\SparseCore\SparseTranspose.h
 
include\eigen3\Eigen\src\SparseCore\SparseTriangularView.h
 
include\eigen3\Eigen\src\SparseCore\SparseUtil.h
 
include\eigen3\Eigen\src\SparseCore\SparseVector.h
 
include\eigen3\Eigen\src\SparseCore\SparseView.h
 
include\eigen3\Eigen\src\SparseCore\TriangularSolver.h
 
include\eigen3\Eigen\src\SparseLU\SparseLU.h
 
include\eigen3\Eigen\src\SparseLU\SparseLUImpl.h
 
include\eigen3\Eigen\src\SparseLU\SparseLU_column_bmod.h
 
include\eigen3\Eigen\src\SparseLU\SparseLU_column_dfs.h
 
include\eigen3\Eigen\src\SparseLU\SparseLU_copy_to_ucol.h
 
include\eigen3\Eigen\src\SparseLU\SparseLU_gemm_kernel.h
 
include\eigen3\Eigen\src\SparseLU\SparseLU_heap_relax_snode.h
 
include\eigen3\Eigen\src\SparseLU\SparseLU_kernel_bmod.h
 
include\eigen3\Eigen\src\SparseLU\SparseLU_Memory.h
 
include\eigen3\Eigen\src\SparseLU\SparseLU_panel_bmod.h
 
include\eigen3\Eigen\src\SparseLU\SparseLU_panel_dfs.h
 
include\eigen3\Eigen\src\SparseLU\SparseLU_pivotL.h
 
include\eigen3\Eigen\src\SparseLU\SparseLU_pruneL.h
 
include\eigen3\Eigen\src\SparseLU\SparseLU_relax_snode.h
 
include\eigen3\Eigen\src\SparseLU\SparseLU_Structs.h
 
include\eigen3\Eigen\src\SparseLU\SparseLU_SupernodalMatrix.h
 
include\eigen3\Eigen\src\SparseLU\SparseLU_Utils.h
 
include\eigen3\Eigen\src\SparseQR\SparseQR.h
 
include\eigen3\Eigen\src\SPQRSupport\SuiteSparseQRSupport.h
 
include\eigen3\Eigen\src\StlSupport\details.h
 
include\eigen3\Eigen\src\StlSupport\StdDeque.h
 
include\eigen3\Eigen\src\StlSupport\StdList.h
 
include\eigen3\Eigen\src\StlSupport\StdVector.h
 
include\eigen3\Eigen\src\SuperLUSupport\SuperLUSupport.h
 
include\eigen3\Eigen\src\SVD\BDCSVD.h
 
include\eigen3\Eigen\src\SVD\JacobiSVD.h
 
include\eigen3\Eigen\src\SVD\JacobiSVD_LAPACKE.h
 
include\eigen3\Eigen\src\SVD\SVDBase.h
 
include\eigen3\Eigen\src\SVD\UpperBidiagonalization.h
 
include\eigen3\Eigen\src\UmfPackSupport\UmfPackSupport.h
 
include\eigen3\unsupported\Eigen\AdolcForward
 
include\eigen3\unsupported\Eigen\AlignedVector3
 
include\eigen3\unsupported\Eigen\ArpackSupport
 
include\eigen3\unsupported\Eigen\AutoDiff
 
include\eigen3\unsupported\Eigen\BVH
 
include\eigen3\unsupported\Eigen\EulerAngles
 
include\eigen3\unsupported\Eigen\FFT
 
include\eigen3\unsupported\Eigen\IterativeSolvers
 
include\eigen3\unsupported\Eigen\KroneckerProduct
 
include\eigen3\unsupported\Eigen\LevenbergMarquardt
 
include\eigen3\unsupported\Eigen\MatrixFunctions
 
include\eigen3\unsupported\Eigen\MoreVectorization
 
include\eigen3\unsupported\Eigen\MPRealSupport
 
include\eigen3\unsupported\Eigen\NonLinearOptimization
 
include\eigen3\unsupported\Eigen\NumericalDiff
 
include\eigen3\unsupported\Eigen\OpenGLSupport
 
include\eigen3\unsupported\Eigen\Polynomials
 
include\eigen3\unsupported\Eigen\Skyline
 
include\eigen3\unsupported\Eigen\SparseExtra
 
include\eigen3\unsupported\Eigen\SpecialFunctions
 
include\eigen3\unsupported\Eigen\Splines
 
include\eigen3\unsupported\Eigen\CXX11\Tensor
 
include\eigen3\unsupported\Eigen\CXX11\TensorSymmetry
 
include\eigen3\unsupported\Eigen\CXX11\ThreadPool
 
include\eigen3\unsupported\Eigen\CXX11\src\Tensor\Tensor.h
 
include\eigen3\unsupported\Eigen\CXX11\src\Tensor\TensorArgMax.h
 
include\eigen3\unsupported\Eigen\CXX11\src\Tensor\TensorAssign.h
 
include\eigen3\unsupported\Eigen\CXX11\src\Tensor\TensorBase.h
 
include\eigen3\unsupported\Eigen\CXX11\src\Tensor\TensorBlock.h
 
include\eigen3\unsupported\Eigen\CXX11\src\Tensor\TensorBroadcasting.h
 
include\eigen3\unsupported\Eigen\CXX11\src\Tensor\TensorChipping.h
 
include\eigen3\unsupported\Eigen\CXX11\src\Tensor\TensorConcatenation.h
 
include\eigen3\unsupported\Eigen\CXX11\src\Tensor\TensorContraction.h
 
include\eigen3\unsupported\Eigen\CXX11\src\Tensor\TensorContractionBlocking.h
 
include\eigen3\unsupported\Eigen\CXX11\src\Tensor\TensorContractionCuda.h
 
include\eigen3\unsupported\Eigen\CXX11\src\Tensor\TensorContractionGpu.h
 
include\eigen3\unsupported\Eigen\CXX11\src\Tensor\TensorContractionMapper.h
 
include\eigen3\unsupported\Eigen\CXX11\src\Tensor\TensorContractionSycl.h
 
include\eigen3\unsupported\Eigen\CXX11\src\Tensor\TensorContractionThreadPool.h
 
include\eigen3\unsupported\Eigen\CXX11\src\Tensor\TensorConversion.h
 
include\eigen3\unsupported\Eigen\CXX11\src\Tensor\TensorConvolution.h
 
include\eigen3\unsupported\Eigen\CXX11\src\Tensor\TensorConvolutionSycl.h
 
include\eigen3\unsupported\Eigen\CXX11\src\Tensor\TensorCostModel.h
 
include\eigen3\unsupported\Eigen\CXX11\src\Tensor\TensorCustomOp.h
 
include\eigen3\unsupported\Eigen\CXX11\src\Tensor\TensorDevice.h
 
include\eigen3\unsupported\Eigen\CXX11\src\Tensor\TensorDeviceCuda.h
 
include\eigen3\unsupported\Eigen\CXX11\src\Tensor\TensorDeviceDefault.h
 
include\eigen3\unsupported\Eigen\CXX11\src\Tensor\TensorDeviceGpu.h
 
include\eigen3\unsupported\Eigen\CXX11\src\Tensor\TensorDeviceSycl.h
 
include\eigen3\unsupported\Eigen\CXX11\src\Tensor\TensorDeviceThreadPool.h
 
include\eigen3\unsupported\Eigen\CXX11\src\Tensor\TensorDimensionList.h
 
include\eigen3\unsupported\Eigen\CXX11\src\Tensor\TensorDimensions.h
 
include\eigen3\unsupported\Eigen\CXX11\src\Tensor\TensorEvalTo.h
 
include\eigen3\unsupported\Eigen\CXX11\src\Tensor\TensorEvaluator.h
 
include\eigen3\unsupported\Eigen\CXX11\src\Tensor\TensorExecutor.h
 
include\eigen3\unsupported\Eigen\CXX11\src\Tensor\TensorExpr.h
 
include\eigen3\unsupported\Eigen\CXX11\src\Tensor\TensorFFT.h
 
include\eigen3\unsupported\Eigen\CXX11\src\Tensor\TensorFixedSize.h
 
include\eigen3\unsupported\Eigen\CXX11\src\Tensor\TensorForcedEval.h
 
include\eigen3\unsupported\Eigen\CXX11\src\Tensor\TensorForwardDeclarations.h
 
include\eigen3\unsupported\Eigen\CXX11\src\Tensor\TensorFunctors.h
 
include\eigen3\unsupported\Eigen\CXX11\src\Tensor\TensorGenerator.h
 
include\eigen3\unsupported\Eigen\CXX11\src\Tensor\TensorGlobalFunctions.h
 
include\eigen3\unsupported\Eigen\CXX11\src\Tensor\TensorGpuHipCudaDefines.h
 
include\eigen3\unsupported\Eigen\CXX11\src\Tensor\TensorGpuHipCudaUndefines.h
 
include\eigen3\unsupported\Eigen\CXX11\src\Tensor\TensorImagePatch.h
 
include\eigen3\unsupported\Eigen\CXX11\src\Tensor\TensorIndexList.h
 
include\eigen3\unsupported\Eigen\CXX11\src\Tensor\TensorInflation.h
 
include\eigen3\unsupported\Eigen\CXX11\src\Tensor\TensorInitializer.h
 
include\eigen3\unsupported\Eigen\CXX11\src\Tensor\TensorIntDiv.h
 
include\eigen3\unsupported\Eigen\CXX11\src\Tensor\TensorIO.h
 
include\eigen3\unsupported\Eigen\CXX11\src\Tensor\TensorLayoutSwap.h
 
include\eigen3\unsupported\Eigen\CXX11\src\Tensor\TensorMacros.h
 
include\eigen3\unsupported\Eigen\CXX11\src\Tensor\TensorMap.h
 
include\eigen3\unsupported\Eigen\CXX11\src\Tensor\TensorMeta.h
 
include\eigen3\unsupported\Eigen\CXX11\src\Tensor\TensorMorphing.h
 
include\eigen3\unsupported\Eigen\CXX11\src\Tensor\TensorPadding.h
 
include\eigen3\unsupported\Eigen\CXX11\src\Tensor\TensorPatch.h
 
include\eigen3\unsupported\Eigen\CXX11\src\Tensor\TensorRandom.h
 
include\eigen3\unsupported\Eigen\CXX11\src\Tensor\TensorReduction.h
 
include\eigen3\unsupported\Eigen\CXX11\src\Tensor\TensorReductionCuda.h
 
include\eigen3\unsupported\Eigen\CXX11\src\Tensor\TensorReductionGpu.h
 
include\eigen3\unsupported\Eigen\CXX11\src\Tensor\TensorReductionSycl.h
 
include\eigen3\unsupported\Eigen\CXX11\src\Tensor\TensorRef.h
 
include\eigen3\unsupported\Eigen\CXX11\src\Tensor\TensorReverse.h
 
include\eigen3\unsupported\Eigen\CXX11\src\Tensor\TensorScan.h
 
include\eigen3\unsupported\Eigen\CXX11\src\Tensor\TensorScanSycl.h
 
include\eigen3\unsupported\Eigen\CXX11\src\Tensor\TensorShuffling.h
 
include\eigen3\unsupported\Eigen\CXX11\src\Tensor\TensorStorage.h
 
include\eigen3\unsupported\Eigen\CXX11\src\Tensor\TensorStriding.h
 
include\eigen3\unsupported\Eigen\CXX11\src\Tensor\TensorTrace.h
 
include\eigen3\unsupported\Eigen\CXX11\src\Tensor\TensorTraits.h
 
include\eigen3\unsupported\Eigen\CXX11\src\Tensor\TensorUInt128.h
 
include\eigen3\unsupported\Eigen\CXX11\src\Tensor\TensorVolumePatch.h
 
include\eigen3\unsupported\Eigen\CXX11\src\TensorSymmetry\DynamicSymmetry.h
 
include\eigen3\unsupported\Eigen\CXX11\src\TensorSymmetry\StaticSymmetry.h
 
include\eigen3\unsupported\Eigen\CXX11\src\TensorSymmetry\Symmetry.h
 
include\eigen3\unsupported\Eigen\CXX11\src\TensorSymmetry\util\TemplateGroupTheory.h
 
include\eigen3\unsupported\Eigen\CXX11\src\ThreadPool\Barrier.h
 
include\eigen3\unsupported\Eigen\CXX11\src\ThreadPool\EventCount.h
 
include\eigen3\unsupported\Eigen\CXX11\src\ThreadPool\NonBlockingThreadPool.h
 
include\eigen3\unsupported\Eigen\CXX11\src\ThreadPool\RunQueue.h
 
include\eigen3\unsupported\Eigen\CXX11\src\ThreadPool\ThreadCancel.h
 
include\eigen3\unsupported\Eigen\CXX11\src\ThreadPool\ThreadEnvironment.h
 
include\eigen3\unsupported\Eigen\CXX11\src\ThreadPool\ThreadLocal.h
 
include\eigen3\unsupported\Eigen\CXX11\src\ThreadPool\ThreadPoolInterface.h
 
include\eigen3\unsupported\Eigen\CXX11\src\ThreadPool\ThreadYield.h
 
include\eigen3\unsupported\Eigen\CXX11\src\util\CXX11Meta.h
 
include\eigen3\unsupported\Eigen\CXX11\src\util\CXX11Workarounds.h
 
include\eigen3\unsupported\Eigen\CXX11\src\util\EmulateArray.h
 
include\eigen3\unsupported\Eigen\CXX11\src\util\MaxSizeVector.h
 
include\eigen3\unsupported\Eigen\src\AutoDiff\AutoDiffJacobian.h
 
include\eigen3\unsupported\Eigen\src\AutoDiff\AutoDiffScalar.h
 
include\eigen3\unsupported\Eigen\src\AutoDiff\AutoDiffVector.h
 
include\eigen3\unsupported\Eigen\src\BVH\BVAlgorithms.h
 
include\eigen3\unsupported\Eigen\src\BVH\KdBVH.h
 
include\eigen3\unsupported\Eigen\src\Eigenvalues\ArpackSelfAdjointEigenSolver.h
 
include\eigen3\unsupported\Eigen\src\EulerAngles\EulerAngles.h
 
include\eigen3\unsupported\Eigen\src\EulerAngles\EulerSystem.h
 
include\eigen3\unsupported\Eigen\src\FFT\ei_fftw_impl.h
 
include\eigen3\unsupported\Eigen\src\FFT\ei_kissfft_impl.h
 
include\eigen3\unsupported\Eigen\src\IterativeSolvers\ConstrainedConjGrad.h
 
include\eigen3\unsupported\Eigen\src\IterativeSolvers\DGMRES.h
 
include\eigen3\unsupported\Eigen\src\IterativeSolvers\GMRES.h
 
include\eigen3\unsupported\Eigen\src\IterativeSolvers\IDRS.h
 
include\eigen3\unsupported\Eigen\src\IterativeSolvers\IncompleteLU.h
 
include\eigen3\unsupported\Eigen\src\IterativeSolvers\IterationController.h
 
include\eigen3\unsupported\Eigen\src\IterativeSolvers\MINRES.h
 
include\eigen3\unsupported\Eigen\src\IterativeSolvers\Scaling.h
 
include\eigen3\unsupported\Eigen\src\KroneckerProduct\KroneckerTensorProduct.h
 
include\eigen3\unsupported\Eigen\src\LevenbergMarquardt\LevenbergMarquardt.h
 
include\eigen3\unsupported\Eigen\src\LevenbergMarquardt\LMcovar.h
 
include\eigen3\unsupported\Eigen\src\LevenbergMarquardt\LMonestep.h
 
include\eigen3\unsupported\Eigen\src\LevenbergMarquardt\LMpar.h
 
include\eigen3\unsupported\Eigen\src\LevenbergMarquardt\LMqrsolv.h
 
include\eigen3\unsupported\Eigen\src\MatrixFunctions\MatrixExponential.h
 
include\eigen3\unsupported\Eigen\src\MatrixFunctions\MatrixFunction.h
 
include\eigen3\unsupported\Eigen\src\MatrixFunctions\MatrixLogarithm.h
 
include\eigen3\unsupported\Eigen\src\MatrixFunctions\MatrixPower.h
 
include\eigen3\unsupported\Eigen\src\MatrixFunctions\MatrixSquareRoot.h
 
include\eigen3\unsupported\Eigen\src\MatrixFunctions\StemFunction.h
 
include\eigen3\unsupported\Eigen\src\MoreVectorization\MathFunctions.h
 
include\eigen3\unsupported\Eigen\src\NonLinearOptimization\chkder.h
 
include\eigen3\unsupported\Eigen\src\NonLinearOptimization\covar.h
 
include\eigen3\unsupported\Eigen\src\NonLinearOptimization\dogleg.h
 
include\eigen3\unsupported\Eigen\src\NonLinearOptimization\fdjac1.h
 
include\eigen3\unsupported\Eigen\src\NonLinearOptimization\HybridNonLinearSolver.h
 
include\eigen3\unsupported\Eigen\src\NonLinearOptimization\LevenbergMarquardt.h
 
include\eigen3\unsupported\Eigen\src\NonLinearOptimization\lmpar.h
 
include\eigen3\unsupported\Eigen\src\NonLinearOptimization\qrsolv.h
 
include\eigen3\unsupported\Eigen\src\NonLinearOptimization\r1mpyq.h
 
include\eigen3\unsupported\Eigen\src\NonLinearOptimization\r1updt.h
 
include\eigen3\unsupported\Eigen\src\NonLinearOptimization\rwupdt.h
 
include\eigen3\unsupported\Eigen\src\NumericalDiff\NumericalDiff.h
 
include\eigen3\unsupported\Eigen\src\Polynomials\Companion.h
 
include\eigen3\unsupported\Eigen\src\Polynomials\PolynomialSolver.h
 
include\eigen3\unsupported\Eigen\src\Polynomials\PolynomialUtils.h
 
include\eigen3\unsupported\Eigen\src\Skyline\SkylineInplaceLU.h
 
include\eigen3\unsupported\Eigen\src\Skyline\SkylineMatrix.h
 
include\eigen3\unsupported\Eigen\src\Skyline\SkylineMatrixBase.h
 
include\eigen3\unsupported\Eigen\src\Skyline\SkylineProduct.h
 
include\eigen3\unsupported\Eigen\src\Skyline\SkylineStorage.h
 
include\eigen3\unsupported\Eigen\src\Skyline\SkylineUtil.h
 
include\eigen3\unsupported\Eigen\src\SparseExtra\BlockOfDynamicSparseMatrix.h
 
include\eigen3\unsupported\Eigen\src\SparseExtra\BlockSparseMatrix.h
 
include\eigen3\unsupported\Eigen\src\SparseExtra\DynamicSparseMatrix.h
 
include\eigen3\unsupported\Eigen\src\SparseExtra\MarketIO.h
 
include\eigen3\unsupported\Eigen\src\SparseExtra\MatrixMarketIterator.h
 
include\eigen3\unsupported\Eigen\src\SparseExtra\RandomSetter.h
 
include\eigen3\unsupported\Eigen\src\SpecialFunctions\BesselFunctionsArrayAPI.h
 
include\eigen3\unsupported\Eigen\src\SpecialFunctions\BesselFunctionsBFloat16.h
 
include\eigen3\unsupported\Eigen\src\SpecialFunctions\BesselFunctionsFunctors.h
 
include\eigen3\unsupported\Eigen\src\SpecialFunctions\BesselFunctionsHalf.h
 
include\eigen3\unsupported\Eigen\src\SpecialFunctions\BesselFunctionsImpl.h
 
include\eigen3\unsupported\Eigen\src\SpecialFunctions\BesselFunctionsPacketMath.h
 
include\eigen3\unsupported\Eigen\src\SpecialFunctions\HipVectorCompatibility.h
 
include\eigen3\unsupported\Eigen\src\SpecialFunctions\SpecialFunctionsArrayAPI.h
 
include\eigen3\unsupported\Eigen\src\SpecialFunctions\SpecialFunctionsBFloat16.h
 
include\eigen3\unsupported\Eigen\src\SpecialFunctions\SpecialFunctionsFunctors.h
 
include\eigen3\unsupported\Eigen\src\SpecialFunctions\SpecialFunctionsHalf.h
 
include\eigen3\unsupported\Eigen\src\SpecialFunctions\SpecialFunctionsImpl.h
 
include\eigen3\unsupported\Eigen\src\SpecialFunctions\SpecialFunctionsPacketMath.h
 
include\eigen3\unsupported\Eigen\src\SpecialFunctions\arch\AVX\BesselFunctions.h
 
include\eigen3\unsupported\Eigen\src\SpecialFunctions\arch\AVX\SpecialFunctions.h
 
include\eigen3\unsupported\Eigen\src\SpecialFunctions\arch\AVX512\BesselFunctions.h
 
include\eigen3\unsupported\Eigen\src\SpecialFunctions\arch\AVX512\SpecialFunctions.h
 
include\eigen3\unsupported\Eigen\src\SpecialFunctions\arch\GPU\SpecialFunctions.h
 
include\eigen3\unsupported\Eigen\src\SpecialFunctions\arch\NEON\BesselFunctions.h
 
include\eigen3\unsupported\Eigen\src\SpecialFunctions\arch\NEON\SpecialFunctions.h
 
include\eigen3\unsupported\Eigen\src\Splines\Spline.h
 
include\eigen3\unsupported\Eigen\src\Splines\SplineFitting.h
 
include\eigen3\unsupported\Eigen\src\Splines\SplineFwd.h
 
share\eigen3\cmake\Eigen3Config.cmake
 
share\eigen3\cmake\Eigen3ConfigVersion.cmake
 
share\eigen3\cmake\Eigen3Targets.cmake
 
share\eigen3\cmake\UseEigen3.cmake
 
tools\chocolateybeforemodify.ps1
$ErrorActionPreference = 'Stop'; # Stop on all errors.

# Source variables which are shared between install and uninstall.
. $PSScriptRoot\sharedVars.ps1

$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"

$pp = Get-PackageParameters
$packageDir = Join-Path "$toolsDir" ".." -Resolve
$installDir = Join-Path "$packageDir" ".." -Resolve
if ($pp.InstallDir -or $pp.InstallationPath) { 
	$installDir = $pp.InstallDir + $pp.InstallationPath 
}
Write-Host "Eigen is going to be uninstalled from '$installDir'"

$root = Join-Path $installDir "eigen"

try {
    Get-ItemProperty -Path $CMakeSystemRepositoryPath\$CMakePackageName | Select-Object -ExpandProperty "Eigen$CMakePackageVer" -ErrorAction Stop | Out-Null
    Remove-ItemProperty -Path $CMakeSystemRepositoryPath\$CMakePackageName -Name "Eigen$CMakePackageVer"
}
catch {

}

if (Test-Path $root) {
    if ((Resolve-Path $root).Path -notcontains (Resolve-Path $packageDir).Path) {
        Remove-Item -Recurse -Force $root
    }
}
tools\chocolateyinstall.ps1
$ErrorActionPreference = 'Stop'; # Stop on all errors.

# Source variables which are shared between install and uninstall.
. $PSScriptRoot\sharedVars.ps1

$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"

$pp = Get-PackageParameters
$packageDir = Join-Path "$toolsDir" ".." -Resolve
$installDir = Join-Path "$packageDir" ".." -Resolve
if ($pp.InstallDir -or $pp.InstallationPath) { 
	$installDir = $pp.InstallDir + $pp.InstallationPath 
}
Write-Host "Eigen is going to be installed in '$installDir'"

$root = Join-Path $installDir "eigen"
New-Item -ItemType Directory -Force -Path $root | Out-Null

if (!$pp['NoRegistry']) {
	New-Item "$CMakeSystemRepositoryPath\$CMakePackageName" -ItemType directory -Force
	New-ItemProperty -Name "Eigen$CMakePackageVer" -PropertyType String -Value "$root\share\eigen3\cmake" -Path "$CMakeSystemRepositoryPath\$CMakePackageName" -Force
}
tools\chocolateyuninstall.ps1
$ErrorActionPreference = 'Stop'; # Stop on all errors.

# Source variables which are shared between install and uninstall.
. $PSScriptRoot\sharedVars.ps1

$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"

$pp = Get-PackageParameters
$packageDir = Join-Path "$toolsDir" ".." -Resolve
$installDir = Join-Path "$packageDir" ".." -Resolve
if ($pp.InstallDir -or $pp.InstallationPath) { 
	$installDir = $pp.InstallDir + $pp.InstallationPath 
}
Write-Host "Eigen is going to be uninstalled from '$installDir'"

$root = Join-Path $installDir "eigen"

try {
    Get-ItemProperty -Path $CMakeSystemRepositoryPath\$CMakePackageName | Select-Object -ExpandProperty "Eigen$CMakePackageVer" -ErrorAction Stop | Out-Null
    Remove-ItemProperty -Path $CMakeSystemRepositoryPath\$CMakePackageName -Name "Eigen$CMakePackageVer"
}
catch {

}

if (Test-Path $root) {
    if ((Resolve-Path $root).Path -notcontains (Resolve-Path $packageDir).Path) {
        Remove-Item -Recurse -Force $root
    }
}
tools\LICENSE.txt

From: https://www.mozilla.org/en-US/MPL/2.0/

LICENSE

Mozilla Public License
Version 2.0
1. Definitions

1.1. “Contributor”

    means each individual or legal entity that creates, contributes to the creation of, or owns Covered Software.
1.2. “Contributor Version”

    means the combination of the Contributions of others (if any) used by a Contributor and that particular Contributor’s Contribution.
1.3. “Contribution”

    means Covered Software of a particular Contributor.
1.4. “Covered Software”

    means Source Code Form to which the initial Contributor has attached the notice in Exhibit A, the Executable Form of such Source Code Form, and Modifications of such Source Code Form, in each case including portions thereof.
1.5. “Incompatible With Secondary Licenses”

    means

        that the initial Contributor has attached the notice described in Exhibit B to the Covered Software; or

        that the Covered Software was made available under the terms of version 1.1 or earlier of the License, but not also under the terms of a Secondary License.

1.6. “Executable Form”

    means any form of the work other than Source Code Form.
1.7. “Larger Work”

    means a work that combines Covered Software with other material, in a separate file or files, that is not Covered Software.
1.8. “License”

    means this document.
1.9. “Licensable”

    means having the right to grant, to the maximum extent possible, whether at the time of the initial grant or subsequently, any and all of the rights conveyed by this License.
1.10. “Modifications”

    means any of the following:

        any file in Source Code Form that results from an addition to, deletion from, or modification of the contents of Covered Software; or

        any new file in Source Code Form that contains any Covered Software.

1.11. “Patent Claims” of a Contributor

    means any patent claim(s), including without limitation, method, process, and apparatus claims, in any patent Licensable by such Contributor that would be infringed, but for the grant of the License, by the making, using, selling, offering for sale, having made, import, or transfer of either its Contributions or its Contributor Version.
1.12. “Secondary License”

    means either the GNU General Public License, Version 2.0, the GNU Lesser General Public License, Version 2.1, the GNU Affero General Public License, Version 3.0, or any later versions of those licenses.
1.13. “Source Code Form”

    means the form of the work preferred for making modifications.
1.14. “You” (or “Your”)

    means an individual or a legal entity exercising rights under this License. For legal entities, “You” includes any entity that controls, is controlled by, or is under common control with You. For purposes of this definition, “control” means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of such entity.

2. License Grants and Conditions
2.1. Grants

Each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license:

    under intellectual property rights (other than patent or trademark) Licensable by such Contributor to use, reproduce, make available, modify, display, perform, distribute, and otherwise exploit its Contributions, either on an unmodified basis, with Modifications, or as part of a Larger Work; and

    under Patent Claims of such Contributor to make, use, sell, offer for sale, have made, import, and otherwise transfer either its Contributions or its Contributor Version.

2.2. Effective Date

The licenses granted in Section 2.1 with respect to any Contribution become effective for each Contribution on the date the Contributor first distributes such Contribution.
2.3. Limitations on Grant Scope

The licenses granted in this Section 2 are the only rights granted under this License. No additional rights or licenses will be implied from the distribution or licensing of Covered Software under this License. Notwithstanding Section 2.1(b) above, no patent license is granted by a Contributor:

    for any code that a Contributor has removed from Covered Software; or

    for infringements caused by: (i) Your and any other third party’s modifications of Covered Software, or (ii) the combination of its Contributions with other software (except as part of its Contributor Version); or

    under Patent Claims infringed by Covered Software in the absence of its Contributions.

This License does not grant any rights in the trademarks, service marks, or logos of any Contributor (except as may be necessary to comply with the notice requirements in Section 3.4).
2.4. Subsequent Licenses

No Contributor makes additional grants as a result of Your choice to distribute the Covered Software under a subsequent version of this License (see Section 10.2) or under the terms of a Secondary License (if permitted under the terms of Section 3.3).
2.5. Representation

Each Contributor represents that the Contributor believes its Contributions are its original creation(s) or it has sufficient rights to grant the rights to its Contributions conveyed by this License.
2.6. Fair Use

This License is not intended to limit any rights You have under applicable copyright doctrines of fair use, fair dealing, or other equivalents.
2.7. Conditions

Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in Section 2.1.
3. Responsibilities
3.1. Distribution of Source Form

All distribution of Covered Software in Source Code Form, including any Modifications that You create or to which You contribute, must be under the terms of this License. You must inform recipients that the Source Code Form of the Covered Software is governed by the terms of this License, and how they can obtain a copy of this License. You may not attempt to alter or restrict the recipients’ rights in the Source Code Form.
3.2. Distribution of Executable Form

If You distribute Covered Software in Executable Form then:

    such Covered Software must also be made available in Source Code Form, as described in Section 3.1, and You must inform recipients of the Executable Form how they can obtain a copy of such Source Code Form by reasonable means in a timely manner, at a charge no more than the cost of distribution to the recipient; and

    You may distribute such Executable Form under the terms of this License, or sublicense it under different terms, provided that the license for the Executable Form does not attempt to limit or alter the recipients’ rights in the Source Code Form under this License.

3.3. Distribution of a Larger Work

You may create and distribute a Larger Work under terms of Your choice, provided that You also comply with the requirements of this License for the Covered Software. If the Larger Work is a combination of Covered Software with a work governed by one or more Secondary Licenses, and the Covered Software is not Incompatible With Secondary Licenses, this License permits You to additionally distribute such Covered Software under the terms of such Secondary License(s), so that the recipient of the Larger Work may, at their option, further distribute the Covered Software under the terms of either this License or such Secondary License(s).
3.4. Notices

You may not remove or alter the substance of any license notices (including copyright notices, patent notices, disclaimers of warranty, or limitations of liability) contained within the Source Code Form of the Covered Software, except that You may alter any license notices to the extent required to remedy known factual inaccuracies.
3.5. Application of Additional Terms

You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Covered Software. However, You may do so only on Your own behalf, and not on behalf of any Contributor. You must make it absolutely clear that any such warranty, support, indemnity, or liability obligation is offered by You alone, and You hereby agree to indemnify every Contributor for any liability incurred by such Contributor as a result of warranty, support, indemnity or liability terms You offer. You may include additional disclaimers of warranty and limitations of liability specific to any jurisdiction.
4. Inability to Comply Due to Statute or Regulation

If it is impossible for You to comply with any of the terms of this License with respect to some or all of the Covered Software due to statute, judicial order, or regulation then You must: (a) comply with the terms of this License to the maximum extent possible; and (b) describe the limitations and the code they affect. Such description must be placed in a text file included with all distributions of the Covered Software under this License. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill to be able to understand it.
5. Termination

5.1. The rights granted under this License will terminate automatically if You fail to comply with any of its terms. However, if You become compliant, then the rights granted under this License from a particular Contributor are reinstated (a) provisionally, unless and until such Contributor explicitly and finally terminates Your grants, and (b) on an ongoing basis, if such Contributor fails to notify You of the non-compliance by some reasonable means prior to 60 days after You have come back into compliance. Moreover, Your grants from a particular Contributor are reinstated on an ongoing basis if such Contributor notifies You of the non-compliance by some reasonable means, this is the first time You have received notice of non-compliance with this License from such Contributor, and You become compliant prior to 30 days after Your receipt of the notice.

5.2. If You initiate litigation against any entity by asserting a patent infringement claim (excluding declaratory judgment actions, counter-claims, and cross-claims) alleging that a Contributor Version directly or indirectly infringes any patent, then the rights granted to You by any and all Contributors for the Covered Software under Section 2.1 of this License shall terminate.

5.3. In the event of termination under Sections 5.1 or 5.2 above, all end user license agreements (excluding distributors and resellers) which have been validly granted by You or Your distributors under this License prior to termination shall survive termination.
6. Disclaimer of Warranty

Covered Software is provided under this License on an “as is” basis, without warranty of any kind, either expressed, implied, or statutory, including, without limitation, warranties that the Covered Software is free of defects, merchantable, fit for a particular purpose or non-infringing. The entire risk as to the quality and performance of the Covered Software is with You. Should any Covered Software prove defective in any respect, You (not any Contributor) assume the cost of any necessary servicing, repair, or correction. This disclaimer of warranty constitutes an essential part of this License. No use of any Covered Software is authorized under this License except under this disclaimer.
7. Limitation of Liability

Under no circumstances and under no legal theory, whether tort (including negligence), contract, or otherwise, shall any Contributor, or anyone who distributes Covered Software as permitted above, be liable to You for any direct, indirect, special, incidental, or consequential damages of any character including, without limitation, damages for lost profits, loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses, even if such party shall have been informed of the possibility of such damages. This limitation of liability shall not apply to liability for death or personal injury resulting from such party’s negligence to the extent applicable law prohibits such limitation. Some jurisdictions do not allow the exclusion or limitation of incidental or consequential damages, so this exclusion and limitation may not apply to You.
8. Litigation

Any litigation relating to this License may be brought only in the courts of a jurisdiction where the defendant maintains its principal place of business and such litigation shall be governed by laws of that jurisdiction, without reference to its conflict-of-law provisions. Nothing in this Section shall prevent a party’s ability to bring cross-claims or counter-claims.
9. Miscellaneous

This License represents the complete agreement concerning the subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not be used to construe this License against a Contributor.
10. Versions of the License
10.1. New Versions

Mozilla Foundation is the license steward. Except as provided in Section 10.3, no one other than the license steward has the right to modify or publish new versions of this License. Each version will be given a distinguishing version number.
10.2. Effect of New Versions

You may distribute the Covered Software under the terms of the version of the License under which You originally received the Covered Software, or under the terms of any subsequent version published by the license steward.
10.3. Modified Versions

If you create software not governed by this License, and you want to create a new license for such software, you may create and use a modified version of this License if you rename the license and remove any references to the name of the license steward (except to note that such modified license differs from this License).
10.4. Distributing Source Code Form that is Incompatible With Secondary Licenses

If You choose to distribute Source Code Form that is Incompatible With Secondary Licenses under the terms of this version of the License, the notice described in Exhibit B of this License must be attached.
Exhibit A - Source Code Form License Notice

    This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/.

If it is not possible or desirable to put the notice in a particular file, then You may include the notice in a location (such as a LICENSE file in a relevant directory) where a recipient would be likely to look for such a notice.

You may add additional accurate notices of copyright ownership.
Exhibit B - “Incompatible With Secondary Licenses” Notice

    This Source Code Form is “Incompatible With Secondary Licenses”, as defined by the Mozilla Public License, v. 2.0.

tools\sharedVars.ps1
# Some of these variables might not be used in links to simplify parsing of files...
if ((Get-ProcessorBits 32) -or $env:ChocolateyForceX86 -eq $true) { $arch = "x86" } else { $arch = "x64" }
$CMakeRegistryPath = "HKCU:\SOFTWARE\Kitware\CMake"
$CMakeSystemRepositoryPath = "HKLM:\SOFTWARE\Kitware\CMake\Packages"
$CMakePackageName = "Eigen3"
$CMakePackageVer = "3.4.0"
tools\VERIFICATION.txt

VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.
 
This package is inspired from https://github.com/nuclearsandwich/eigen-choco and https://github.com/ros2/choco-packages, with minor modifications. The original source provided by the software authors is available on https://gitlab.com/libeigen/eigen/-/archive/3.4.0/eigen-3.4.0.zip. It can be checked e.g. using WinMerge that eigen\include\eigen3\Eigen and eigen\include\eigen3\unsupported from this package are identical to respective subfolders in eigen-3.4.0 from the software authors. The remaining files in eigen\share can be easily checked by opening them in a text editor (they set paths and version information for CMake).

Log in or click on link to see number of positives.

In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status
Eigen 3.4.0.20240211 53 Saturday, February 24, 2024 Approved
Eigen 3.4.0 13902 Saturday, March 12, 2022 Approved
Eigen 3.3.4.20210818 3939 Wednesday, August 18, 2021 Approved
Eigen 3.3.4 668 Tuesday, May 4, 2021 Approved

This package has no dependencies.

Discussion for the Eigen Package

Ground Rules:

  • This discussion is only about Eigen and the Eigen package. If you have feedback for Chocolatey, please contact the Google Group.
  • This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
  • The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
  • Tell us what you love about the package or Eigen, or tell us what needs improvement.
  • Share your experiences with the package, or extra configuration or gotchas that you've found.
  • If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
comments powered by Disqus