Warning, /include/eigen3/Eigen/SparseLU 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) 2012 Désiré Nuentsa-Wakam <desire.nuentsa_wakam@inria.fr>
0005 // Copyright (C) 2012 Gael Guennebaud <gael.guennebaud@inria.fr>
0006 //
0007 // This Source Code Form is subject to the terms of the Mozilla
0008 // Public License v. 2.0. If a copy of the MPL was not distributed
0009 // with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
0010
0011 #ifndef EIGEN_SPARSELU_MODULE_H
0012 #define EIGEN_SPARSELU_MODULE_H
0013
0014 #include "SparseCore"
0015
0016 /**
0017 * \defgroup SparseLU_Module SparseLU module
0018 * This module defines a supernodal factorization of general sparse matrices.
0019 * The code is fully optimized for supernode-panel updates with specialized kernels.
0020 * Please, see the documentation of the SparseLU class for more details.
0021 */
0022
0023 // Ordering interface
0024 #include "OrderingMethods"
0025
0026 #include "src/Core/util/DisableStupidWarnings.h"
0027
0028 #include "src/SparseLU/SparseLU_gemm_kernel.h"
0029
0030 #include "src/SparseLU/SparseLU_Structs.h"
0031 #include "src/SparseLU/SparseLU_SupernodalMatrix.h"
0032 #include "src/SparseLU/SparseLUImpl.h"
0033 #include "src/SparseCore/SparseColEtree.h"
0034 #include "src/SparseLU/SparseLU_Memory.h"
0035 #include "src/SparseLU/SparseLU_heap_relax_snode.h"
0036 #include "src/SparseLU/SparseLU_relax_snode.h"
0037 #include "src/SparseLU/SparseLU_pivotL.h"
0038 #include "src/SparseLU/SparseLU_panel_dfs.h"
0039 #include "src/SparseLU/SparseLU_kernel_bmod.h"
0040 #include "src/SparseLU/SparseLU_panel_bmod.h"
0041 #include "src/SparseLU/SparseLU_column_dfs.h"
0042 #include "src/SparseLU/SparseLU_column_bmod.h"
0043 #include "src/SparseLU/SparseLU_copy_to_ucol.h"
0044 #include "src/SparseLU/SparseLU_pruneL.h"
0045 #include "src/SparseLU/SparseLU_Utils.h"
0046 #include "src/SparseLU/SparseLU.h"
0047
0048 #include "src/Core/util/ReenableStupidWarnings.h"
0049
0050 #endif // EIGEN_SPARSELU_MODULE_H