Skip to content
Snippets Groups Projects
  1. Aug 03, 2016
    • Markus Blatt's avatar
      Merge branch 'feature/stop-finding-old-superlu' into 'master' · 8a4aa6a4
      Markus Blatt authored
      Stop finding old SuperLU versions.
      
      Previously CMake pretended to have found a valid
      SuperLU version for DUNE even if the version was
      too old (i.e. < 4). People having such an old versions
      only noticed this via later compile errors of binaries
      using SuperLU. That is far too late.
      
      With this patch we introduce a compile check into the
      CMake module that fails for old unsupported versions.
      In that case CMake will not find SuperLU.
      
      See merge request !52
      8a4aa6a4
    • Christoph Grüninger's avatar
    • Markus Blatt's avatar
      Stop finding old SuperLU versions. · 3bfc31c7
      Markus Blatt authored
      Previously CMake pretended to have found a valid
      SuperLU version for DUNE even if the version was
      too old (i.e. < 4). People having such an old versions
      only noticed this via later compile errors of binaries
      using SuperLU. That is far too late.
      
      With this patch we introduce a compile check into the
      CMake module that fails for old unsupported versions.
      In that case CMake will not find SuperLU.
      3bfc31c7
  2. Jul 30, 2016
  3. Jul 28, 2016
  4. Jul 27, 2016
  5. Jul 22, 2016
  6. Jul 18, 2016
  7. Jul 16, 2016
  8. Jul 14, 2016
  9. Jul 12, 2016
  10. Jul 07, 2016
  11. Jun 30, 2016
  12. Jun 29, 2016
  13. Jun 24, 2016
  14. Jun 03, 2016
  15. May 28, 2016
  16. May 13, 2016
  17. May 07, 2016
  18. May 03, 2016
    • Jö Fahlke's avatar
      Merge branch 'feature/abort-on-invalid-defect' into 'master' · 538d99fa
      Jö Fahlke authored
      Abort CGSolver when the defect is invalid
      
      The first commit introduces the exception `SolverAbort`, derived from `ISTLError`.
      
      The second commit makes `CGSolver` abort by throwing `SolverAbort` when the defect becomes invalid (infinite or NaN).  The check is done in every iteration before the convergence check.
      
      These two commits fix #12.
      
      The third and fourth commit make `BiCGStab` and `GMRes` throw `SolverAbort` when they detect a breakdown.  `SolverAbort` seemed more specific when the `ISTLError` they were throwing before.
      
      The fifth commit documents when `SolverAbort` is thrown at the moment.
      
      The sixth commit adds a unit tests that tries to trigger `SolverAbort` and makes sure that it is actually thrown.  It does this for the NaN-check in `CGSolver` and for the "abs(h) < EPSILON"-check in `BiCGSTABSolver` -- there a more conditions in `BiCGSTABSolver` and `RestartedGMResSolver` that throw, but I don't know how to trigger them.
      
      
      
      See merge request !36
      538d99fa
Loading