xref: /aosp_15_r20/external/eigen/unsupported/Eigen/AutoDiff (revision bf2c37156dfe67e5dfebd6d394bad8b2ab5804d4)
1*bf2c3715SXin Li// This file is part of Eigen, a lightweight C++ template library
2*bf2c3715SXin Li// for linear algebra.
3*bf2c3715SXin Li//
4*bf2c3715SXin Li// Copyright (C) 2008-2009 Gael Guennebaud <[email protected]>
5*bf2c3715SXin Li//
6*bf2c3715SXin Li// This Source Code Form is subject to the terms of the Mozilla
7*bf2c3715SXin Li// Public License v. 2.0. If a copy of the MPL was not distributed
8*bf2c3715SXin Li// with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
9*bf2c3715SXin Li
10*bf2c3715SXin Li#ifndef EIGEN_AUTODIFF_MODULE
11*bf2c3715SXin Li#define EIGEN_AUTODIFF_MODULE
12*bf2c3715SXin Li
13*bf2c3715SXin Linamespace Eigen {
14*bf2c3715SXin Li
15*bf2c3715SXin Li/**
16*bf2c3715SXin Li  * \defgroup AutoDiff_Module Auto Diff module
17*bf2c3715SXin Li  *
18*bf2c3715SXin Li  * This module features forward automatic differentation via a simple
19*bf2c3715SXin Li  * templated scalar type wrapper AutoDiffScalar.
20*bf2c3715SXin Li  *
21*bf2c3715SXin Li  * Warning : this should NOT be confused with numerical differentiation, which
22*bf2c3715SXin Li  * is a different method and has its own module in Eigen : \ref NumericalDiff_Module.
23*bf2c3715SXin Li  *
24*bf2c3715SXin Li  * \code
25*bf2c3715SXin Li  * #include <unsupported/Eigen/AutoDiff>
26*bf2c3715SXin Li  * \endcode
27*bf2c3715SXin Li  */
28*bf2c3715SXin Li//@{
29*bf2c3715SXin Li
30*bf2c3715SXin Li}
31*bf2c3715SXin Li#include "../../Eigen/src/Core/util/DisableStupidWarnings.h"
32*bf2c3715SXin Li
33*bf2c3715SXin Li
34*bf2c3715SXin Li#include "src/AutoDiff/AutoDiffScalar.h"
35*bf2c3715SXin Li// #include "src/AutoDiff/AutoDiffVector.h"
36*bf2c3715SXin Li#include "src/AutoDiff/AutoDiffJacobian.h"
37*bf2c3715SXin Li
38*bf2c3715SXin Li#include "../../Eigen/src/Core/util/ReenableStupidWarnings.h"
39*bf2c3715SXin Li
40*bf2c3715SXin Li
41*bf2c3715SXin Li
42*bf2c3715SXin Linamespace Eigen {
43*bf2c3715SXin Li//@}
44*bf2c3715SXin Li}
45*bf2c3715SXin Li
46*bf2c3715SXin Li#endif // EIGEN_AUTODIFF_MODULE
47