Skip to content
This repository was archived by the owner on Aug 22, 2025. It is now read-only.

Commit f3719de

Browse files
committed
Remove update_coefficients calls in operator evaluation
1 parent 6cd7300 commit f3719de

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/differentiation/jaches_products.jl

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -218,12 +218,10 @@ function update_coefficients!(L::FwdModeAutoDiffVecProd, u, p, t)
218218
end
219219

220220
function (L::FwdModeAutoDiffVecProd)(v, p, t)
221-
L = update_coefficients(L, v, p, t)
222221
L.vecprod(L.f, L.u, v)
223222
end
224223

225224
function (L::FwdModeAutoDiffVecProd)(dv, v, p, t)
226-
update_coefficients!(L, v, p, t)
227225
L.vecprod!(dv, L.f, L.u, v, L.cache...)
228226
end
229227

0 commit comments

Comments
 (0)