Skip to content
Snippets Groups Projects
  1. Oct 17, 2016
    • Carsten Gräser's avatar
      [doc] Fix doc for implicit build mode · 1d132ada
      Carsten Gräser authored
      The doc now correctly describes
      * that the overflow area is used during compress and not during assembly
      * the meaning of avg and overflowsize
      * the numbering dependence of this build mode
      * the magic number 4
      * the late failure during compress()
      1d132ada
  2. Mar 14, 2016
    • Carsten Gräser's avatar
      [bugfix] Revert incompatible interface change · 9f1cabe5
      Carsten Gräser authored
      Adding a new template perameter before the existing ones is
      a non-compatible interface change, because code that explicitly
      instantiates the template will fail to compile afterwards.
      
      Putting the new template parameter to the end fixes the issue
      9f1cabe5
  3. Feb 17, 2016
  4. Jan 11, 2016
  5. Jan 08, 2016
  6. Dec 29, 2015
  7. Dec 22, 2015
  8. Dec 21, 2015
  9. Nov 27, 2015
  10. Nov 25, 2015
  11. Nov 20, 2015
  12. Oct 16, 2015
  13. Aug 03, 2015
  14. Jul 21, 2015
  15. Jul 15, 2015
  16. Apr 13, 2015
  17. Dec 18, 2014
    • Steffen Müthing's avatar
      [BCRSMatrix] Drop over-eager check in row access operator[] · 35b879c3
      Steffen Müthing authored
      When DUNE_ISTL_WITH_CHECKING is enabled, the BCRSMatrix throws an
      exception when trying to access a row that has no columns. This creates
      a problem in PDELab when using nested BCRSMatrices (as some people do
      for operator splitting in PDELab), where an off-diagonal BCRSMatrix
      block might be completely empty (i.e. have a correctly set up structure,
      but every row in the off-diagonal BCRSMatrix is empty. If the PDELab
      assembler then attempts to set a Dirichlet constraint, it has to access
      the row to set all columns in that row to zero, but the check in
      operator[] prevents it from doing so.
      
      So this patch just drops that check.
      35b879c3
  18. Nov 28, 2014
  19. Oct 29, 2014
    • Jonathan Youett's avatar
      [bugfix] Fixes assignment of BCRSMatrix with nonmatching number of rows. · 8349b4fb
      Jonathan Youett authored and Markus Blatt's avatar Markus Blatt committed
      When assigning a BCRSMatrix to another BCRSMatrix which was setup for
      a different size/pattern, it segfaulted and I got the following
      Exception:
      
      "InvalidStateException [allocate:.../dune/istl/bcrsmatrix.hh:2108]:
      Rows have already been allocated, cannot allocate a second time."
      
      The problem was, that inside the assignment operator the rows (r) were
      never deallocated. This commit fixes this and adds a testcase.
      
      Testcase slightly modified by Markus.
      8349b4fb
  20. Mar 03, 2014
  21. Feb 26, 2014
  22. Dec 16, 2013
  23. Nov 27, 2013
  24. Nov 19, 2013
Loading