You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
No there is not. It's a planned feature though (SciML/DiffEqBase.jl#54). If you instead use a regular function you can make it a call-overloaded type with an internal counter.
f = @ode_def LotkaVolterra begin
dx = ax - bxy
dy = -cy + dxy
end a=>1.5 b=>1 c=3 d=1
If my solver calls this function, is there a way to see how many times 'f' is called ?
Thanks
The text was updated successfully, but these errors were encountered: