Skip to content
Snippets Groups Projects
  1. May 07, 2014
  2. Oct 02, 2013
  3. Sep 18, 2013
  4. Sep 11, 2013
  5. Sep 09, 2013
  6. Sep 06, 2013
  7. Aug 27, 2013
    • Markus Blatt's avatar
      [Bugfix] Prevent implicite conversion Matrix->MatrixAdapter. · 4acfda14
      Markus Blatt authored
      MatrixAdapter uses a const reference to store a reference
      to the matrix it is working on. Without this patch it was
      possible to pass the matrix to constructor actually taking
      a MatrixAdapter as its argument. This resulted in a const
      reference to a temporary MatrixAdapter that died after the
      constructor call.
      
      This patch request explicitly calling the constructor and
      thus fixes this issue.
      4acfda14
  8. Aug 26, 2013
  9. Aug 21, 2013
  10. Aug 19, 2013
  11. Aug 15, 2013
  12. Aug 14, 2013
  13. Aug 13, 2013
  14. Aug 12, 2013
  15. Aug 05, 2013
    • Markus Blatt's avatar
      [Bugfix][AMG] Move storage of iterators from class to method scope. · 3b2b472e
      Markus Blatt authored
      Storing the iterators over over the AMG hierarchies as class member
      is a really bad idea if one wants to allow the reuse of theses AMG
      hierarchies in different threads. This patch creates a private struct
      for collecting the iterators over the hierachies. An instance of this
      struct is created in apply and passed to the solution algorithms. Thus
      each apply uses its own context of iterators.
      3b2b472e
Loading