Skip to content
This repository was archived by the owner on Jul 19, 2023. It is now read-only.

Commit 80b4b9c

Browse files
Update array_operators_interface.jl
1 parent ba70ea8 commit 80b4b9c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/array_operators_interface.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ La = L * a
1313
@test expm(La) expm(a*A)
1414
@test La[2,3] A[2,3] # should this be La[2,3] == a*A[2,3]?
1515

16-
update_func = (_A,t,u) -> _A .= t * A
16+
update_func = (_A,u,p,t) -> _A .= t * A
1717
t = 3.0
1818
Atmp = zeros(N,N)
1919
Lt = DiffEqArrayOperator(Atmp, a, update_func)

0 commit comments

Comments
 (0)