Skip to content
Snippets Groups Projects
Commit 9ed4e1c7 authored by Martin Nolte's avatar Martin Nolte
Browse files

a bit of unification and adapt to Joe's timings

[[Imported from SVN: r6437]]
parent 47e26527
No related branches found
No related tags found
No related merge requests found
......@@ -13,14 +13,23 @@ namespace Dune
// MathematicalConstants for double
// --------------------------------
// StandardMathematicalConstants
// -----------------------------
template<>
struct MathematicalConstants< double >
template< class T >
struct StandardMathematicalConstants
{
static double e () { return std::exp( 1.0 ); }
static double pi () { return std::acos( -1.0 ); }
static T e ()
{
static const T e = std::exp( T( 1 ) );
return e;
}
static T pi ()
{
static const T pi = std::acos( T( -1 ) );
return pi;
}
};
......@@ -30,10 +39,28 @@ namespace Dune
template<>
struct MathematicalConstants< float >
{
static float e () { return std::exp( 1.0f ); }
static float pi () { return std::acos( -1.0f ); }
};
: public StandardMathematicalConstants< float >
{};
// MathematicalConstants for double
// --------------------------------
template<>
struct MathematicalConstants< double >
: public StandardMathematicalConstants< double >
{};
// MathematicalConstants for long double
// -------------------------------------
template<>
struct MathematicalConstants< long double >
: public StandardMathematicalConstants< long double >
{};
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment