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
The Curve object manages a two-dimensional array that is dynamically resized as needed using home-spun logic.
While there are many cases where we do not want to modernize aspects of cisTEM: e.g.
use of wxString and wxArray as wrappers to std::string and std::vector makes interfacing with WX easier as well as maintaining consistency across the code base (where fitting.)
Explicit memory management for objects that require special considerations like alignment, padding, or complex object ownership/lifetime.
In this specific case the memory management by Curve, see for example Curve::CheckMemory() which is needlessly duplicating behavior encapsulated in std::vector.
The text was updated successfully, but these errors were encountered:
The Curve object manages a two-dimensional array that is dynamically resized as needed using home-spun logic.
While there are many cases where we do not want to modernize aspects of cisTEM: e.g.
In this specific case the memory management by Curve, see for example Curve::CheckMemory() which is needlessly duplicating behavior encapsulated in std::vector.
The text was updated successfully, but these errors were encountered: