From 085c47ddd339c7b82db9bde3ca770515a7988502 Mon Sep 17 00:00:00 2001 From: kalmar Date: Wed, 17 May 2017 11:36:21 +0200 Subject: [PATCH] fix not defined S -> Y --- src/GroupRings.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/GroupRings.jl b/src/GroupRings.jl index c6bfdc9..eb6fbc3 100644 --- a/src/GroupRings.jl +++ b/src/GroupRings.jl @@ -155,7 +155,7 @@ end function (==)(X::GroupRingElem, Y::GroupRingElem) parent(X) == parent(Y) || return false - if eltype(X.coeffs) != eltype(S.coeffs) + if eltype(X.coeffs) != eltype(Y.coeffs) warn("Comparing elements with different coeffs Rings!") end X.coeffs == Y.coeffs || return false