aboutsummaryrefslogtreecommitdiffhomepage
path: root/unsupported/Eigen/TaucsSupport
blob: dca2c095b47f5f8649f556c6918f09572af4280b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#ifndef EIGEN_TAUCSSUPPORT_MODULE_H
#define EIGEN_TAUCSSUPPORT_MODULE_H

#include "SparseExtra"

#include "src/Core/util/DisableMSVCWarnings.h"

// taucs.h declares a lot of mess
#define isnan
#define finite
#define isinf
extern "C" {
  #include <taucs.h>
}
#undef isnan
#undef finite
#undef isinf

#ifdef min
  #undef min
#endif
#ifdef max
  #undef max
#endif
#ifdef complex
  #undef complex
#endif

namespace Eigen {

/** \ingroup Unsupported_modules
  * \defgroup TaucsSupport_Module Taucs support module
  *
  *
  *
  *
  * \code
  * #include <Eigen/TaucsSupport>
  * \endcode
  */

# include "src/SparseExtra/TaucsSupport.h"

} // namespace Eigen

#include "src/Core/util/EnableMSVCWarnings.h"

#endif // EIGEN_TAUCSSUPPORT_MODULE_H