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
Repeatedly constructing and initializing instances of pardisoSolver leaks memory as the internal data is never freed.
I noticed that the class has a clear method, but it isn't automatically invoked. Perhaps it could be called in the __del__ method of the class? One would have to make sure that multiple calls to clear are safe.
The text was updated successfully, but these errors were encountered:
Repeatedly constructing and initializing instances of
pardisoSolver
leaks memory as the internal data is never freed.I noticed that the class has a
clear
method, but it isn't automatically invoked. Perhaps it could be called in the__del__
method of the class? One would have to make sure that multiple calls toclear
are safe.The text was updated successfully, but these errors were encountered: