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
Copy file name to clipboardExpand all lines: src/ode_findrep.jl
+11Lines changed: 11 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -26,6 +26,17 @@ function ode_findreplace(ex,symex,indvar_dict,param_dict,inline_dict;params_from
26
26
end
27
27
end
28
28
29
+
functionbad_derivative(ex)
30
+
for (i,arg) inenumerate(ex.args)
31
+
ifisa(arg,Expr)
32
+
bad_derivative(arg)
33
+
elseif arg ==:Derivative
34
+
warn("Undefined derivative found. If you are using a non-elementary function, you must define the derivative in order to calculate Jacobians et. al. Please refer to the documentation.")
0 commit comments