We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 05be004 commit 5c9668cCopy full SHA for 5c9668c
src/Operators/general/algebra.jl
@@ -226,7 +226,7 @@ function check_times(ops)
226
for k = 1:length(ops)-1
227
size(ops[k], 2) == size(ops[k+1], 1) || throw(ArgumentError("incompatible operator sizes"))
228
spacescompatible(domainspace(ops[k]), rangespace(ops[k+1])) ||
229
- throw(ArgumentError("incompatible spaces at index $k, received $(domainspace(ops[k])) and $(rangespace(ops[k+1])); ops = $ops"))
+ throw(ArgumentError("incompatible spaces at index $k, received $(domainspace(ops[k])) and $(rangespace(ops[k+1]))"))
230
end
231
return nothing
232
0 commit comments