ESYS13  Revision_
Paso.h
Go to the documentation of this file.
00001 
00002 /*******************************************************
00003 *
00004 * Copyright (c) 2003-2012 by University of Queensland
00005 * Earth Systems Science Computational Center (ESSCC)
00006 * http://www.uq.edu.au/esscc
00007 *
00008 * Primary Business: Queensland, Australia
00009 * Licensed under the Open Software License version 3.0
00010 * http://www.opensource.org/licenses/osl-3.0.php
00011 *
00012 *******************************************************/
00013 
00014 
00015 /**************************************************************/
00016 
00017 /*    Paso finite element solver */
00018 
00019 /**************************************************************/
00020 
00021 /*  Copyrights by ACcESS Australia, 2003,2004,2005 */
00022 /*  Author: Lutz Gross, l.gross@uq.edu.au */
00023 
00024 /**************************************************************/
00025 
00026 #ifndef INC_PASO
00027 #define INC_PASO
00028 
00029 #include "Common.h"
00030 #include "esysUtils/error.h"
00031 
00032 #define MATRIX_FORMAT_DEFAULT 1
00033 #define MATRIX_FORMAT_CSC 2
00034 #define MATRIX_FORMAT_BLK1 4
00035 #define MATRIX_FORMAT_OFFSET1 8
00036 #define MATRIX_FORMAT_TRILINOS_CRS 16
00037 #define MATRIX_FORMAT_DIAGONAL_BLOCK 32
00038 
00039 #define PASO_ONE (double)(1.0)
00040 #define PASO_ZERO (double)(0.0)
00041 
00042 #endif /* #ifndef INC_PASO */