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
Is your feature request related to a problem? Please describe.
Lots of functions are passed around in this package, some of which capture variables in a way advised against by the Julia performance tips. Those advise use of let blocks for better performance and type stability. That's probably among the many things that could be done to speed up performance of this library.
Describe the solution you’d like
Check wherever closures are made in this library, such as the NumericalNeuralLyapunovFunctions function, and bring them up to best practices, likely with let blocks.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Lots of functions are passed around in this package, some of which capture variables in a way advised against by the Julia performance tips. Those advise use of
let
blocks for better performance and type stability. That's probably among the many things that could be done to speed up performance of this library.Describe the solution you’d like
Check wherever closures are made in this library, such as the
NumericalNeuralLyapunovFunctions
function, and bring them up to best practices, likely withlet
blocks.The text was updated successfully, but these errors were encountered: