| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| |
|
| | #ifndef EIGEN_AUTODIFF_MODULE |
| | #define EIGEN_AUTODIFF_MODULE |
| |
|
| | namespace Eigen { |
| |
|
| | |
| | * \defgroup AutoDiff_Module Auto Diff module |
| | * |
| | * This module features forward automatic differentation via a simple |
| | * templated scalar type wrapper AutoDiffScalar. |
| | * |
| | * Warning : this should NOT be confused with numerical differentiation, which |
| | * is a different method and has its own module in Eigen : \ref NumericalDiff_Module. |
| | * |
| | * \code |
| | * #include <unsupported/Eigen/AutoDiff> |
| | * \endcode |
| | */ |
| | |
| |
|
| | } |
| |
|
| | #include "src/AutoDiff/AutoDiffScalar.h" |
| | |
| | #include "src/AutoDiff/AutoDiffJacobian.h" |
| |
|
| | namespace Eigen { |
| | |
| | } |
| |
|
| | #endif |
| |
|