Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemath
GitHub Repository: sagemath/sagelib
Path: blob/master/c_lib/include/convert.h
4029 views
1
/*
2
3
convert.h
4
2007 Aug 19
5
Author: Craig Citro
6
7
C header for conversions to and from pari types.
8
9
*/
10
11
#include <gmp.h>
12
#include <pari/pari.h>
13
#include <stdio.h>
14
15
void t_INT_to_ZZ ( mpz_t value, GEN g );
16
void t_FRAC_to_QQ ( mpq_t value, GEN g );
17
18