Click or drag to resize
mpfr_libmpfr_custom_get_kind Method
Return the current kind of a mpfr_t as created by mpfr_custom_init_set.

Namespace:  Math.Mpfr.Native
Assembly:  Math.Mpfr.Native (in Math.Mpfr.Native.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public static mpfr_kind_t mpfr_custom_get_kind(
	mpfr_t x
)

Parameters

x
Type: Math.Mpfr.Nativempfr_t
The operand floating-point number.

Return Value

Type: mpfr_kind_t
Return the current kind of a mpfr_t as created by mpfr_custom_init_set.
Remarks

The behavior of this function for any mpfr_t not initialized with mpfr_custom_init_set is undefined.

Examples
// Initialize a custom, 64-bit significand floating-point number, and set it to 0.
size_t size = mpfr_lib.mpfr_custom_get_size(64U);
void_ptr significand = gmp_lib.allocate(size);
gmp_lib.ZeroMemory(significand.ToIntPtr(), (int)size);
mpfr_t x = new mpfr_t();
mpfr_lib.mpfr_custom_init_set(x, mpfr_kind_t.MPFR_ZERO_KIND, 0, 64U, significand);

// Set x = x + 1.
Assert.IsTrue(mpfr_lib.mpfr_add_si(x, x, 1, mpfr_rnd_t.MPFR_RNDN) == 0);

// Assert x is a regular floating-point number.
Assert.IsTrue(mpfr_lib.mpfr_custom_get_kind(x) == mpfr_kind_t.MPFR_REGULAR_KIND);

// Release unmanaged memory allocated for x and significand.
mpfr_lib.mpfr_custom_clear(x);
gmp_lib.free(significand);
See Also