Skip to content
Snippets Groups Projects
  1. Apr 24, 2023
  2. Apr 20, 2023
  3. Apr 17, 2023
  4. Mar 27, 2023
  5. Mar 15, 2023
  6. Mar 10, 2023
  7. Feb 08, 2023
  8. Jan 31, 2023
    • Sander, Oliver's avatar
      Fix minor bugs in productmanifold.hh · 2b0343f5
      Sander, Oliver authored
      In particular:
      * Forward declaring ProductManifold in the `impl` namespace
        is not a good idea.
      * Add missing headers
      
      targetspacetest.cc is extended to test for the first issue.
      2b0343f5
  9. Jan 07, 2023
  10. Dec 21, 2022
    • Sander, Oliver's avatar
      Replace FieldMatrix<,1,1> by scalars · a3cce20f
      Sander, Oliver authored
      Using FieldMatrix<,1,1> for scalars has been the standard Dune way
      for a long time, but since dune 2.7 using scalars directly works
      just as well.
      a3cce20f
    • Sander, Oliver's avatar
      Remove old dune-fufem bases · eb84290c
      Sander, Oliver authored
      They are getting removed now for good after the release of
      dune-fufem 2.9.  The code that replaces them has been there
      for quite a while, and therefore we can simply use it
      without having to worry about compatibility with older
      dune-fufem versions.
      eb84290c
  11. Oct 05, 2022
  12. Aug 30, 2022
  13. Aug 19, 2022
  14. Aug 11, 2022
    • Ansgar Burchardt's avatar
      fix build failure without IPopt · e776e187
      Ansgar Burchardt authored
      e776e187
    • Ansgar Burchardt's avatar
      fix build failure with GCC 12 · 57737833
      Ansgar Burchardt authored
      This fixed the following error when building with GCC 12.1.0-8 (Debian):
      
      ```
      /src/dune-gfe/dune/gfe/rotation.hh:225:42: error: invalid declarator before 'axis'
        225 |     Rotation<T,3>(Dune::FieldVector<T,3> axis, T angle)
            |                                          ^~~~
      /src/dune-gfe/dune/gfe/rotation.hh:225:41: error: expected ')' before 'axis'
        225 |     Rotation<T,3>(Dune::FieldVector<T,3> axis, T angle)
            |                  ~                      ^~~~~
            |                                         )
      ```
      57737833
  15. Jul 12, 2022
  16. Jul 11, 2022
  17. Jun 29, 2022
  18. Apr 20, 2022
  19. Apr 13, 2022
  20. Apr 10, 2022
  21. Mar 03, 2022
  22. Mar 02, 2022
    • Sander, Oliver's avatar
      Fix bug in method RealTuple::log · 6b5d17d1
      Sander, Oliver authored
      Calling log(a,b) returned a-b instead of b-a.
      
      Also, enable unit tests for the RealTuple class.  The current test
      will not trigger the bug in the log method: that will come shortly.
      
      Finally, this commit is the first that mentions its user-facing
      changes in the newly introduced CHANGELOG.md file.
      6b5d17d1
    • Sander, Oliver's avatar
      Use logical && instead of bitwise & · 565b7f77
      Sander, Oliver authored
      The compiler warns about &, and I think the author's intention
      was && anyway.
      565b7f77
Loading