Example #1
0
 private static extern int mpq_cmp(ref mpq_t op1, ref mpq_t op2);
Example #2
0
 private static extern int mpq_equal(ref mpq_t op1, ref mpq_t op2);
Example #3
0
 private static extern void mpq_div_2exp(ref mpq_t rop, ref mpq_t op1, uint op2);
Example #4
0
 private static extern void mpq_inv(ref mpq_t rop, ref mpq_t op);
Example #5
0
 private static extern void mpq_init(ref mpq_t destrational);
Example #6
0
 private static extern void mpq_div(ref mpq_t rop, ref mpq_t op1, ref mpq_t op2);
Example #7
0
 private static extern double mpq_get_d(ref mpq_t op);
Example #8
0
 private static extern void mpq_set_num(ref mpq_t rop, ref mpz_t num);
Example #9
0
 private static extern void mpq_set_str(ref mpq_t rop, IntPtr s, int sbase);
Example #10
0
 private static extern void mpq_swap(ref mpq_t rop1, ref mpq_t rop2);
Example #11
0
 private static extern void mpq_set_ui(ref mpq_t rop, uint num, uint den);
Example #12
0
 private static extern void mpq_set_z(ref mpq_t rop, ref mpz_t op);
Example #13
0
 private static extern void mpq_clear(ref mpq_t rational);
Example #14
0
 private static extern void mpq_get_num(ref mpz_t num, ref mpq_t op);
Example #15
0
 private static extern void mpq_set_d(ref mpq_t rop, double op);
Example #16
0
 private static extern void mpq_get_den(ref mpz_t den, ref mpq_t op);
Example #17
0
 private static extern IntPtr mpq_get_str(IntPtr s, int sbase, ref mpq_t op);
Example #18
0
 private static extern void mpq_set_den(ref mpq_t rop, ref mpz_t den);
Example #19
0
 private static extern void mpq_canonicalize(ref mpq_t op);