Hi Rob, On 21 Jun., 20:26, Rob Beezer <[email protected]> wrote: > It would appear that using "d" as a generator for the finite field > consistently raises this error, while using almost any other letter or > string will work fine (eg "foo" below).
That reminds me #9438, which has fixed the following bug: sage: R.<a, b> = QQ[] sage: b._pari_() b sage: GF(7)(5).log() 5 sage: b._pari_() Mod(3, 7) The problem was that the log method was assigning a variable named b in PARI. Could your problem be similar? Cheers, Simon -- To post to this group, send an email to [email protected] To unsubscribe from this group, send an email to [email protected] For more options, visit this group at http://groups.google.com/group/sage-devel URL: http://www.sagemath.org
