#15767: Upgrade PARI to 2.7
-------------------------------------+-------------------------------------
       Reporter:  jdemeyer           |        Owner:
           Type:  enhancement        |       Status:  new
       Priority:  major              |    Milestone:  sage-6.2
      Component:  packages:          |   Resolution:
  standard                           |    Merged in:
       Keywords:                     |    Reviewers:
        Authors:  Jeroen Demeyer     |  Work issues:
Report Upstream:  N/A                |       Commit:
         Branch:                     |  6091d59de30240271265c6efc02bccecb4a3e81e
  u/jdemeyer/ticket/15767            |     Stopgaps:
   Dependencies:  #15765, #15774     |
-------------------------------------+-------------------------------------

Comment (by jdemeyer):

 Replying to [comment:23 pbruin]:
 > I know this isn't ready yet; I was just browsing the branch to see how
 many changes need to be made.  Are you sure the following is correct?  I
 think the purpose of the `ellinit()` call is to allow the user to specify
 the curve in short Weierstrass form (`ellinit([a, b]) --> y^2 = x^3 + a*x
 + b`).
 > {{{
 > #!diff
 > @@ -1903,7 +1903,7 @@ bnfellrank(bnf,ell,help=[],bigflag=1,flag3=1) =
 > local(urst,urst1,den,factden,eqtheta,rnfeq,bbnf,ext,rang);
 > if( DEBUGLEVEL_ell >= 3, print("entree dans bnfellrank"));
 > - if( #ell <= 5, ell = ellinit(ell,1));
 > + ell = vector(5, i, ell[i]);
 > \\ removes the coefficients a1 and a3
 > urst = [1,0,0,0];
 > }}}

 OK, I see what you mean. We could change it to
 {{{
 ell = ellinit(ell);
 ell = vector(5, i, ell[i]);
 }}}

--
Ticket URL: <http://trac.sagemath.org/ticket/15767#comment:24>
Sage <http://www.sagemath.org>
Sage: Creating a Viable Open Source Alternative to Magma, Maple, Mathematica, 
and MATLAB

-- 
You received this message because you are subscribed to the Google Groups 
"sage-trac" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/sage-trac.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to