Skip to content
Snippets Groups Projects
  1. Sep 30, 2022
  2. Feb 28, 2022
  3. Jan 20, 2022
  4. Dec 06, 2019
  5. Dec 04, 2019
  6. Nov 26, 2019
  7. Sep 03, 2019
  8. Aug 20, 2019
  9. Aug 09, 2019
  10. Jul 30, 2019
  11. Apr 05, 2019
  12. Apr 04, 2019
  13. Mar 26, 2019
  14. Jul 06, 2018
  15. Feb 14, 2018
    • Steffen Müthing's avatar
      [bugfix] Fix virtual method shadowing in IterativeSolver · aeff7adb
      Steffen Müthing authored
      IterativeSolver redefines one of the two overloads of apply(), which hides the other overload within
      that class. This is then worked around in the overloaded variant.
      
      This patch fixes the issue by making the non-overloaded variant visible in the context of
      IterativeSolver.
      aeff7adb
  16. Dec 14, 2017
  17. Nov 06, 2017
  18. Oct 05, 2017
    • Carsten Gräser's avatar
      Comment out warnings · b4299314
      Carsten Gräser authored
      These warnings are very irritating. They do not
      warn about deprecated or misused feature. They are
      issued any time you compile the tests. They don't
      provide any useful information unless you look at the
      code and have insight in the implementation detains.
      
      To sum up: They don't look like a warning addressed to
      the user, but like a reminder on an intended future
      implementation addressed to the implementor. Hence
      they should not be exposed to the user.
      
      If anyone feels that this is an important user warning
      feel free to re-enable it after adding enough information
      making the warning actually useful.
      b4299314
  19. Jun 30, 2017
  20. Jun 27, 2017
  21. Apr 11, 2017
  22. Apr 10, 2017
  23. Dec 09, 2016
  24. Mar 17, 2016
  25. Dec 14, 2015
    • Christian Engwer's avatar
      [solvers] rename Int template to CountType · 37b668cd
      Christian Engwer authored
      we introduced a template Parameter for the type counting the current
      iteration. In general this is an int, but e.g. the BiCGStab print also
      the intermediate steps, thus it uses double as CountType. As Markus
      pointed out, the original name Int was not very intuitive.
      37b668cd
  26. Nov 27, 2015
  27. Dec 15, 2014
    • Steffen Müthing's avatar
      [Infrastructure] Be more careful about field_type / real_type · 714cd554
      Steffen Müthing authored
      This patch removes the assumption that the field_type and / or real_type
      can always be implicitly converted to double and can be implicitly
      constructed from an int (in constructs like field_type d = 0;).
      
      This patch is required for compatibility with the FLOP counter in PDELab.
      714cd554
Loading