Warning, /include/eigen3/Eigen/SparseCholesky 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 // Copyright (C) 2008-2013 Gael Guennebaud <gael.guennebaud@inria.fr>
0005 //
0006 // This Source Code Form is subject to the terms of the Mozilla
0007 // Public License v. 2.0. If a copy of the MPL was not distributed
0008 // with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
0009
0010 #ifndef EIGEN_SPARSECHOLESKY_MODULE_H
0011 #define EIGEN_SPARSECHOLESKY_MODULE_H
0012
0013 #include "SparseCore"
0014 #include "OrderingMethods"
0015
0016 #include "src/Core/util/DisableStupidWarnings.h"
0017
0018 /**
0019 * \defgroup SparseCholesky_Module SparseCholesky module
0020 *
0021 * This module currently provides two variants of the direct sparse Cholesky decomposition for selfadjoint (hermitian) matrices.
0022 * Those decompositions are accessible via the following classes:
0023 * - SimplicialLLt,
0024 * - SimplicialLDLt
0025 *
0026 * Such problems can also be solved using the ConjugateGradient solver from the IterativeLinearSolvers module.
0027 *
0028 * \code
0029 * #include <Eigen/SparseCholesky>
0030 * \endcode
0031 */
0032
0033 #include "src/SparseCholesky/SimplicialCholesky.h"
0034 #include "src/SparseCholesky/SimplicialCholesky_impl.h"
0035 #include "src/Core/util/ReenableStupidWarnings.h"
0036
0037 #endif // EIGEN_SPARSECHOLESKY_MODULE_H