Skyline 912 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. // This file is part of Eigen, a lightweight C++ template library
  2. // for linear algebra.
  3. //
  4. //
  5. // This Source Code Form is subject to the terms of the Mozilla
  6. // Public License v. 2.0. If a copy of the MPL was not distributed
  7. // with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
  8. #ifndef EIGEN_SKYLINE_MODULE_H
  9. #define EIGEN_SKYLINE_MODULE_H
  10. #include "Eigen/Core"
  11. #include "Eigen/src/Core/util/DisableStupidWarnings.h"
  12. #include <map>
  13. #include <cstdlib>
  14. #include <cstring>
  15. #include <algorithm>
  16. /**
  17. * \defgroup Skyline_Module Skyline module
  18. *
  19. *
  20. *
  21. *
  22. */
  23. #include "src/Skyline/SkylineUtil.h"
  24. #include "src/Skyline/SkylineMatrixBase.h"
  25. #include "src/Skyline/SkylineStorage.h"
  26. #include "src/Skyline/SkylineMatrix.h"
  27. #include "src/Skyline/SkylineInplaceLU.h"
  28. #include "src/Skyline/SkylineProduct.h"
  29. #include "Eigen/src/Core/util/ReenableStupidWarnings.h"
  30. #endif // EIGEN_SKYLINE_MODULE_H