Bill Allombert on Sun, 11 Feb 2007 16:46:45 +0100


[Date Prev] [Date Next] [Thread Prev] [Thread Next] [Date Index] [Thread Index]

New GP evaluator release 2.4.1.compile-7


Hello PARI-dev,

I have made available a new version of my latest GP evaluator:

<http://pari.math.u-bordeaux.fr/~bill/pari-2.4.1.compile-7.tar.gz>

This release fix a crash with parse error reporting and allows to have
several local() statement.
Actuall y with this version, local() statements can be anywhere in a
function. The variables will live until the function return. (There is
no notion of block yet).

For example :

? f(x)=print(x);local(z=x^2+1);x^2+1
? f(4)
4
%1 = 17

Cheers,
Bill.