Skip to content

Commit fbc6f76

Browse files
committed
Fix ApproxFun#740
1 parent 07170c7 commit fbc6f76

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "ApproxFunBase"
22
uuid = "fbd15aa5-315a-5a7d-a8a4-24992e37be05"
3-
version = "0.4.4"
3+
version = "0.4.5"
44

55
[deps]
66
AbstractFFTs = "621f4979-c628-5d54-868e-fcf4e3e8185c"

src/PDE/KroneckerOperator.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -418,7 +418,7 @@ function mul_coefficients(A::SubOperator{T,KKO,Tuple{UnitRange{Int},UnitRange{In
418418
P = parent(A)
419419
kr,jr = parentindices(A)
420420
dt,rt = domaintensorizer(P),rangetensorizer(P)
421-
KR,JR = Block(1):block(rt,kr[end]),Block(1):block(dt,jr[end])
421+
KR,JR = Block(1):block(rt,last(kr)),Block(1):block(dt,last(jr))
422422
M = P[KR,JR]
423423
M*pad(b, size(M,2))
424424
end

0 commit comments

Comments
 (0)