Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015 #ifndef INC_PASO_COMMON
00016 #define INC_PASO_COMMON
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028 #include "esysUtils/maths.h"
00029 #include "esysUtils/mem.h"
00030 #include "esysUtils/index.h"
00031 #include "esysUtils/types.h"
00032
00033
00034 #include <float.h>
00035 #include <stdio.h>
00036 #include <limits.h>
00037 #include <stdlib.h>
00038 #include <string.h>
00039
00040 #define LenString_MAX FILENAME_MAX*2
00041 #define LenErrorMsg_MAX LenString_MAX
00042
00043 #ifdef USE_LAPACK
00044
00045 #ifdef MKL_LAPACK
00046 #include <mkl_lapack.h>
00047 #else
00048 #include <clapack.h>
00049 #endif
00050
00051 #endif
00052
00053 #endif