SparseExtra 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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. #ifndef EIGEN_SPARSE_EXTRA_MODULE_H
  10. #define EIGEN_SPARSE_EXTRA_MODULE_H
  11. #include "../../Eigen/Sparse"
  12. #include "../../Eigen/src/Core/util/DisableStupidWarnings.h"
  13. #include <vector>
  14. #include <map>
  15. #include <cstdlib>
  16. #include <cstring>
  17. #include <algorithm>
  18. #include <fstream>
  19. #include <sstream>
  20. #ifdef EIGEN_GOOGLEHASH_SUPPORT
  21. #include <google/dense_hash_map>
  22. #include <google/sparse_hash_map>
  23. #endif
  24. /**
  25. * \defgroup SparseExtra_Module SparseExtra module
  26. *
  27. * This module contains some experimental features extending the sparse module.
  28. *
  29. * \code
  30. * #include <Eigen/SparseExtra>
  31. * \endcode
  32. */
  33. #include "src/SparseExtra/DynamicSparseMatrix.h"
  34. #include "src/SparseExtra/BlockOfDynamicSparseMatrix.h"
  35. #include "src/SparseExtra/RandomSetter.h"
  36. #include "src/SparseExtra/MarketIO.h"
  37. #if !defined(_WIN32)
  38. #include <dirent.h>
  39. #include "src/SparseExtra/MatrixMarketIterator.h"
  40. #endif
  41. #include "../../Eigen/src/Core/util/ReenableStupidWarnings.h"
  42. #endif // EIGEN_SPARSE_EXTRA_MODULE_H