1*bf2c3715SXin Li// This file is part of Eigen, a lightweight C++ template library 2*bf2c3715SXin Li// for linear algebra. 3*bf2c3715SXin Li// 4*bf2c3715SXin Li// This Source Code Form is subject to the terms of the Mozilla 5*bf2c3715SXin Li// Public License v. 2.0. If a copy of the MPL was not distributed 6*bf2c3715SXin Li// with this file, You can obtain one at http://mozilla.org/MPL/2.0/. 7*bf2c3715SXin Li 8*bf2c3715SXin Li#ifndef EIGEN_SPARSE_MODULE_H 9*bf2c3715SXin Li#define EIGEN_SPARSE_MODULE_H 10*bf2c3715SXin Li 11*bf2c3715SXin Li/** \defgroup Sparse_Module Sparse meta-module 12*bf2c3715SXin Li * 13*bf2c3715SXin Li * Meta-module including all related modules: 14*bf2c3715SXin Li * - \ref SparseCore_Module 15*bf2c3715SXin Li * - \ref OrderingMethods_Module 16*bf2c3715SXin Li * - \ref SparseCholesky_Module 17*bf2c3715SXin Li * - \ref SparseLU_Module 18*bf2c3715SXin Li * - \ref SparseQR_Module 19*bf2c3715SXin Li * - \ref IterativeLinearSolvers_Module 20*bf2c3715SXin Li * 21*bf2c3715SXin Li \code 22*bf2c3715SXin Li #include <Eigen/Sparse> 23*bf2c3715SXin Li \endcode 24*bf2c3715SXin Li */ 25*bf2c3715SXin Li 26*bf2c3715SXin Li#include "SparseCore" 27*bf2c3715SXin Li#include "OrderingMethods" 28*bf2c3715SXin Li#include "SparseCholesky" 29*bf2c3715SXin Li#include "SparseLU" 30*bf2c3715SXin Li#include "SparseQR" 31*bf2c3715SXin Li#include "IterativeLinearSolvers" 32*bf2c3715SXin Li 33*bf2c3715SXin Li#endif // EIGEN_SPARSE_MODULE_H 34*bf2c3715SXin Li 35