/// <summary> /// See http://mpir.org/mpir-3.0.0.pdf. /// </summary> /// <param name="rational">The value.</param> /// <param name="numerator">The numerator.</param> public static void set_num(mpq_t rational, mpz_t numerator) { NativeMethods.mpq_set_num(ref rational.Value, ref numerator.Value); }
/// <summary> /// See http://mpir.org/mpir-3.0.0.pdf. /// </summary> /// <param name="op1">The first operand.</param> /// <param name="op2">The second operand.</param> public static bool equal(mpq_t op1, mpq_t op2) { return(NativeMethods.mpq_equal(ref op1.Value, ref op2.Value) != 0); }
/// <summary> /// See http://mpir.org/mpir-3.0.0.pdf. /// </summary> /// <param name="rational_number">The values.</param> public static void clear(mpq_t rational_number) { NativeMethods.mpq_clear(ref rational_number.Value); }
/// <summary> /// See http://mpir.org/mpir-3.0.0.pdf. /// </summary> /// <param name="op1">The first operand.</param> /// <param name="num2">The numerator.</param> /// <param name="den2">The denominator.</param> public static int cmp_si(mpq_t op1, long num2, ulong den2) { return(NativeMethods.mpq_cmp_si(ref op1.Value, (NativeMethods.mpir_si)num2, (NativeMethods.mpir_ui)den2)); }
/// <summary> /// See http://mpir.org/mpir-3.0.0.pdf. /// </summary> /// <param name="op">The operand.</param> public static int sgn(mpq_t op) { return(NativeMethods.mpq_sgn(ref op.Value)); }
/// <summary> /// See http://mpir.org/mpir-3.0.0.pdf. /// </summary> /// <param name="rop">The result operand.</param> /// <param name="op1">The first operand.</param> /// <param name="op2">The second operand.</param> public static void set_si(mpq_t rop, long op1, ulong op2) { NativeMethods.mpq_set_si(ref rop.Value, (NativeMethods.mpir_si)op1, (NativeMethods.mpir_ui)op2); }
/// <summary> /// See http://mpir.org/mpir-3.0.0.pdf. /// </summary> /// <param name="op">The operand.</param> public static double get_d(mpq_t op) { return(NativeMethods.mpq_get_d(ref op.Value)); }
/// <summary> /// See http://mpir.org/mpir-3.0.0.pdf. /// </summary> /// <param name="rop">The result operand.</param> /// <param name="op">The operand.</param> public static void neg(mpq_t rop, mpq_t op) { NativeMethods.mpq_neg(ref rop.Value, ref op.Value); }
/// <summary> /// See http://mpir.org/mpir-3.0.0.pdf. /// </summary> /// <param name="rop">The result operand.</param> /// <param name="op">The operand.</param> public static void abs(mpq_t rop, mpq_t op) { NativeMethods.mpq_abs(ref rop.Value, ref op.Value); }
/// <summary> /// See http://mpir.org/mpir-3.0.0.pdf. /// </summary> /// <param name="rop">The result operand.</param> /// <param name="op1">The first operand.</param> /// <param name="op2">The second operand.</param> public static void div(mpq_t rop, mpq_t op1, mpq_t op2) { NativeMethods.mpq_div(ref rop.Value, ref op1.Value, ref op2.Value); }
/// <summary> /// See http://mpir.org/mpir-3.0.0.pdf. /// </summary> /// <param name="rop">The result operand.</param> /// <param name="op1">The first operand.</param> /// <param name="op2">The second operand.</param> public static void div_2exp(mpq_t rop, mpq_t op1, ulong op2) { NativeMethods.mpq_div_2exp(ref rop.Value, ref op1.Value, (NativeMethods.mp_bitcnt_t)op2); }
/// <summary> /// See http://mpir.org/mpir-3.0.0.pdf. /// </summary> /// <param name="dest_rational">The value.</param> public static void init(mpq_t dest_rational) { NativeMethods.mpq_init(ref dest_rational.Value); }
/// <summary> /// See http://mpir.org/mpir-3.0.0.pdf. /// </summary> /// <param name="str">The string.</param> /// <param name="strBase">The base.</param> /// <param name="op">The operand.</param> public static void get_str(StringBuilder str, int strBase, mpq_t op) { NativeMethods.mpq_get_str(str, strBase, ref op.Value); }
/// <summary> /// See http://mpir.org/mpir-3.0.0.pdf. /// </summary> /// <param name="rop">The result operand.</param> /// <param name="op">The operand.</param> public static void set_d(mpq_t rop, double op) { NativeMethods.mpq_set_d(ref rop.Value, op); }
/// <summary> /// See http://mpir.org/mpir-3.0.0.pdf. /// </summary> /// <param name="rational">The value.</param> /// <param name="denominator">The denominator.</param> public static void set_den(mpq_t rational, mpz_t denominator) { NativeMethods.mpq_set_den(ref rational.Value, ref denominator.Value); }
/// <summary> /// See http://mpir.org/mpir-3.0.0.pdf. /// </summary> /// <param name="rop">The result operand.</param> /// <param name="op">The operand.</param> public static void inv(mpq_t rop, mpq_t op) { NativeMethods.mpq_inv(ref rop.Value, ref op.Value); }
/// <summary> /// See http://mpir.org/mpir-3.0.0.pdf. /// </summary> /// <param name="rop">The result operand.</param> /// <param name="op">The operand.</param> public static void set_z(mpq_t rop, mpz_t op) { NativeMethods.mpq_set_z(ref rop.Value, ref op.Value); }
/// <summary> /// See http://mpir.org/mpir-3.0.0.pdf. /// </summary> /// <param name="op1">The first operand.</param> /// <param name="op2">The second operand.</param> public static int cmp_z(mpq_t op1, mpz_t op2) { return(NativeMethods.mpq_cmp_z(ref op1.Value, ref op2.Value)); }
/// <summary> /// See http://mpir.org/mpir-3.0.0.pdf. /// </summary> /// <param name="rop">The result operand.</param> /// <param name="str">The string.</param> /// <param name="strBase">The base.</param> public static bool set_str(mpq_t rop, string str, int strBase) { return(NativeMethods.mpq_set_str(ref rop.Value, str, strBase) == 0); }
/// <summary> /// See http://mpir.org/mpir-3.0.0.pdf. /// </summary> /// <param name="rop1">The first result operand.</param> /// <param name="rop2">The second result operand.</param> public static void swap(mpq_t rop1, mpq_t rop2) { NativeMethods.mpq_swap(ref rop1.Value, ref rop2.Value); }