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