Back to home page

EIC code displayed by LXR

 
 

    


Warning, /include/eigen3/Eigen/SparseCore is written in an unsupported language. File is not indexed.

0001 // This file is part of Eigen, a lightweight C++ template library
0002 // for linear algebra.
0003 //
0004 // This Source Code Form is subject to the terms of the Mozilla
0005 // Public License v. 2.0. If a copy of the MPL was not distributed
0006 // with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
0007 
0008 #ifndef EIGEN_SPARSECORE_MODULE_H
0009 #define EIGEN_SPARSECORE_MODULE_H
0010 
0011 #include "Core"
0012 
0013 #include "src/Core/util/DisableStupidWarnings.h"
0014 
0015 #include <vector>
0016 #include <map>
0017 #include <cstdlib>
0018 #include <cstring>
0019 #include <algorithm>
0020 
0021 /** 
0022   * \defgroup SparseCore_Module SparseCore module
0023   *
0024   * This module provides a sparse matrix representation, and basic associated matrix manipulations
0025   * and operations.
0026   *
0027   * See the \ref TutorialSparse "Sparse tutorial"
0028   *
0029   * \code
0030   * #include <Eigen/SparseCore>
0031   * \endcode
0032   *
0033   * This module depends on: Core.
0034   */
0035 
0036 #include "src/SparseCore/SparseUtil.h"
0037 #include "src/SparseCore/SparseMatrixBase.h"
0038 #include "src/SparseCore/SparseAssign.h"
0039 #include "src/SparseCore/CompressedStorage.h"
0040 #include "src/SparseCore/AmbiVector.h"
0041 #include "src/SparseCore/SparseCompressedBase.h"
0042 #include "src/SparseCore/SparseMatrix.h"
0043 #include "src/SparseCore/SparseMap.h"
0044 #include "src/SparseCore/MappedSparseMatrix.h"
0045 #include "src/SparseCore/SparseVector.h"
0046 #include "src/SparseCore/SparseRef.h"
0047 #include "src/SparseCore/SparseCwiseUnaryOp.h"
0048 #include "src/SparseCore/SparseCwiseBinaryOp.h"
0049 #include "src/SparseCore/SparseTranspose.h"
0050 #include "src/SparseCore/SparseBlock.h"
0051 #include "src/SparseCore/SparseDot.h"
0052 #include "src/SparseCore/SparseRedux.h"
0053 #include "src/SparseCore/SparseView.h"
0054 #include "src/SparseCore/SparseDiagonalProduct.h"
0055 #include "src/SparseCore/ConservativeSparseSparseProduct.h"
0056 #include "src/SparseCore/SparseSparseProductWithPruning.h"
0057 #include "src/SparseCore/SparseProduct.h"
0058 #include "src/SparseCore/SparseDenseProduct.h"
0059 #include "src/SparseCore/SparseSelfAdjointView.h"
0060 #include "src/SparseCore/SparseTriangularView.h"
0061 #include "src/SparseCore/TriangularSolver.h"
0062 #include "src/SparseCore/SparsePermutation.h"
0063 #include "src/SparseCore/SparseFuzzy.h"
0064 #include "src/SparseCore/SparseSolverBase.h"
0065 
0066 #include "src/Core/util/ReenableStupidWarnings.h"
0067 
0068 #endif // EIGEN_SPARSECORE_MODULE_H
0069