Skip to content

Commit c7efe8d

Browse files
author
Gaurav Arya
committed
fix circular logic
1 parent c675547 commit c7efe8d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/definitions.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -604,8 +604,8 @@ Base.adjoint(p::AdjointPlan{T}) where {T} = p.p
604604
# always have AdjointPlan inside ScaledPlan.
605605
Base.adjoint(p::ScaledPlan{T}) where {T} = ScaledPlan{T}(p.p', p.scale)
606606

607-
size(p::AdjointPlan) = output_size(p)
608-
output_size(p::AdjointPlan) = size(p)
607+
size(p::AdjointPlan) = output_size(p.p)
608+
output_size(p::AdjointPlan) = size(p.p)
609609

610610
Base.:*(p::AdjointPlan, x::AbstractArray) = _mul(p, x, ProjectionStyle(p.p))
611611

0 commit comments

Comments
 (0)