Skip to content
Snippets Groups Projects
  1. Jan 30, 2025
    • Oliver Sander's avatar
      Fix memory leak in the CHOLMOD wrapper code · e4ffbb1f
      Oliver Sander authored
      When calling CHOLMOD to compute the Cholesky factor of a matrix,
      it was not tested whether such a factor already existed. As a
      consequence, if the solver was called twice in a row, the old
      factor would be lost to a memory leak.
      
      Fix this by explicitly deallocating the old Cholesky factor
      before asking CHOLMOD for a new one.
      e4ffbb1f
  2. Sep 19, 2024
  3. Sep 16, 2024
  4. Jun 21, 2023
  5. May 25, 2023
  6. Sep 30, 2022
  7. Nov 10, 2021
  8. Oct 17, 2021
  9. Jun 30, 2021
  10. Mar 16, 2021
  11. Mar 16, 2020
  12. Mar 05, 2020
  13. Dec 20, 2019
  14. Dec 04, 2019
  15. Nov 18, 2019
    • Patrick Jaap's avatar
      CHOLMOD: introduce bool nIsZero_ · a5839407
      Patrick Jaap authored
      It can happen that we work on a 0 times 0 matrix due to ignore fields or other reasons.
      This leads to undefined behavior in the cholmod lib.
      
      We simply catch this case by introducing a bool value.
      a5839407
  16. Sep 27, 2019
  17. Sep 12, 2019
  18. Dec 05, 2018
  19. Nov 07, 2018
    • Patrick Jaap's avatar
      Implementation of CHOLMOD solver · b345aadf
      Patrick Jaap authored and Christoph Grüninger's avatar Christoph Grüninger committed
      A simple implementation for the SuiteSparse CHOLMOD solver for real valued
      (double) linear systems.
      Ignore dof's are supported.
      The user has to take care of the correct size of
      vectors in the "apply" method.
      b345aadf
Loading