Warning, /include/eigen3/Eigen/Sparse 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 // This Source Code Form is subject to the terms of the Mozilla
0005 // Public License v. 2.0. If a copy of the MPL was not distributed
0006 // with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
0007
0008 #ifndef EIGEN_SPARSE_MODULE_H
0009 #define EIGEN_SPARSE_MODULE_H
0010
0011 /** \defgroup Sparse_Module Sparse meta-module
0012 *
0013 * Meta-module including all related modules:
0014 * - \ref SparseCore_Module
0015 * - \ref OrderingMethods_Module
0016 * - \ref SparseCholesky_Module
0017 * - \ref SparseLU_Module
0018 * - \ref SparseQR_Module
0019 * - \ref IterativeLinearSolvers_Module
0020 *
0021 \code
0022 #include <Eigen/Sparse>
0023 \endcode
0024 */
0025
0026 #include "SparseCore"
0027 #include "OrderingMethods"
0028 #include "SparseCholesky"
0029 #include "SparseLU"
0030 #include "SparseQR"
0031 #include "IterativeLinearSolvers"
0032
0033 #endif // EIGEN_SPARSE_MODULE_H
0034