From 5785663efab94fd13de52af95680421f3d207aa2 Mon Sep 17 00:00:00 2001 From: kalmarek Date: Tue, 8 Jan 2019 03:17:56 +0100 Subject: [PATCH] changes to docs --- src/GroupRings.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/GroupRings.jl b/src/GroupRings.jl index a2c74ce..d515ccb 100644 --- a/src/GroupRings.jl +++ b/src/GroupRings.jl @@ -424,9 +424,9 @@ function mul!(result::GroupRingElem, X::GroupRingElem, Y::GroupRingElem) if isdefined(RG, :pm) s = size(RG.pm) k = findprev(!iszero, X.coeffs, lX) - (k == nothing ? 0 : k) <= s[1] || throw("Element in X outside of support of RG.pm") + (k == nothing ? 0 : k) <= s[1] || throw("Element in X outside of support of parents product") k = findprev(!iszero, Y.coeffs, lY) - (k == nothing ? 0 : k) <= s[2] || throw("Element in Y outside of support of RG.pm") + (k == nothing ? 0 : k) <= s[2] || throw("Element in Y outside of support of parents product") for j in 1:lY if Y.coeffs[j] != z