change full -> initialise keyword; the default is to initialise by default

This commit is contained in:
kalmar 2017-05-19 10:00:41 +02:00
parent 5a26aaa5cb
commit 6379c76646
1 changed files with 2 additions and 2 deletions

View File

@ -17,9 +17,9 @@ type GroupRing <: Ring
basis_dict::Dict{GroupElem, Int} basis_dict::Dict{GroupElem, Int}
pm::Array{Int,2} pm::Array{Int,2}
function GroupRing(G::Group; full=false) function GroupRing(G::Group; initialise=true)
A = new(G) A = new(G)
if full if initialise
complete(A) complete(A)
end end
return A return A