| Bill Allombert on Wed, 28 Feb 2001 21:43:38 +0100 |
[Date Prev] [Date Next] [Thread Prev] [Thread Next] [Date Index] [Thread Index]
| GP2C 0.0.0pl3 released |
Hello,
I want to announce the release of GP2C 0.0.0pl3, the GP to C translator.
You can download it at
<ftp://megrez.math.u-bordeaux.fr/pub/pari/GP2C/gp2c-0.0.0pl3.tar.gz>
While it's still an early development version, it should be usable if
you are willing to check and edit the C code.
GP2C now support "type" in declaration with the following syntax:
f(a:int)=
{
local(b:small,c:mp,bnf:bnf);
bnf=bnfinit(x^2+a);
}
declares a as an integer, b as a C integer, c as a multiprecision number
(i.e. either integer or real), and bnf as an output of some bnfinit call.
Enjoy!
Bill.