change throw message

This commit is contained in:
kalmar 2017-07-11 16:01:42 +02:00
parent ed023be1fd
commit 5a3e2761a4
1 changed files with 1 additions and 1 deletions

View File

@ -323,7 +323,7 @@ function mul!{T}(result::AbstractVector{T}, X::AbstractVector{T}, Y::AbstractVec
if y != z
for (i, index) in enumerate(pm[:,j])
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
end
end