Sparse 919 Bytes
Newer Older
1 2 3 4 5 6 7
// This file is part of Eigen, a lightweight C++ template library
// for linear algebra.
//
// This Source Code Form is subject to the terms of the Mozilla
// Public License v. 2.0. If a copy of the MPL was not distributed
// with this file, You can obtain one at http://mozilla.org/MPL/2.0/.

LM's avatar
LM committed
8 9 10
#ifndef EIGEN_SPARSE_MODULE_H
#define EIGEN_SPARSE_MODULE_H

Don Gagne's avatar
Don Gagne committed
11
/** \defgroup Sparse_Module Sparse meta-module
LM's avatar
LM committed
12
  *
Don Gagne's avatar
Don Gagne committed
13 14 15 16 17 18 19
  * Meta-module including all related modules:
  * - \ref SparseCore_Module
  * - \ref OrderingMethods_Module
  * - \ref SparseCholesky_Module
  * - \ref SparseLU_Module
  * - \ref SparseQR_Module
  * - \ref IterativeLinearSolvers_Module
LM's avatar
LM committed
20
  *
21 22 23
    \code
    #include <Eigen/Sparse>
    \endcode
LM's avatar
LM committed
24 25
  */

Don Gagne's avatar
Don Gagne committed
26 27
#include "SparseCore"
#include "OrderingMethods"
28
#ifndef EIGEN_MPL2_ONLY
Don Gagne's avatar
Don Gagne committed
29
#include "SparseCholesky"
30
#endif
Don Gagne's avatar
Don Gagne committed
31 32 33
#include "SparseLU"
#include "SparseQR"
#include "IterativeLinearSolvers"
LM's avatar
LM committed
34 35 36

#endif // EIGEN_SPARSE_MODULE_H