Skip to content

Commit

Permalink
fix circular logic
Browse files Browse the repository at this point in the history
  • Loading branch information
Gaurav Arya committed Jun 9, 2022
1 parent c675547 commit c7efe8d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/definitions.jl
Original file line number Diff line number Diff line change
Expand Up @@ -604,8 +604,8 @@ Base.adjoint(p::AdjointPlan{T}) where {T} = p.p
# always have AdjointPlan inside ScaledPlan.
Base.adjoint(p::ScaledPlan{T}) where {T} = ScaledPlan{T}(p.p', p.scale)

size(p::AdjointPlan) = output_size(p)
output_size(p::AdjointPlan) = size(p)
size(p::AdjointPlan) = output_size(p.p)
output_size(p::AdjointPlan) = size(p.p)

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

Expand Down

0 comments on commit c7efe8d

Please sign in to comment.