2011-11-12 21:11:27 +08:00
|
|
|
#ifndef EIGEN_SPARSECORE_MODULE_H
|
|
|
|
#define EIGEN_SPARSECORE_MODULE_H
|
|
|
|
|
|
|
|
#include "Core"
|
|
|
|
|
|
|
|
#include "src/Core/util/DisableStupidWarnings.h"
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
#include <map>
|
|
|
|
#include <cstdlib>
|
|
|
|
#include <cstring>
|
|
|
|
#include <algorithm>
|
|
|
|
|
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
|
|
|
/**
|
2011-12-02 17:00:24 +08:00
|
|
|
* \defgroup SparseCore_Module SparseCore module
|
2011-11-12 21:11:27 +08:00
|
|
|
*
|
|
|
|
* This module provides a sparse matrix representation, and basic associatd matrix manipulations
|
|
|
|
* and operations.
|
|
|
|
*
|
|
|
|
* See the \ref TutorialSparse "Sparse tutorial"
|
|
|
|
*
|
|
|
|
* \code
|
|
|
|
* #include <Eigen/SparseCore>
|
|
|
|
* \endcode
|
|
|
|
*
|
|
|
|
* This module depends on: Core.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "src/SparseCore/SparseUtil.h"
|
|
|
|
#include "src/SparseCore/SparseMatrixBase.h"
|
2014-06-20 21:42:13 +08:00
|
|
|
#include "src/SparseCore/SparseAssign.h"
|
2011-11-12 21:11:27 +08:00
|
|
|
#include "src/SparseCore/CompressedStorage.h"
|
|
|
|
#include "src/SparseCore/AmbiVector.h"
|
2015-02-08 05:00:46 +08:00
|
|
|
#include "src/SparseCore/SparseCompressedBase.h"
|
2011-11-12 21:11:27 +08:00
|
|
|
#include "src/SparseCore/SparseMatrix.h"
|
2015-02-08 05:03:25 +08:00
|
|
|
#include "src/SparseCore/SparseMap.h"
|
2011-11-12 21:11:27 +08:00
|
|
|
#include "src/SparseCore/MappedSparseMatrix.h"
|
|
|
|
#include "src/SparseCore/SparseVector.h"
|
2015-02-08 05:04:18 +08:00
|
|
|
#include "src/SparseCore/SparseRef.h"
|
2014-06-20 21:42:13 +08:00
|
|
|
#include "src/SparseCore/SparseCwiseUnaryOp.h"
|
2014-06-23 16:40:03 +08:00
|
|
|
#include "src/SparseCore/SparseCwiseBinaryOp.h"
|
|
|
|
#include "src/SparseCore/SparseTranspose.h"
|
2011-11-12 21:11:27 +08:00
|
|
|
#include "src/SparseCore/SparseBlock.h"
|
|
|
|
#include "src/SparseCore/SparseDot.h"
|
|
|
|
#include "src/SparseCore/SparseRedux.h"
|
2014-06-26 19:52:19 +08:00
|
|
|
#include "src/SparseCore/SparseView.h"
|
2014-06-27 21:54:44 +08:00
|
|
|
#include "src/SparseCore/SparseDiagonalProduct.h"
|
2014-07-01 17:50:20 +08:00
|
|
|
#include "src/SparseCore/ConservativeSparseSparseProduct.h"
|
2014-07-01 19:18:56 +08:00
|
|
|
#include "src/SparseCore/SparseSparseProductWithPruning.h"
|
2014-07-01 17:50:20 +08:00
|
|
|
#include "src/SparseCore/SparseProduct.h"
|
2014-07-01 23:53:18 +08:00
|
|
|
#include "src/SparseCore/SparseDenseProduct.h"
|
2014-07-22 15:32:40 +08:00
|
|
|
#include "src/SparseCore/SparseSelfAdjointView.h"
|
2014-07-22 17:35:56 +08:00
|
|
|
#include "src/SparseCore/SparseTriangularView.h"
|
|
|
|
#include "src/SparseCore/TriangularSolver.h"
|
2014-06-25 23:24:43 +08:00
|
|
|
#include "src/SparseCore/SparsePermutation.h"
|
2011-11-12 21:11:27 +08:00
|
|
|
#include "src/SparseCore/SparseFuzzy.h"
|
2014-09-01 21:00:19 +08:00
|
|
|
#include "src/SparseCore/SparseSolverBase.h"
|
2011-11-12 21:11:27 +08:00
|
|
|
|
|
|
|
#include "src/Core/util/ReenableStupidWarnings.h"
|
|
|
|
|
|
|
|
#endif // EIGEN_SPARSECORE_MODULE_H
|
|
|
|
|