2013-01-12 18:55:16 +08:00
|
|
|
// 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>
|
2013-01-26 03:38:26 +08:00
|
|
|
// Copyright (C) 2012 Gael Guennebaud <gael.guennebaud@inria.fr>
|
2013-01-12 18:55:16 +08:00
|
|
|
//
|
|
|
|
// 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/.
|
|
|
|
|
2012-06-14 00:26:05 +08:00
|
|
|
#ifndef EIGEN_SPARSELU_MODULE_H
|
|
|
|
#define EIGEN_SPARSELU_MODULE_H
|
|
|
|
|
|
|
|
#include "SparseCore"
|
|
|
|
|
Big changes in Eigen documentation:
- Organize the documentation into "chapters".
- Each chapter include many documentation pages, reference pages organized as modules, and a quick reference page.
- The "Chapters" tree is created using the defgroup/ingroup mechanism, even for the documentation pages (i.e., .dox files for which I added an \eigenManualPage macro that we can switch between \page or \defgroup ).
- Add a "General topics" entry for all pages that do not fit well in the previous "chapters".
- The highlevel struture is managed by a new eigendoxy_layout.xml file.
- remove the "index" and quite useless pages (namespace list, class hierarchy, member list, file list, etc.)
- add the javascript search-engine.
- add the "treeview" panel.
- remove \tableofcontents (replace them by a custom \eigenAutoToc macro to be able to easily re-enable if needed).
- add javascript to automatically generate a TOC from the h1/h2 tags of the current page, and put the TOC in the left side panel.
- overload various javascript function generated by doxygen to:
- remove the root of the treeview
- remove links to section/subsection from the treeview
- automatically expand the "Chapters" section
- automatically expand the current section
- adjust the height of the treeview to take into account the TOC
- always use the default .css file, eigendoxy.css now only includes our modifications
- use Doxyfile to specify our logo
- remove cross references to unsupported modules (temporarily)
2013-01-05 23:37:11 +08:00
|
|
|
/**
|
2012-06-14 00:26:05 +08:00
|
|
|
* \defgroup SparseLU_Module SparseLU module
|
2013-01-26 03:38:26 +08:00
|
|
|
* 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.
|
2012-06-14 00:26:05 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
// Ordering interface
|
|
|
|
#include "OrderingMethods"
|
|
|
|
|
2012-10-30 22:09:48 +08:00
|
|
|
#include "src/SparseLU/SparseLU_gemm_kernel.h"
|
|
|
|
|
2013-01-12 18:55:16 +08:00
|
|
|
#include "src/SparseLU/SparseLU_Structs.h"
|
2013-01-26 03:38:26 +08:00
|
|
|
#include "src/SparseLU/SparseLU_SupernodalMatrix.h"
|
|
|
|
#include "src/SparseLU/SparseLUImpl.h"
|
2013-01-14 22:59:46 +08:00
|
|
|
#include "src/SparseCore/SparseColEtree.h"
|
2013-01-12 18:55:16 +08:00
|
|
|
#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"
|
2012-06-14 00:26:05 +08:00
|
|
|
#include "src/SparseLU/SparseLU.h"
|
|
|
|
|
|
|
|
#endif // EIGEN_SPARSELU_MODULE_H
|