Re: [sage-devel] padics, precision, list() and printing

2010-06-23 Thread David Roe
I agree. I'm looking at it now. David On Wed, Jun 23, 2010 at 2:11 PM, Robert Bradshaw < rober...@math.washington.edu> wrote: > On Jun 23, 2010, at 10:32 AM, Robert Miller wrote: > > I'm curious about the following behavior: >> >> sage: E = EllipticCurve('37a') >> sage: R = E.padic_regulator(7)

Re: [sage-devel] padics, precision, list() and printing

2010-06-23 Thread Robert Bradshaw
On Jun 23, 2010, at 10:32 AM, Robert Miller wrote: I'm curious about the following behavior: sage: E = EllipticCurve('37a') sage: R = E.padic_regulator(7) sage: len(R.list()) 37 sage: s = str(R) sage: len(R.list()) 19 (PS - The default precision for padic_regulator is 20). The documentation d

[sage-devel] padics, precision, list() and printing

2010-06-23 Thread Robert Miller
I'm curious about the following behavior: sage: E = EllipticCurve('37a') sage: R = E.padic_regulator(7) sage: len(R.list()) 37 sage: s = str(R) sage: len(R.list()) 19 (PS - The default precision for padic_regulator is 20). The documentation doesn't say anything about what length to expect the ou