Click or drag to resize
mpfr_libmpfr_buildopt_tune_case Method
Return a string saying which thresholds file has been used at compile time.

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 char_ptr mpfr_buildopt_tune_case()

Return Value

Type: char_ptr
Return a string saying which thresholds file has been used at compile time.
Remarks

This file is normally selected from the processor type.

Examples
if (gmp_lib.mp_bytes_per_limb == 4)
    Assert.IsTrue(mpfr_lib.mpfr_buildopt_tune_case().ToString() == "src/x86/mparam.h");
else
    Assert.IsTrue(mpfr_lib.mpfr_buildopt_tune_case().ToString() == "default");
See Also