5#ifndef DUNE_GMPFIELD_HH
6#define DUNE_GMPFIELD_HH
16#if HAVE_GMP || DOXYGEN
31 template<
unsigned int precision >
35 typedef mpf_class Base;
60 typename EnableIf =
typename std::enable_if<
61 std::is_convertible<T, mpf_class>::value>
::type
68 operator double ()
const
75 template <
unsigned int precision>
77 :
public std::integral_constant<bool, true> {
80 template<
unsigned int precision1,
unsigned int precision2 >
86 template<
unsigned int precision >
92 template<
unsigned int precision,
class T >
98 template<
class T,
unsigned int precision >
104 template<
unsigned int precision >
107 static_assert(precision < 3319u,
"Mathematical constants for GMPField defined up to a precision 3318.");
112 static const T e =
T(
"2.7182818284590452353602874713526624977572470936999595749669676277240766303535475945713821785251664274274663919320030599218174135966290435729003342952605956307381323286279434907632338298807531952510190115738341879307021540891499348841675092447614606680822648001684774118537423454424371075390777449920695517027618386062613313845830007520449338265602976067371132007093287091274437470472306969772093101416928368190255151086574637721112523897844250569536967707854499699679468644549059879316368892300987931277361782154249992295763514822082698951936680331825288693984964651058209392398294887933203625094431173012381970684161403970198376793206832823764648042953118023287825098194558153017567173613320698112509961818815930416903515988885193458072738667385894228792284998920868058257492796104841984443634632449684875602336248270419786232090021609902353043699418491463140934317381436405462531520961836908887070167683964243781405927145635490613031072085103837505101157477041718986106873969655212671546889570350");
118 static const T pi =
T(
"3.1415926535897932384626433832795028841971693993751058209749445923078164062862089986280348253421170679821480865132823066470938446095505822317253594081284811174502841027019385211055596446229489549303819644288109756659334461284756482337867831652712019091456485669234603486104543266482133936072602491412737245870066063155881748815209209628292540917153643678925903600113305305488204665213841469519415116094330572703657595919530921861173819326117931051185480744623799627495673518857527248912279381830119491298336733624406566430860213949463952247371907021798609437027705392171762931767523846748184676694051320005681271452635608277857713427577896091736371787214684409012249534301465495853710507922796892589235420199561121290219608640344181598136297747713099605187072113499999983729780499510597317328160963185950244594553469083026425223082533446850352619311881710100031378387528865875332083814206171776691473035982534904287554687311595628638823537875937519577818577805321712268066130019278766111959092164201");
Traits for type conversions and type information.
Compute type of the result of an arithmetic operation involving two different number types.
Some useful basic math stuff.
Dune namespace
Definition alignedallocator.hh:13
Whether this type acts as a scalar in the context of (hierarchically blocked) containers.
Definition typetraits.hh:194
Number class for high precision floating point number using the GMP library mpf_class implementation.
Definition gmpfield.hh:34
GMPField(const T &v)
initialize from a compatible scalar type
Definition gmpfield.hh:63
GMPField()
Definition gmpfield.hh:39
GMPField(const std::string &str)
initialize from a string
Definition gmpfield.hh:53
GMPField(const char *str)
initialize from a string
Definition gmpfield.hh:46
GMPField<(precision1 > precision2 ? precision1 :precision2)> PromotedType
Definition gmpfield.hh:83
GMPField< precision > PromotedType
Definition gmpfield.hh:89
GMPField< precision > PromotedType
Definition gmpfield.hh:95
GMPField< precision > PromotedType
Definition gmpfield.hh:101
static const T e()
Definition gmpfield.hh:110
GMPField< precision > T
Definition gmpfield.hh:109
static const T pi()
Definition gmpfield.hh:116
Provides commonly used mathematical constants.
Definition math.hh:67
Compute type of the result of an arithmetic operation involving two different number types.
Definition promotiontraits.hh:27