Warning, /include/eigen3/unsupported/Eigen/AutoDiff is written in an unsupported language. File is not indexed.
0001 // This file is part of Eigen, a lightweight C++ template library
0002 // for linear algebra.
0003 //
0004 // Copyright (C) 2008-2009 Gael Guennebaud <g.gael@free.fr>
0005 //
0006 // This Source Code Form is subject to the terms of the Mozilla
0007 // Public License v. 2.0. If a copy of the MPL was not distributed
0008 // with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
0009
0010 #ifndef EIGEN_AUTODIFF_MODULE
0011 #define EIGEN_AUTODIFF_MODULE
0012
0013 namespace Eigen {
0014
0015 /**
0016 * \defgroup AutoDiff_Module Auto Diff module
0017 *
0018 * This module features forward automatic differentation via a simple
0019 * templated scalar type wrapper AutoDiffScalar.
0020 *
0021 * Warning : this should NOT be confused with numerical differentiation, which
0022 * is a different method and has its own module in Eigen : \ref NumericalDiff_Module.
0023 *
0024 * \code
0025 * #include <unsupported/Eigen/AutoDiff>
0026 * \endcode
0027 */
0028 //@{
0029
0030 }
0031 #include "../../Eigen/src/Core/util/DisableStupidWarnings.h"
0032
0033
0034 #include "src/AutoDiff/AutoDiffScalar.h"
0035 // #include "src/AutoDiff/AutoDiffVector.h"
0036 #include "src/AutoDiff/AutoDiffJacobian.h"
0037
0038 #include "../../Eigen/src/Core/util/ReenableStupidWarnings.h"
0039
0040
0041
0042 namespace Eigen {
0043 //@}
0044 }
0045
0046 #endif // EIGEN_AUTODIFF_MODULE