Skip to content

Commit 5ae5df9

Browse files
Merge pull request #340 from JuliaDiffEq/veccont
fix typo in vectorcontinuouscallback
2 parents 577d54b + ec9a6ee commit 5ae5df9

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/callbacks.jl

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,9 @@ VectorContinuousCallback(condition,affect!,affect_neg!,len;
8080
rootfind=true,
8181
save_positions=(true,true),
8282
interp_points=10,
83-
abstol=10eps(),reltol=0) = ContinuousCallback(
84-
condition,affect!,affect_neg!,initialize,
83+
abstol=10eps(),reltol=0) = VectorContinuousCallback(
84+
condition,affect!,affect_neg!,len,
85+
initialize,
8586
idxs,
8687
rootfind,interp_points,
8788
save_positions,abstol,reltol)

0 commit comments

Comments
 (0)