Closed MrVeka closed 4 months ago
Hi, when trying to create a Galois field of 50 we get this error message : Argument 'order' must be a prime power, not 50 = 2**1 + 5**2.
Argument 'order' must be a prime power, not 50 = 2**1 + 5**2.
I think it should have been 2**1 * 5**2 or 2^1 * 5^2, I'ill try to implement the latter if it's ok.
2**1 * 5**2
2^1 * 5^2
Thanks for the report and PR!
Released in v0.4.1.
Hi, when trying to create a Galois field of 50 we get this error message :
Argument 'order' must be a prime power, not 50 = 2**1 + 5**2.
I think it should have been
2**1 * 5**2
or2^1 * 5^2
, I'ill try to implement the latter if it's ok.