Bicgstabl

This commit is contained in:
Jens Wehner
2021-12-02 22:48:22 +00:00
committed by Rasmus Munk Larsen
parent 2f65ec5302
commit f63c6dd1f9
4 changed files with 373 additions and 0 deletions

View File

@@ -22,6 +22,7 @@
* - a constrained conjugate gradient
* - a Householder GMRES implementation
* - an IDR(s) implementation
* - a BiCGSTAB(L) implementation
* - a DGMRES implementation
* - a MINRES implementation
*
@@ -87,6 +88,7 @@
#include "src/IterativeSolvers/DGMRES.h"
#include "src/IterativeSolvers/MINRES.h"
#include "src/IterativeSolvers/IDRS.h"
#include "src/IterativeSolvers/BiCGSTABL.h"
#include "../../Eigen/src/Core/util/ReenableStupidWarnings.h"