LP-311 Remove basic/advanced stabilization tab auto-switch (autotune/txpid lock issues)
[librepilot.git] / ground / gcs / src / libs / eigen / Eigen / Jacobi
blobba8a4dc36a59d446f51ceda1f52b52e76e5f9f88
1 #ifndef EIGEN_JACOBI_MODULE_H
2 #define EIGEN_JACOBI_MODULE_H
4 #include "Core"
6 #include "src/Core/util/DisableStupidWarnings.h"
8 /** \defgroup Jacobi_Module Jacobi module
9   * This module provides Jacobi and Givens rotations.
10   *
11   * \code
12   * #include <Eigen/Jacobi>
13   * \endcode
14   *
15   * In addition to listed classes, it defines the two following MatrixBase methods to apply a Jacobi or Givens rotation:
16   *  - MatrixBase::applyOnTheLeft()
17   *  - MatrixBase::applyOnTheRight().
18   */
20 #include "src/Jacobi/Jacobi.h"
22 #include "src/Core/util/ReenableStupidWarnings.h"
24 #endif // EIGEN_JACOBI_MODULE_H
25 /* vim: set filetype=cpp et sw=2 ts=2 ai: */