Ah, thanks!
On Thursday, August 11, 2022 at 4:12:34 PM UTC-4 trevor...@gmail.com wrote:
> There is a description/proposed fix of the problem on this trac ticket:
> https://trac.sagemath.org/ticket/34292
>
> On Thursday, August 11, 2022 at 12:44:59 PM UTC-7 keirh...@gmail.com
> wrote:
>
>> This
There is a description/proposed fix of the problem on this trac
ticket: https://trac.sagemath.org/ticket/34292
On Thursday, August 11, 2022 at 12:44:59 PM UTC-7 keirh...@gmail.com wrote:
> This code:
>
>
>
>
> *H = PermutationGroup([ [(1,2), (3,4)], [(5,6,7),(12,14,18)] ])kH =
> H.algebra(GF(2)
This code:
*H = PermutationGroup([ [(1,2), (3,4)], [(5,6,7),(12,14,18)] ])kH =
H.algebra(GF(2))[a, b] = H.gens()# Produces no coercion errorprint((kH(a) +
kH(b) + H.one())^2)# Produces a coercion error in all cases belowtry:
print((kH(a) + kH(b) + kH(kH.one()))^2)ex