![]() |
Fast Auxiliary Space Preconditioning 2.7.7 Aug/28/2022
|
Krylov subspace methods – Preconditioned MINRES with safety net. More...
Go to the source code of this file.
Functions | |
INT | fasp_solver_dcsr_spminres (const dCSRmat *A, const dvector *b, dvector *u, precond *pc, const REAL tol, const INT MaxIt, const SHORT StopType, const SHORT PrtLvl) |
A preconditioned minimal residual (Minres) method for solving Au=b with safety net. More... | |
INT | fasp_solver_dblc_spminres (const dBLCmat *A, const dvector *b, dvector *u, precond *pc, const REAL tol, const INT MaxIt, const SHORT StopType, const SHORT PrtLvl) |
A preconditioned minimal residual (Minres) method for solving Au=b with safety net. More... | |
INT | fasp_solver_dstr_spminres (const dSTRmat *A, const dvector *b, dvector *u, precond *pc, const REAL tol, const INT MaxIt, const SHORT StopType, const SHORT PrtLvl) |
A preconditioned minimal residual (Minres) method for solving Au=b with safety net. More... | |
Krylov subspace methods – Preconditioned MINRES with safety net.
Reference: Y. Saad 2003 Iterative methods for sparse linear systems (2nd Edition), SIAM
Copyright (C) 2013–Present by the FASP team. All rights reserved.
TODO: Use one single function for all! –Chensong
Definition in file KrySPminres.c.
INT fasp_solver_dblc_spminres | ( | const dBLCmat * | A, |
const dvector * | b, | ||
dvector * | u, | ||
precond * | pc, | ||
const REAL | tol, | ||
const INT | MaxIt, | ||
const SHORT | StopType, | ||
const SHORT | PrtLvl | ||
) |
A preconditioned minimal residual (Minres) method for solving Au=b with safety net.
A | Pointer to dBLCmat: coefficient matrix |
b | Pointer to dvector: right hand side |
u | Pointer to dvector: unknowns |
pc | Pointer to structure of precondition (precond) |
tol | Tolerance for stopping |
MaxIt | Maximal number of iterations |
StopType | Stopping criteria type |
PrtLvl | How much information to print out |
Definition at line 511 of file KrySPminres.c.
INT fasp_solver_dcsr_spminres | ( | const dCSRmat * | A, |
const dvector * | b, | ||
dvector * | u, | ||
precond * | pc, | ||
const REAL | tol, | ||
const INT | MaxIt, | ||
const SHORT | StopType, | ||
const SHORT | PrtLvl | ||
) |
A preconditioned minimal residual (Minres) method for solving Au=b with safety net.
A | Pointer to dCSRmat: coefficient matrix |
b | Pointer to dvector: right hand side |
u | Pointer to dvector: unknowns |
pc | Pointer to structure of precondition (precond) |
tol | Tolerance for stopping |
MaxIt | Maximal number of iterations |
StopType | Stopping criteria type |
PrtLvl | How much information to print out |
Definition at line 60 of file KrySPminres.c.
INT fasp_solver_dstr_spminres | ( | const dSTRmat * | A, |
const dvector * | b, | ||
dvector * | u, | ||
precond * | pc, | ||
const REAL | tol, | ||
const INT | MaxIt, | ||
const SHORT | StopType, | ||
const SHORT | PrtLvl | ||
) |
A preconditioned minimal residual (Minres) method for solving Au=b with safety net.
A | Pointer to dSTRmat: coefficient matrix |
b | Pointer to dvector: right hand side |
u | Pointer to dvector: unknowns |
MaxIt | Maximal number of iterations |
tol | Tolerance for stopping |
pc | Pointer to structure of precondition (precond) |
StopType | Stopping criteria type |
PrtLvl | How much information to print out |
Definition at line 962 of file KrySPminres.c.