diff options
author | Gael Guennebaud <g.gael@free.fr> | 2013-01-12 11:55:16 +0100 |
---|---|---|
committer | Gael Guennebaud <g.gael@free.fr> | 2013-01-12 11:55:16 +0100 |
commit | 38fa432e075c31b0dff17ed98dd27cad01046ea8 (patch) | |
tree | fb504db5d98fab45ab6f2ba6fc9d3c8a04b7f590 /Eigen/SparseLU | |
parent | 50625834e64616d798e8a28a66f0eef638dc2801 (diff) |
Clean inclusion, namespace definition, and documentation of SparseLU
Diffstat (limited to 'Eigen/SparseLU')
-rw-r--r-- | Eigen/SparseLU | 26 |
1 files changed, 25 insertions, 1 deletions
diff --git a/Eigen/SparseLU b/Eigen/SparseLU index dc532f87f..92e14de9d 100644 --- a/Eigen/SparseLU +++ b/Eigen/SparseLU @@ -1,9 +1,17 @@ +// This file is part of Eigen, a lightweight C++ template library +// for linear algebra. +// +// Copyright (C) 2012 Désiré Nuentsa-Wakam <desire.nuentsa_wakam@inria.fr> +// +// This Source Code Form is subject to the terms of the Mozilla +// Public License v. 2.0. If a copy of the MPL was not distributed +// with this file, You can obtain one at http://mozilla.org/MPL/2.0/. + #ifndef EIGEN_SPARSELU_MODULE_H #define EIGEN_SPARSELU_MODULE_H #include "SparseCore" - /** * \defgroup SparseLU_Module SparseLU module * @@ -14,6 +22,22 @@ #include "src/SparseLU/SparseLU_gemm_kernel.h" +#include "src/SparseLU/SparseLU_Structs.h" +#include "src/SparseLU/SparseLU_Matrix.h" +#include "src/SparseLU/SparseLUBase.h" +#include "src/SparseLU/SparseLU_Coletree.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" #endif // EIGEN_SPARSELU_MODULE_H |