Skip to content

Commit 6f53a4e

Browse files
committed
get rid of out of place jvp_op
1 parent 601866c commit 6f53a4e

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

lib/OrdinaryDiffEqDifferentiation/src/operators.jl

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,6 @@ function JVPCache(f::DiffEqBase.AbstractDiffEqFunction, du, u, p, t; autodiff)
4242
return JVPCache{eltype(du)}(jvp_op, f, du, u, p, t)
4343
end
4444

45-
function (op::JVPCache)(v, u, p, t)
46-
return op.jvp_op(op.du, v, u, p, t)
47-
end
48-
4945
function (op::JVPCache)(Jv, v, u, p, t)
5046
op.jvp_op(Jv, v, u, p, t)
5147
return Jv

0 commit comments

Comments
 (0)