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