2023-04-23 16:01:53 +08:00
|
|
|
|
#ifndef AURORA_AURORADEFS_H
|
|
|
|
|
|
#define AURORA_AURORADEFS_H
|
2023-04-24 15:23:07 +08:00
|
|
|
|
|
|
|
|
|
|
#define EIGEN_USE_MKL_ALL
|
2023-04-23 16:01:53 +08:00
|
|
|
|
#include <complex>
|
|
|
|
|
|
//必须在mkl.h和Eigen的头之前,<complex>之后
|
2023-10-08 15:58:43 +08:00
|
|
|
|
#define MKL_Complex8 std::complex<float>
|
2023-04-23 16:01:53 +08:00
|
|
|
|
#include "mkl.h"
|
2023-04-24 11:21:31 +08:00
|
|
|
|
|
|
|
|
|
|
#define PI 3.141592653589793238462
|
|
|
|
|
|
|
2023-04-23 16:01:53 +08:00
|
|
|
|
#endif //AURORA_AURORADEFS_H
|