2015-10-26 11:46:05 +01:00
|
|
|
// This file is part of Eigen, a lightweight C++ template library
|
|
|
|
// for linear algebra.
|
|
|
|
//
|
|
|
|
// 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/.
|
|
|
|
|
2011-11-12 14:11:27 +01: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>
|
2023-01-07 22:09:42 +00:00
|
|
|
#include <numeric>
|
2011-11-12 14:11:27 +01:00
|
|
|
|
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 16:37:11 +01:00
|
|
|
/**
|
2011-12-02 10:00:24 +01:00
|
|
|
* \defgroup SparseCore_Module SparseCore module
|
2011-11-12 14:11:27 +01:00
|
|
|
*
|
2015-10-30 12:02:52 +01:00
|
|
|
* This module provides a sparse matrix representation, and basic associated matrix manipulations
|
2011-11-12 14:11:27 +01:00
|
|
|
* and operations.
|
|
|
|
*
|
|
|
|
* See the \ref TutorialSparse "Sparse tutorial"
|
|
|
|
*
|
|
|
|
* \code
|
|
|
|
* #include <Eigen/SparseCore>
|
|
|
|
* \endcode
|
|
|
|
*
|
|
|
|
* This module depends on: Core.
|
|
|
|
*/
|
|
|
|
|
2023-02-08 17:40:31 +00:00
|
|
|
// IWYU pragma: begin_exports
|
2011-11-12 14:11:27 +01:00
|
|
|
#include "src/SparseCore/SparseUtil.h"
|
|
|
|
#include "src/SparseCore/SparseMatrixBase.h"
|
2014-06-20 15:42:13 +02:00
|
|
|
#include "src/SparseCore/SparseAssign.h"
|
2011-11-12 14:11:27 +01:00
|
|
|
#include "src/SparseCore/CompressedStorage.h"
|
|
|
|
#include "src/SparseCore/AmbiVector.h"
|
2015-02-07 22:00:46 +01:00
|
|
|
#include "src/SparseCore/SparseCompressedBase.h"
|
2011-11-12 14:11:27 +01:00
|
|
|
#include "src/SparseCore/SparseMatrix.h"
|
2015-02-07 22:03:25 +01:00
|
|
|
#include "src/SparseCore/SparseMap.h"
|
2011-11-12 14:11:27 +01:00
|
|
|
#include "src/SparseCore/SparseVector.h"
|
2015-02-07 22:04:18 +01:00
|
|
|
#include "src/SparseCore/SparseRef.h"
|
2014-06-20 15:42:13 +02:00
|
|
|
#include "src/SparseCore/SparseCwiseUnaryOp.h"
|
2014-06-23 10:40:03 +02:00
|
|
|
#include "src/SparseCore/SparseCwiseBinaryOp.h"
|
|
|
|
#include "src/SparseCore/SparseTranspose.h"
|
2011-11-12 14:11:27 +01:00
|
|
|
#include "src/SparseCore/SparseBlock.h"
|
|
|
|
#include "src/SparseCore/SparseDot.h"
|
|
|
|
#include "src/SparseCore/SparseRedux.h"
|
2014-06-26 13:52:19 +02:00
|
|
|
#include "src/SparseCore/SparseView.h"
|
2014-06-27 15:54:44 +02:00
|
|
|
#include "src/SparseCore/SparseDiagonalProduct.h"
|
2014-07-01 11:50:20 +02:00
|
|
|
#include "src/SparseCore/ConservativeSparseSparseProduct.h"
|
2014-07-01 13:18:56 +02:00
|
|
|
#include "src/SparseCore/SparseSparseProductWithPruning.h"
|
2014-07-01 11:50:20 +02:00
|
|
|
#include "src/SparseCore/SparseProduct.h"
|
2014-07-01 17:53:18 +02:00
|
|
|
#include "src/SparseCore/SparseDenseProduct.h"
|
2014-07-22 09:32:40 +02:00
|
|
|
#include "src/SparseCore/SparseSelfAdjointView.h"
|
2014-07-22 11:35:56 +02:00
|
|
|
#include "src/SparseCore/SparseTriangularView.h"
|
|
|
|
#include "src/SparseCore/TriangularSolver.h"
|
2014-06-25 17:24:43 +02:00
|
|
|
#include "src/SparseCore/SparsePermutation.h"
|
2011-11-12 14:11:27 +01:00
|
|
|
#include "src/SparseCore/SparseFuzzy.h"
|
2014-09-01 15:00:19 +02:00
|
|
|
#include "src/SparseCore/SparseSolverBase.h"
|
2023-02-08 17:40:31 +00:00
|
|
|
// IWYU pragma: end_exports
|
2011-11-12 14:11:27 +01:00
|
|
|
|
|
|
|
#include "src/Core/util/ReenableStupidWarnings.h"
|
|
|
|
|
|
|
|
#endif // EIGEN_SPARSECORE_MODULE_H
|