ESScript  Revision_
Common.h
Go to the documentation of this file.
1 
2 /*****************************************************************************
3 *
4 * Copyright (c) 2003-2013 by University of Queensland
5 * http://www.uq.edu.au
6 *
7 * Primary Business: Queensland, Australia
8 * Licensed under the Open Software License version 3.0
9 * http://www.opensource.org/licenses/osl-3.0.php
10 *
11 * Development until 2012 by Earth Systems Science Computational Center (ESSCC)
12 * Development since 2012 by School of Earth Sciences
13 *
14 *****************************************************************************/
15 
16 
17 #ifndef INC_PASO_COMMON
18 #define INC_PASO_COMMON
19 
20 /************************************************************************************/
21 
22 /* Finley finite element solver: common include file */
23 
24 /************************************************************************************/
25 
26 /* Copyrights by ACcESS Australia, 2003 */
27 
28 /************************************************************************************/
29 
30 #include "esysUtils/maths.h"
31 #include "esysUtils/mem.h"
32 #include "esysUtils/index.h"
33 #include "esysUtils/types.h"
34 
35 
36 #include <float.h>
37 #include <stdio.h>
38 #include <limits.h>
39 #include <stdlib.h>
40 #include <string.h>
41 
42 #define LenString_MAX FILENAME_MAX*2
43 #define LenErrorMsg_MAX LenString_MAX
44 
45 #ifdef USE_LAPACK
46 
47  #ifdef MKL_LAPACK
48  #include <mkl_lapack.h>
49  #else /* assuming clapack */
50  extern "C"
51  {
52  #include <clapack.h>
53  }
54  #endif
55 
56 #endif
57 
58 
59 typedef enum
60 {
65 
66 #endif /* #ifndef INC_PASO_COMMON */