ESScript  Revision_
Paso.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 /************************************************************************************/
18 
19 /* Paso finite element solver */
20 
21 /************************************************************************************/
22 
23 /* Copyrights by ACcESS Australia, 2003,2004,2005 */
24 /* Author: Lutz Gross, l.gross@uq.edu.au */
25 
26 /************************************************************************************/
27 
28 #ifndef INC_PASO
29 #define INC_PASO
30 
31 #include "Common.h"
32 #include "esysUtils/error.h"
33 
34 #define MATRIX_FORMAT_DEFAULT 1
35 #define MATRIX_FORMAT_CSC 2
36 #define MATRIX_FORMAT_BLK1 4
37 #define MATRIX_FORMAT_OFFSET1 8
38 #define MATRIX_FORMAT_TRILINOS_CRS 16
39 #define MATRIX_FORMAT_DIAGONAL_BLOCK 32
40 
41 #define PASO_ONE (double)(1.0)
42 #define PASO_ZERO (double)(0.0)
43 
44 #endif /* #ifndef INC_PASO */