ORNL / ReSolve

Library of GPU-resident linear solvers
Other
51 stars 1 forks source link

Base class direct solver should not delete L and U factors #143

Closed pelesh closed 4 months ago

pelesh commented 4 months ago

Base class LinSolverDirect deletes member factors L_ and U_, as well as permutation vectors P_ and Q_, but it does not allocate them. It is better if the (derived) class that allocates these objects also assumes responsibility of deleting them.

Closes #139