LP-311 Remove basic/advanced stabilization tab auto-switch (autotune/txpid lock issues)
[librepilot.git] / ground / gcs / src / libs / eigen / Eigen / SPQRSupport
blob7f1eb4770bdc7fd01347af33a28326365c58b040
1 #ifndef EIGEN_SPQRSUPPORT_MODULE_H
2 #define EIGEN_SPQRSUPPORT_MODULE_H
4 #include "SparseCore"
6 #include "src/Core/util/DisableStupidWarnings.h"
8 #include "SuiteSparseQR.hpp"
10 /** \ingroup Support_modules
11   * \defgroup SPQRSupport_Module SuiteSparseQR module
12   * 
13   * This module provides an interface to the SPQR library, which is part of the <a href="http://www.suitesparse.com">suitesparse</a> package.
14   *
15   * \code
16   * #include <Eigen/SPQRSupport>
17   * \endcode
18   *
19   * In order to use this module, the SPQR headers must be accessible from the include paths, and your binary must be linked to the SPQR library and its dependencies (Cholmod, AMD, COLAMD,...).
20   * For a cmake based project, you can use our FindSPQR.cmake and FindCholmod.Cmake modules
21   *
22   */
24 #include "src/misc/Solve.h"
25 #include "src/misc/SparseSolve.h"
26 #include "src/CholmodSupport/CholmodSupport.h"
27 #include "src/SPQRSupport/SuiteSparseQRSupport.h"
29 #endif