C++ main module for mmsd Package  1.0
lapack_types.h
Go to the documentation of this file.
1 #ifndef LAPACK_TYPES
2 #define LAPACK_TYPES
3 #include "stddef.h"
4 #include "types.h"
5 
6 //for lapack array
7 #define lapack_int ptrdiff_t
8 #define lapack_char char
9 #define lapack_real double
10 #define lapack_bool bool
11 
12 //for vector type
13 #define tLVectorIndex unsigned long long int
14 
15 //for view type
16 #define tLVectorIncrement lapack_int
17 
18 #endif