SparseCore 2.19 KB
Newer Older
1 2 3 4 5 6 7
// 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/.

Don Gagne's avatar
Don Gagne committed
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
#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>

/** 
  * \defgroup SparseCore_Module SparseCore module
  *
24
  * This module provides a sparse matrix representation, and basic associated matrix manipulations
Don Gagne's avatar
Don Gagne committed
25 26 27 28 29 30 31 32 33 34 35 36 37
  * 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"
38
#include "src/SparseCore/SparseAssign.h"
Don Gagne's avatar
Don Gagne committed
39 40
#include "src/SparseCore/CompressedStorage.h"
#include "src/SparseCore/AmbiVector.h"
41
#include "src/SparseCore/SparseCompressedBase.h"
Don Gagne's avatar
Don Gagne committed
42
#include "src/SparseCore/SparseMatrix.h"
43
#include "src/SparseCore/SparseMap.h"
Don Gagne's avatar
Don Gagne committed
44 45
#include "src/SparseCore/MappedSparseMatrix.h"
#include "src/SparseCore/SparseVector.h"
46
#include "src/SparseCore/SparseRef.h"
Don Gagne's avatar
Don Gagne committed
47 48
#include "src/SparseCore/SparseCwiseUnaryOp.h"
#include "src/SparseCore/SparseCwiseBinaryOp.h"
49 50
#include "src/SparseCore/SparseTranspose.h"
#include "src/SparseCore/SparseBlock.h"
Don Gagne's avatar
Don Gagne committed
51 52
#include "src/SparseCore/SparseDot.h"
#include "src/SparseCore/SparseRedux.h"
53 54
#include "src/SparseCore/SparseView.h"
#include "src/SparseCore/SparseDiagonalProduct.h"
Don Gagne's avatar
Don Gagne committed
55 56 57 58 59
#include "src/SparseCore/ConservativeSparseSparseProduct.h"
#include "src/SparseCore/SparseSparseProductWithPruning.h"
#include "src/SparseCore/SparseProduct.h"
#include "src/SparseCore/SparseDenseProduct.h"
#include "src/SparseCore/SparseSelfAdjointView.h"
60
#include "src/SparseCore/SparseTriangularView.h"
Don Gagne's avatar
Don Gagne committed
61
#include "src/SparseCore/TriangularSolver.h"
62 63 64
#include "src/SparseCore/SparsePermutation.h"
#include "src/SparseCore/SparseFuzzy.h"
#include "src/SparseCore/SparseSolverBase.h"
Don Gagne's avatar
Don Gagne committed
65 66 67 68 69

#include "src/Core/util/ReenableStupidWarnings.h"

#endif // EIGEN_SPARSECORE_MODULE_H