Click or drag to resize
mpfr_libmpfr_buildopt_gmpinternals_p Method
Return a non-zero value if MPFR was compiled with GMP internals, return zero otherwise.

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 int mpfr_buildopt_gmpinternals_p()

Return Value

Type: Int32
Return a non-zero value if MPFR was compiled with GMP internals, return zero otherwise.
Remarks

Return a non-zero value if MPFR was compiled with GMP internals (that is, MPFR was built with either --with-gmp-build or --enable-gmp-internals configure option), return zero otherwise.

Examples
// Assert that --with-gmp-build compile option was used.
Assert.IsTrue(mpfr_lib.mpfr_buildopt_gmpinternals_p() == 0);
See Also