Lines Matching refs:PC

14 static PetscErrorCode PCDestroy_SOR(PC pc)  in PCDestroy_SOR()
27 static PetscErrorCode PCApply_SOR(PC pc, Vec x, Vec y) in PCApply_SOR()
38 static PetscErrorCode PCApplyTranspose_SOR(PC pc, Vec x, Vec y) in PCApplyTranspose_SOR()
52 static PetscErrorCode PCApplyRichardson_SOR(PC pc, Vec b, Vec y, Vec w, PetscReal rtol, PetscReal a… in PCApplyRichardson_SOR()
66 static PetscErrorCode PCSetFromOptions_SOR(PC pc, PetscOptionItems PetscOptionsObject) in PCSetFromOptions_SOR()
95 static PetscErrorCode PCView_SOR(PC pc, PetscViewer viewer) in PCView_SOR()
121 static PetscErrorCode PCSORSetSymmetric_SOR(PC pc, MatSORType flag) in PCSORSetSymmetric_SOR()
130 static PetscErrorCode PCSORSetOmega_SOR(PC pc, PetscReal omega) in PCSORSetOmega_SOR()
140 static PetscErrorCode PCSORSetIterations_SOR(PC pc, PetscInt its, PetscInt lits) in PCSORSetIterations_SOR()
150 static PetscErrorCode PCSORGetSymmetric_SOR(PC pc, MatSORType *flag) in PCSORGetSymmetric_SOR()
159 static PetscErrorCode PCSORGetOmega_SOR(PC pc, PetscReal *omega) in PCSORGetOmega_SOR()
168 static PetscErrorCode PCSORGetIterations_SOR(PC pc, PetscInt *its, PetscInt *lits) in PCSORGetIterations_SOR()
214 PetscErrorCode PCSORGetSymmetric(PC pc, MatSORType *flag) in PCSORGetSymmetric()
218 PetscUseMethod(pc, "PCSORGetSymmetric_C", (PC, MatSORType *), (pc, flag)); in PCSORGetSymmetric()
241 PetscErrorCode PCSORGetOmega(PC pc, PetscReal *omega) in PCSORGetOmega()
245 PetscUseMethod(pc, "PCSORGetOmega_C", (PC, PetscReal *), (pc, omega)); in PCSORGetOmega()
273 PetscErrorCode PCSORGetIterations(PC pc, PetscInt *its, PetscInt *lits) in PCSORGetIterations()
277 PetscUseMethod(pc, "PCSORGetIterations_C", (PC, PetscInt *, PetscInt *), (pc, its, lits)); in PCSORGetIterations()
316 PetscErrorCode PCSORSetSymmetric(PC pc, MatSORType flag) in PCSORSetSymmetric()
321 PetscTryMethod(pc, "PCSORSetSymmetric_C", (PC, MatSORType), (pc, flag)); in PCSORSetSymmetric()
345 PetscErrorCode PCSORSetOmega(PC pc, PetscReal omega) in PCSORSetOmega()
350 PetscTryMethod(pc, "PCSORSetOmega_C", (PC, PetscReal), (pc, omega)); in PCSORSetOmega()
376 PetscErrorCode PCSORSetIterations(PC pc, PetscInt its, PetscInt lits) in PCSORSetIterations()
381 PetscTryMethod(pc, "PCSORSetIterations_C", (PC, PetscInt, PetscInt), (pc, its, lits)); in PCSORSetIterations()
427 PETSC_EXTERN PetscErrorCode PCCreate_SOR(PC pc) in PCCreate_SOR()