Click or drag to resize
gmp_libmpf_set_si Method
Set the value of rop 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_set_si(
	mpf_t rop,
	int op
)

Parameters

rop
Type: Math.Gmp.Nativempf_t
The result float.
op
Type: SystemInt32
The operand.
Examples
// Create and initialize a new floating-point number.
mpf_t x = new mpf_t();
gmp_lib.mpf_init2(x, 128U);

// Set x to -123.
gmp_lib.mpf_set_si(x, -123);

// Assert that the value of x is -123.
Assert.IsTrue(gmp_lib.mpf_get_d(x) == -123.0);

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