1// This file is part of Eigen, a lightweight C++ template library
4// Copyright (C) 2008-2009 Gael Guennebaud <g.gael@free.fr>
6// This Source Code Form is subject to the terms of the Mozilla
7// Public License v. 2.0. If a copy of the MPL was not distributed
8// with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
10#ifndef EIGEN_SPARSE_EXTRA_MODULE_H
11#define EIGEN_SPARSE_EXTRA_MODULE_H
13#include "../../Eigen/Sparse"
15#include "../../Eigen/src/Core/util/DisableStupidWarnings.h"
25#ifdef EIGEN_GOOGLEHASH_SUPPORT
26 #include <google/dense_hash_map>
27 #include <google/sparse_hash_map>
31 * \defgroup SparseExtra_Module SparseExtra module
33 * This module contains some experimental features extending the sparse module.
36 * #include <Eigen/SparseExtra>
41#include "src/SparseExtra/DynamicSparseMatrix.h"
42#include "src/SparseExtra/BlockOfDynamicSparseMatrix.h"
43#include "src/SparseExtra/RandomSetter.h"
45#include "src/SparseExtra/MarketIO.h"
49#include "src/SparseExtra/MatrixMarketIterator.h"
52#include "../../Eigen/src/Core/util/ReenableStupidWarnings.h"
54#endif // EIGEN_SPARSE_EXTRA_MODULE_H