fix use of Nemo's FiniteField

This commit is contained in:
kalmarek 2018-08-15 17:20:25 +02:00
parent 1e54e25672
commit 42f915b91d
1 changed files with 2 additions and 1 deletions

View File

@ -10,7 +10,8 @@ struct SpecialLinearGroup <: SymmetrizedGroup
if p == 0
G = MatrixSpace(Nemo.ZZ, n, n)
else
G = MatrixSpace(FiniteField(p), n, n)
F, a = FiniteField(p, 1, "a")
G = MatrixSpace(F, n, n)
end
return new(args, G)
end