![]() |
Fast Auxiliary Space Preconditioning 2.7.7 Aug/28/2022
|
Krylov subspace methods – Preconditioned GCR. More...
Go to the source code of this file.
Functions | |
INT | fasp_solver_dcsr_pgcr (dCSRmat *A, dvector *b, dvector *x, precond *pc, const REAL tol, const REAL abstol, const INT MaxIt, const SHORT restart, const SHORT StopType, const SHORT PrtLvl) |
A preconditioned GCR method for solving Au=b. More... | |
INT | fasp_solver_dblc_pgcr (dBLCmat *A, dvector *b, dvector *x, precond *pc, const REAL tol, const REAL abstol, const INT MaxIt, const SHORT restart, const SHORT StopType, const SHORT PrtLvl) |
A preconditioned GCR method for solving Au=b. More... | |
Krylov subspace methods – Preconditioned GCR.
Copyright (C) 2014–Present by the FASP team. All rights reserved.
TODO: abstol not used yet! –Chensong
Definition in file KryPgcr.c.
INT fasp_solver_dblc_pgcr | ( | dBLCmat * | A, |
dvector * | b, | ||
dvector * | x, | ||
precond * | pc, | ||
const REAL | tol, | ||
const REAL | abstol, | ||
const INT | MaxIt, | ||
const SHORT | restart, | ||
const SHORT | StopType, | ||
const SHORT | PrtLvl | ||
) |
A preconditioned GCR method for solving Au=b.
A | Pointer to coefficient matrix |
b | Pointer to dvector of right hand side |
x | Pointer to dvector of dofs |
pc | Pointer to structure of precondition (precond) |
tol | Tolerance for relative residual |
abstol | Tolerance for absolute residual |
MaxIt | Maximal number of iterations |
restart | Restart number for GCR |
StopType | Stopping type |
PrtLvl | How much information to print out |
Reference: YVAN NOTAY "AN AGGREGATION-BASED ALGEBRAIC MULTIGRID METHOD"
INT fasp_solver_dcsr_pgcr | ( | dCSRmat * | A, |
dvector * | b, | ||
dvector * | x, | ||
precond * | pc, | ||
const REAL | tol, | ||
const REAL | abstol, | ||
const INT | MaxIt, | ||
const SHORT | restart, | ||
const SHORT | StopType, | ||
const SHORT | PrtLvl | ||
) |
A preconditioned GCR method for solving Au=b.
A | Pointer to coefficient matrix |
b | Pointer to dvector of right hand side |
x | Pointer to dvector of dofs |
pc | Pointer to structure of precondition (precond) |
tol | Tolerance for relative residual |
abstol | Tolerance for absolute residual |
MaxIt | Maximal number of iterations |
restart | Restart number for GCR |
StopType | Stopping type |
PrtLvl | How much information to print out |
Reference: YVAN NOTAY "AN AGGREGATION-BASED ALGEBRAIC MULTIGRID METHOD"