Click or drag to resize
gmp_libmpf_init_set_ui Method
Initialize rop and set its value from op.

Namespace:  Math.Gmp.Native
Assembly:  Math.Gmp.Native (in Math.Gmp.Native.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public static void mpf_init_set_ui(
	mpf_t rop,
	uint op
)

Parameters

rop
Type: Math.Gmp.Nativempf_t
The result float.
op
Type: SystemUInt32
The operand.
Remarks

The precision of rop will be taken from the active default precision, as set by mpf_set_default_prec.

Examples
// Set default precision to 64 bits.
gmp_lib.mpf_set_default_prec(64U);

// Create, initialize, and set a new floating-point number to 100.
mpf_t x = new mpf_t();
gmp_lib.mpf_init_set_ui(x, 100U);

// Assert that the value of x is 100.
Assert.IsTrue(gmp_lib.mpf_get_d(x) == 100.0);

// Release unmanaged memory allocated for x.
gmp_lib.mpf_clear(x);
See Also