Skip to content
Snippets Groups Projects
  1. Aug 30, 2024
  2. Aug 28, 2024
  3. Aug 22, 2024
  4. Aug 21, 2024
  5. Aug 12, 2024
  6. Aug 08, 2024
  7. Aug 07, 2024
  8. Jul 11, 2024
  9. Jul 10, 2024
  10. Jul 09, 2024
  11. Jul 08, 2024
  12. Jul 07, 2024
  13. Jul 06, 2024
    • Sander, Oliver's avatar
      Minor simplification of CosseratRodEnergy · 9719c84b
      Sander, Oliver authored
      9719c84b
    • Sander, Oliver's avatar
      InterpolationRules: Return coefficients by const reference · e2d97ab8
      Sander, Oliver authored
      Previously they were returned by value, but I do not remember any
      actual reason for that.  Return by const reference leads to a
      measurable speed increase when computing the derivatives of
      projection-based FE onto the sphere.  It also fixed some
      undefined behavior in that code, which took const-references
      of the returned temporaries.
      
      Returning the coefficients by const reference is more difficult
      for product manifolds, because previously the interpolation rules
      stored the coefficients separately for each factor space.
      With this patch, these rules now store the coefficients twice:
      once in the old separate format, and once as needed for returning
      them by reference.  Interpolation rules are not meant to exist
      in large numbers, and therefore I do not think that this
      extra space consumption matters.
      e2d97ab8
Loading