Warning, /include/eigen3/Eigen/SparseQR 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_SPARSEQR_MODULE_H
0009 #define EIGEN_SPARSEQR_MODULE_H
0010
0011 #include "SparseCore"
0012 #include "OrderingMethods"
0013 #include "src/Core/util/DisableStupidWarnings.h"
0014
0015 /** \defgroup SparseQR_Module SparseQR module
0016 * \brief Provides QR decomposition for sparse matrices
0017 *
0018 * This module provides a simplicial version of the left-looking Sparse QR decomposition.
0019 * The columns of the input matrix should be reordered to limit the fill-in during the
0020 * decomposition. Built-in methods (COLAMD, AMD) or external methods (METIS) can be used to this end.
0021 * See the \link OrderingMethods_Module OrderingMethods\endlink module for the list
0022 * of built-in and external ordering methods.
0023 *
0024 * \code
0025 * #include <Eigen/SparseQR>
0026 * \endcode
0027 *
0028 *
0029 */
0030
0031 #include "src/SparseCore/SparseColEtree.h"
0032 #include "src/SparseQR/SparseQR.h"
0033
0034 #include "src/Core/util/ReenableStupidWarnings.h"
0035
0036 #endif