Skip to content
Snippets Groups Projects
  1. Nov 20, 2020
    • Sander, Oliver's avatar
      Find std math functions by ADL · 87e1da6f
      Sander, Oliver authored
      ADOL-C implements most standard math functions for its
      'adouble' type, and they are not in the namespace 'std'.
      dune-fufem contains a file adolcnamespaceinjections.hh
      which imports some of these methods into the 'std'
      namespace, but that is not the proper way to do it.
      Rather, they should be found by argument-dependent
      lookup (ADL), that is
      
        using std::sin;
        auto v = sin(x);
      87e1da6f
  2. Oct 10, 2019
    • Sander, Oliver's avatar
      Improve documentation · f5d46bc9
      Sander, Oliver authored
      f5d46bc9
    • Sander, Oliver's avatar
      Fix GramSchmidtSolver · 917fe5b9
      Sander, Oliver authored
      The computation of the A-orthogonal matrices was wrong,
      and for some reason nobody ever really noticed this.
      One reason could be that in GFE applications A is frequently
      very close to the identity, and then you wouldn't notice
      the bug that much.
      
      Anyway, localgeodesicfefunctiontest.cc passes now.
      917fe5b9
  3. Jul 17, 2014
  4. Jan 09, 2014
  5. Dec 12, 2013
Loading