-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
does this sim do any memory management? #51
Comments
The above commits add a comment for each In our case, most of the objects are created at the start of the simulation and are not meant to be disposed. There is only one place where a new |
When you get to #8... This is the type of information that we typically put in implementation-notes.md, under a "Memory Management" heading. |
Related to #2 (code review), there are 3 items related to memory management:
There are zero definitions of
dispose
in sim-specific code, and zero calls todispose
of common-code. That may be OK, or it may point to memory leaks.Things to do:
link
), have an associated cleanup call (eg.unlink
) or document why one is not needed.The text was updated successfully, but these errors were encountered: