pass the right Id element for rings

This commit is contained in:
kalmarek 2018-08-15 17:20:02 +02:00
parent 45d8d85189
commit 1e54e25672
1 changed files with 7 additions and 1 deletions

View File

@ -96,7 +96,13 @@ function main(::Type{Standard}, Gr::SymmetrizedGroup)
solver = scs_solver(tol, iterations)
return PropertyT.check_property_T(groupdir, S, G(),
if G isa AbstractAlgebra.Ring
Id = one(G)
else
Id = G()
end
return PropertyT.check_property_T(groupdir, S, Id,
solver, upper_bound, tol, radius, warm)
end