From 6379c766469980bf09ea5fdd7aa444b76c758528 Mon Sep 17 00:00:00 2001 From: kalmar Date: Fri, 19 May 2017 10:00:41 +0200 Subject: [PATCH] change full -> initialise keyword; the default is to initialise by default --- src/GroupRings.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/GroupRings.jl b/src/GroupRings.jl index a40c7a9..4d07bc7 100644 --- a/src/GroupRings.jl +++ b/src/GroupRings.jl @@ -17,9 +17,9 @@ type GroupRing <: Ring basis_dict::Dict{GroupElem, Int} pm::Array{Int,2} - function GroupRing(G::Group; full=false) + function GroupRing(G::Group; initialise=true) A = new(G) - if full + if initialise complete(A) end return A