Skip to content
Snippets Groups Projects
  1. Sep 18, 2020
  2. Sep 10, 2020
  3. Sep 09, 2020
  4. Sep 05, 2020
  5. Sep 03, 2020
  6. Sep 02, 2020
  7. Jul 13, 2020
  8. Jun 08, 2020
  9. May 20, 2020
  10. May 14, 2020
  11. May 13, 2020
  12. Mar 04, 2020
  13. Feb 18, 2020
    • Sander, Oliver's avatar
      Always use shared_ptr from std:: namespace explicitly · 7cbe0451
      Sander, Oliver authored
      Up until dune-common 2.7, the Dune namespace contained shared_ptr:
      First as an actual implementation, later simply as a namespace
      import.  Dune-common post-2.7 has removed that import,
      and users of shared_ptr really have to explicitly specify
      the std:: namespace prefix.
      7cbe0451
  14. Feb 11, 2020
    • Sander, Oliver's avatar
      Avoid undefined behavior (sanitizer warning) · 46f6addc
      Sander, Oliver authored
      The svd code contains some index trickery, because the original code
      was written in fortran, which numbers arrays starting from '1'
      rather than from '0'.  This trickery included having a pointer point
      1 int in front of an allocated array, implicitly relying on the
      fact that pointer[0] would never be called.  The llvm sanitizer
      complains nevertheless, so this patch improves the trickery a little
      to avoid the objected pointer.
      46f6addc
    • Sander, Oliver's avatar
      Avoid leaking a LocalGeodesicFEFDStiffness object · b721f7bd
      Sander, Oliver authored
      Do this by making RodAssembler more similar to the generic
      GeodesicFEAssembler: the constructor argument is now a
      general LocalGeodesicFEStiffness, and not something particular
      to rod problems.
      b721f7bd
  15. Jan 29, 2020
  16. Jan 19, 2020
    • Sander, Oliver's avatar
      Delete the class GlobalGFETestFunction · 18b28b45
      Sander, Oliver authored
      I wrote it without a clear idea of what is needed of such a
      test function, and I never finished it.  Now it is unclear
      what the code does or is supposed to do, so let's just
      remove it.
      18b28b45
  17. Dec 18, 2019
Loading