eigen

ok, so basically you’re handling directly a panda aligned_malloc & aligned_free, and heap management (garbage collection).

I’m asking since for SSEx optimization when I’m using Intel compiler in some case I’ve redefined some new/delete.
But maybe I should merely rely upon Panda_malloc.

btw.
(1) I refrain from using STL stuff (list,set,map,vector,…) since I’ve seen a waste of memory (I’d say +40% sometimes) and a drop in performances
(2) in some case using alloca (ie allocating on the stack instead allocating in the heap) has proven quite efficient…