SparseExtra 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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. #endif
  23. /**
  24. * \defgroup SparseExtra_Module SparseExtra module
  25. *
  26. * This module contains some experimental features extending the sparse module.
  27. *
  28. * \code
  29. * #include <Eigen/SparseExtra>
  30. * \endcode
  31. */
  32. #include "src/SparseExtra/DynamicSparseMatrix.h"
  33. #include "src/SparseExtra/BlockOfDynamicSparseMatrix.h"
  34. #include "src/SparseExtra/RandomSetter.h"
  35. #include "src/SparseExtra/MarketIO.h"
  36. #if !defined(_WIN32)
  37. #include <dirent.h>
  38. #include "src/SparseExtra/MatrixMarketIterator.h"
  39. #endif
  40. #include "../../Eigen/src/Core/util/ReenableStupidWarnings.h"
  41. #endif // EIGEN_SPARSE_EXTRA_MODULE_H