Skip to content
Snippets Groups Projects
  1. Mar 24, 2025
  2. Mar 21, 2025
  3. Mar 19, 2025
  4. Mar 05, 2025
  5. Feb 23, 2025
  6. Feb 22, 2025
  7. Feb 21, 2025
  8. Feb 03, 2025
  9. 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
  10. Jan 14, 2025
  11. Jan 13, 2025
  12. Jan 02, 2025
    • Carsten Gräser's avatar
      Make FastAMG work with non-blocked matrices · 07b05428
      Carsten Gräser authored
      The internal operations of `FastAMG` assumed that the entries
      of the matrix are vectors are matrices and vectors themselves
      by making use of the dune matrix and vector interfaces. As a
      consequence `FastAMG` cannot be used with `BCRSMatrix<double>`
      in contrast to `BCRSMatrix<FieldMatrix<double,1,1>>`.
      
      This patch introduces `IsNumber`-based switches in the respective
      places that use plain arithmetic operators if the matrix/vector
      is not blocked thus adds the missing support for e.g. `BCRSMatrix<double>`.
      07b05428
  13. Dec 16, 2024
Loading