Commit 50333841 authored by Mulas, Giacomo's avatar Mulas, Giacomo
Browse files

streamline preprocessor checks for type definitions

parent 9f1a3943
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
@@ -25,7 +25,6 @@

typedef __complex__ double dcomplex;

#ifdef USE_LAPACK
#ifdef USE_MKL
#ifdef USE_ILP64
#ifndef MKL_INT 
@@ -35,7 +34,11 @@ typedef __complex__ double dcomplex;
#ifndef MKL_INT 
#define MKL_INT int32_t
#endif // MKL_INT
#endif
#endif // USE_ILP64
#endif // USE_MKL

#ifdef USE_LAPACK
#ifdef USE_MKL
#include <mkl_lapacke.h>
#else
#include <lapacke.h>