2008-06-01 02:11:48 +08:00
|
|
|
#ifndef EIGEN_ARRAY_MODULE_H
|
|
|
|
#define EIGEN_ARRAY_MODULE_H
|
|
|
|
|
2011-01-19 23:10:54 +08:00
|
|
|
#ifndef EIGEN_NO_EIGEN2_DEPRECATED_WARNINGS
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
#pragma message("The inclusion of Eigen/Array is deprecated. \
|
|
|
|
The array module is available as soon as Eigen/Core is included.")
|
|
|
|
#elif __GNUC__
|
|
|
|
#warning "The inclusion of Eigen/Array is deprecated. \
|
|
|
|
The array module is available as soon as Eigen/Core is included."
|
|
|
|
#endif
|
2010-01-21 03:51:01 +08:00
|
|
|
#endif
|
2008-07-22 18:54:42 +08:00
|
|
|
|
2010-01-21 03:51:01 +08:00
|
|
|
#include "Core"
|
2008-12-19 04:48:02 +08:00
|
|
|
|
2008-06-01 02:11:48 +08:00
|
|
|
#endif // EIGEN_ARRAY_MODULE_H
|