| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| |
|
| | |
| | |
| |
|
| | #include "SparseCore" |
| |
|
| | |
| | * \defgroup SparseLU_Module SparseLU module |
| | * This module defines a supernodal factorization of general sparse matrices. |
| | * The code is fully optimized for supernode-panel updates with specialized kernels. |
| | * Please, see the documentation of the SparseLU class for more details. |
| | */ |
| |
|
| | |
| | #include "OrderingMethods" |
| |
|
| | #include "src/SparseLU/SparseLU_gemm_kernel.h" |
| |
|
| | #include "src/SparseLU/SparseLU_Structs.h" |
| | #include "src/SparseLU/SparseLU_SupernodalMatrix.h" |
| | #include "src/SparseLU/SparseLUImpl.h" |
| | #include "src/SparseCore/SparseColEtree.h" |
| | #include "src/SparseLU/SparseLU_Memory.h" |
| | #include "src/SparseLU/SparseLU_heap_relax_snode.h" |
| | #include "src/SparseLU/SparseLU_relax_snode.h" |
| | #include "src/SparseLU/SparseLU_pivotL.h" |
| | #include "src/SparseLU/SparseLU_panel_dfs.h" |
| | #include "src/SparseLU/SparseLU_kernel_bmod.h" |
| | #include "src/SparseLU/SparseLU_panel_bmod.h" |
| | #include "src/SparseLU/SparseLU_column_dfs.h" |
| | #include "src/SparseLU/SparseLU_column_bmod.h" |
| | #include "src/SparseLU/SparseLU_copy_to_ucol.h" |
| | #include "src/SparseLU/SparseLU_pruneL.h" |
| | #include "src/SparseLU/SparseLU_Utils.h" |
| | #include "src/SparseLU/SparseLU.h" |
| |
|
| | |
| |
|