Skip to content
Snippets Groups Projects
  1. Sep 12, 2016
  2. Aug 18, 2016
  3. Aug 10, 2016
  4. Aug 05, 2016
  5. Jul 28, 2016
  6. Jul 27, 2016
  7. Jul 18, 2016
  8. Jul 14, 2016
  9. Jul 12, 2016
  10. Jun 29, 2016
  11. Jun 03, 2016
  12. May 13, 2016
  13. Apr 11, 2016
    • Jö Fahlke's avatar
      [test][SolverAbort] Check that the solver aborts when given an unsolvable system to solve. · c024db84
      Jö Fahlke authored
      Here we try to solve A*x=b for x, with
      ```
            / 1  1 \       / 1 \
        A = |      |,  b = |   |,
            \ 1  1 /       \ 2 /
      ```
      which has no solution.  In the CGSolver, the this leads to a NaN defect after
      46 iterations.  In BiCGSTABSolver this leads to "abs(h) < EPSILON" after 1.5
      iterations.
      
      BiCGSTABSolver and RestartedGMResSolver also throw SolverAbort when they
      detect "breakdown", checking for that is left as a todo.
      c024db84
  14. Mar 22, 2016
  15. Mar 21, 2016
  16. Mar 17, 2016
  17. Mar 15, 2016
    • Oliver Sander's avatar
      Specialize FieldTraits for MultiTypeBlockVector · ca9342c0
      Oliver Sander authored
      This allows other code to access field_type and real_type for a MultiTypeBlockVector
      using the FieldTraits class.  Caveat: in principle, individual entries of a
      MultiTypeBlockVector could use different field_types.  The implementation always
      returns the first one.
      ca9342c0
Loading