Click or drag to resize
mpfr_t Class
Represents a multiple precision floating-point number.
Inheritance Hierarchy

Namespace:  Math.Mpfr.Native
Assembly:  Math.Mpfr.Native (in Math.Mpfr.Native.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public class mpfr_t : mp_base

The mpfr_t type exposes the following members.

Constructors
  NameDescription
Public methodmpfr_t
Initializes a new instance of the mpfr_t class
Top
Properties
  NameDescription
Public property_mp_d
A pointer to an array of limbs which is the magnitude.
(Inherited from mp_base.)
Public property_mp_d_intptr
The _mp_d_intptr field is a pointer to the limbs, least significant limbs stored first.
(Overrides mp_base_mp_d_intptr.)
Public property_mp_size
The number of limbs currently in use.
(Overrides mp_base_mp_size.)
Public property_mpfr_exp
The _mpfr_exp field stores the exponent.
Public property_mpfr_prec
The precision of the mantissa, in limbs.
Public property_mpfr_sign
Gets the sign of the floating-point number.
Top
Methods
  NameDescription
Public methodEquals
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodToIntPtr
Gets the unmanaged memory pointer of the multiple precision floating-point number.
Public methodToString
Return the string representation of the float.
(Overrides ObjectToString.)
Top
Operators
Fields
  NameDescription
Public fieldPointer
Pointer to limbs in unmanaged memory.
(Inherited from mp_base.)
Top
Remarks

A floating-point number, or float for short, is an arbitrary precision significand (also called mantissa) with a limited precision exponent. The C data type for such objects is mpfr_t (internally defined as a one-element array of a structure, and mp_ptr is the C data type representing a pointer to this structure). A floating-point number can have three special values: Not-a-Number (NaN) or plus or minus Infinity. NaN represents an uninitialized object, the result of an invalid operation (like 0 divided by 0), or a value that cannot be determined (like +Infinity minus +Infinity). Moreover, like in the IEEE 754 standard, zero is signed, i.e., there are both +0 and -0; the behavior is the same as in the IEEE 754 standard and it is generalized to the other functions supported by MPFR. Unless documented otherwise, the sign bit of a NaN is unspecified.

The precision is the number of bits used to represent the significand of a floating-point number; the corresponding C data type is mpfr_prec_t. The precision can be any integer between mpfr_lib.MPFR_PREC_MIN and mpfr_lib.MPFR_PREC_MAX. In the current implementation, mpfr_lib.MPFR_PREC_MIN is equal to 2.

Warning! MPFR needs to increase the precision internally, in order to provide accurate results (and in particular, correct rounding). Do not attempt to set the precision to any value near mpfr_lib.MPFR_PREC_MAX, otherwise MPFR will abort due to an assertion failure. Moreover, you may reach some memory limit on your platform, in which case the program may abort, crash or have undefined behavior (depending on your C implementation).

The rounding mode specifies the way to round the result of a floating-point operation, in case the exact result can not be represented exactly in the destination significand; the corresponding C data type is mpfr_rnd_t.

See Also