1
0
mirror of https://github.com/kalmarek/GroupRings.jl.git synced 2024-07-30 06:05:31 +02:00

change throw message

This commit is contained in:
kalmar 2017-07-11 16:01:42 +02:00
parent ed023be1fd
commit 5a3e2761a4

View File

@ -323,7 +323,7 @@ function mul!{T}(result::AbstractVector{T}, X::AbstractVector{T}, Y::AbstractVec
if y != z if y != z
for (i, index) in enumerate(pm[:,j]) for (i, index) in enumerate(pm[:,j])
if X[i] != z if X[i] != z
index == 0 && throw(ArgumentError("The product don't seem to belong to the span of basis!")) index == 0 && throw(ArgumentError("The product don't seem to be supported on basis!"))
result[index] += X[i]*y result[index] += X[i]*y
end end
end end