RealMatrix.h

Go to the documentation of this file.
00001 /*  _________________________________________________________________________
00002  *
00003  *  UTILIB: A utility library for developing portable C++ codes.
00004  *  Copyright (c) 2001, Sandia National Laboratories.
00005  *  This software is distributed under the GNU Lesser General Public License.
00006  *  For more information, see the README file in the top UTILIB directory.
00007  *  _________________________________________________________________________
00008  */
00009 
00019 #ifndef __RealMatrix_h
00020 #define __RealMatrix_h
00021 
00022 #include "real.h"
00023 
00029 #if REALType == DoubleType
00030 #include "DoubleMatrix.h"
00031 typedef DoubleMatrix RealMatrix ;
00032 #else
00033 #include "FloatMatrix.h"
00034 typedef FloatMatrix RealMatrix ;
00035 #endif
00036 
00037 #endif