initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / src / OpenFOAM / primitives / Scalar / doubleFloat.H
blobcec1d83377d1652038ff2fd1f074d6db86b6f5f7
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 1991-2009 OpenCFD Ltd.
6      \\/     M anipulation  |
7 -------------------------------------------------------------------------------
8 License
9     This file is part of OpenFOAM.
11     OpenFOAM is free software; you can redistribute it and/or modify it
12     under the terms of the GNU General Public License as published by the
13     Free Software Foundation; either version 2 of the License, or (at your
14     option) any later version.
16     OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
17     ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18     FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
19     for more details.
21     You should have received a copy of the GNU General Public License
22     along with OpenFOAM; if not, write to the Free Software Foundation,
23     Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
25 \*---------------------------------------------------------------------------*/
27 #ifndef doubleFloat_H
28 #define doubleFloat_H
30 #include "label.H"
31 #include "products.H"
33 #include <cmath>
35 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
37 namespace Foam
40 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
42 template<class Cmpt>
43 class typeOfRank<Cmpt, 0>
45 public:
47     typedef Cmpt type;
51 template<class Cmpt>
52 class symmTypeOfRank<Cmpt, 0>
54 public:
56     typedef Cmpt type;
60 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
62 template<class T>
63 inline bool equal(const T& s1, const T& s2)
65     return s1 == s2;
69 #define MAXMINPOW(retType, type1, type2)          \
70                                                   \
71 MAXMIN(retType, type1, type2)                     \
72                                                   \
73 inline double pow(const type1 s, const type2 e)   \
74 {                                                 \
75     return ::pow(double(s), double(e));           \
79 MAXMINPOW(double, double, double)
80 MAXMINPOW(double, double, float)
81 MAXMINPOW(double, float, double)
82 MAXMINPOW(float, float, float)
83 MAXMINPOW(double, double, int)
84 MAXMINPOW(double, int, double)
85 MAXMINPOW(double, double, long)
86 MAXMINPOW(double, long, double)
87 MAXMINPOW(float, float, int)
88 MAXMINPOW(float, int, float)
89 MAXMINPOW(float, float, long)
90 MAXMINPOW(float, long, float)
92 #undef MAXMINPOW
95 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
97 } // End namespace Foam
99 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
101 #endif
103 // ************************************************************************* //