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
When an ODEProblem is solved, it seems that a wrapped generated function is called during the initialize process. So my question is: how to step through the wrapped generated function so that it can be debugged. Is there any best practices? How to export the source code of the wrapped function from the pointer?
The text was updated successfully, but these errors were encountered:
If you have a FunctionWrappersWrapper object, you cannot. That information has been lost.
You can try either
Force full specialization, that way it doesn't use a FunctionWrappersWrapper. See here for more information.
Keep the f you passed around. Save the arguments that are passed to the FunctionWrappersWrapper, exit the debugger, and then step into your f manually.
When an ODEProblem is solved, it seems that a wrapped generated function is called during the initialize process. So my question is: how to step through the wrapped generated function so that it can be debugged. Is there any best practices? How to export the source code of the wrapped function from the pointer?
The text was updated successfully, but these errors were encountered: