Skip to content

Commit f6cda46

Browse files
committed
fix to Jac of AffineAdd
1 parent 86f8f67 commit f6cda46

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/calculus/Jacobian.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ Jacobian(T::Transpose{A}, x::AbstractArray) where {A <: AbstractOperator} = T
7373
#Jacobian of BroadCast
7474
Jacobian(B::A, x::AbstractArray) where {A <: BroadCast} = BroadCast(Jacobian(B.A,x),B.dim_out)
7575
#Jacobian of AffineAdd
76-
Jacobian(B::A, x::AbstractArray) where {A <: AffineAdd} = Jacobian(B.A,x)
76+
Jacobian(B::A, x) where {A <: AffineAdd} = Jacobian(B.A,x)
7777

7878
# Properties
7979

0 commit comments

Comments
 (0)