blob: 37c4a5c5a8b305add93e2aae0eb7eac624f3ce68 [file] [log] [blame]
Brian Silverman72890c22015-09-19 14:37:37 -04001// This file is part of Eigen, a lightweight C++ template library
2// for linear algebra.
3//
4// Copyright (C) 2012 Désiré Nuentsa-Wakam <desire.nuentsa_wakam@inria.fr>
5// Copyright (C) 2012 Gael Guennebaud <gael.guennebaud@inria.fr>
6//
7// This Source Code Form is subject to the terms of the Mozilla
8// Public License v. 2.0. If a copy of the MPL was not distributed
9// with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
10
11#ifndef EIGEN_SPARSELU_MODULE_H
12#define EIGEN_SPARSELU_MODULE_H
13
14#include "SparseCore"
15
16/**
17 * \defgroup SparseLU_Module SparseLU module
18 * This module defines a supernodal factorization of general sparse matrices.
19 * The code is fully optimized for supernode-panel updates with specialized kernels.
20 * Please, see the documentation of the SparseLU class for more details.
21 */
22
Brian Silverman72890c22015-09-19 14:37:37 -040023// Ordering interface
24#include "OrderingMethods"
25
Austin Schuhc55b0172022-02-20 17:52:35 -080026#include "src/Core/util/DisableStupidWarnings.h"
27
Brian Silverman72890c22015-09-19 14:37:37 -040028#include "src/SparseLU/SparseLU_gemm_kernel.h"
29
30#include "src/SparseLU/SparseLU_Structs.h"
31#include "src/SparseLU/SparseLU_SupernodalMatrix.h"
32#include "src/SparseLU/SparseLUImpl.h"
33#include "src/SparseCore/SparseColEtree.h"
34#include "src/SparseLU/SparseLU_Memory.h"
35#include "src/SparseLU/SparseLU_heap_relax_snode.h"
36#include "src/SparseLU/SparseLU_relax_snode.h"
37#include "src/SparseLU/SparseLU_pivotL.h"
38#include "src/SparseLU/SparseLU_panel_dfs.h"
39#include "src/SparseLU/SparseLU_kernel_bmod.h"
40#include "src/SparseLU/SparseLU_panel_bmod.h"
41#include "src/SparseLU/SparseLU_column_dfs.h"
42#include "src/SparseLU/SparseLU_column_bmod.h"
43#include "src/SparseLU/SparseLU_copy_to_ucol.h"
44#include "src/SparseLU/SparseLU_pruneL.h"
45#include "src/SparseLU/SparseLU_Utils.h"
46#include "src/SparseLU/SparseLU.h"
47
Austin Schuhc55b0172022-02-20 17:52:35 -080048#include "src/Core/util/ReenableStupidWarnings.h"
49
Brian Silverman72890c22015-09-19 14:37:37 -040050#endif // EIGEN_SPARSELU_MODULE_H