Open markuspf opened 8 years ago
For some reason GF(2)
seems to be special in some way. GF(3)
and GF(5)
work.
As does GF(9)
, but not GF(4)
.
So the issue seems to be about the fact that Z(2)
is the 1
-element of GF(2)
, so the code stores constructorinfo for Z(2)
as being OneImmutable(GF(2))
, and GF(2)
is constructed as FieldOverItselfByGenerators([Z(2)])
which leads to an infinite recursion.
One easy fix is to treat finite field elements (IsFFE
) as atomic and just output them using the existing openmath CD.
:+1:
One easy fix is to treat finite field elements (
IsFFE
) as atomic and just output them using the existing openmath CD.