Skip to content
Snippets Groups Projects
Commit 21c67275 authored by Oliver Sander's avatar Oliver Sander
Browse files

Merge branch 'fix-cholmod-leak-in-2.10' into 'releases/2.10'

Fix CHOLMOD leak

See merge request !603
parents 1c93e39b 1368ef43
Branches releases/2.10
No related tags found
1 merge request!603Fix CHOLMOD leak
Pipeline #76525 passed
......@@ -461,6 +461,10 @@ public:
});
// Remove old factor that may be left over from a previous run
if (L_)
CholmodMethod::free_factor(&L_, &c_);
// Now analyse the pattern and optimal row order
L_ = CholmodMethod::analyze(M.get(), &c_);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment