Skyline revision c981c48f5bc9aefeffc0bcb0cc3934c2fae179dd
1#ifndef EIGEN_SKYLINE_MODULE_H
2#define EIGEN_SKYLINE_MODULE_H
3
4
5#include "Eigen/Core"
6
7#include "Eigen/src/Core/util/DisableStupidWarnings.h"
8
9#include <map>
10#include <cstdlib>
11#include <cstring>
12#include <algorithm>
13
14/** \ingroup Unsupported_modules
15 *  \defgroup Skyline_Module Skyline module
16 *
17 *
18 *
19 *
20 */
21
22#include "src/Skyline/SkylineUtil.h"
23#include "src/Skyline/SkylineMatrixBase.h"
24#include "src/Skyline/SkylineStorage.h"
25#include "src/Skyline/SkylineMatrix.h"
26#include "src/Skyline/SkylineInplaceLU.h"
27#include "src/Skyline/SkylineProduct.h"
28
29#include "Eigen/src/Core/util/ReenableStupidWarnings.h"
30
31#endif // EIGEN_SKYLINE_MODULE_H
32