SparseExtra
Go to the documentation of this file.
1 // This file is part of Eigen, a lightweight C++ template library
2 // for linear algebra.
3 //
4 // Copyright (C) 2008-2009 Gael Guennebaud <g.gael@free.fr>
5 //
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/.
9 
10 #ifndef EIGEN_SPARSE_EXTRA_MODULE_H
11 #define EIGEN_SPARSE_EXTRA_MODULE_H
12 
13 #include "../../Eigen/Sparse"
14 
15 #include "../../Eigen/src/Core/util/DisableStupidWarnings.h"
16 
17 #include <vector>
18 #include <map>
19 #include <unordered_map>
20 #include <cstdlib>
21 #include <cstring>
22 #include <algorithm>
23 #include <fstream>
24 #include <sstream>
25 
26 #ifdef EIGEN_GOOGLEHASH_SUPPORT
27  #include <google/dense_hash_map>
28  #include <google/sparse_hash_map>
29 #endif
30 
44 // IWYU pragma: begin_exports
47 
49 
50 #if !defined(_WIN32)
51 #include <dirent.h>
53 #endif
54 // IWYU pragma: end_exports
55 
56 #include "../../Eigen/src/Core/util/ReenableStupidWarnings.h"
57 
58 #endif // EIGEN_SPARSE_EXTRA_MODULE_H