This repository was archived by the owner on Jun 2, 2025. It is now read-only.
This repository was archived by the owner on Jun 2, 2025. It is now read-only.
SymbolicBlockMatrix memory leak #30
Open
Description
SymbolicBlockMatrix
store two raw pointers.
These pointers are not owner by SymbolicBlockMatrix
and this create leaks in unit tests and benchmarks.
Two options :
- Make
SymbolicBlockMatrix
owner of these two pointers - Create
SymbolicBlockMatrixHandler
that will own aSymbolicBlockMatrix
and these two pointers
Since these two pointers are only used by SymbolicBlockMatrix
I prefer option 1.