Lines Matching refs:its
7 PetscInt its; /* inner iterations, number of sweeps */ member
33 PetscCall(MatSOR(pc->pmat, x, jac->omega, (MatSORType)flag, jac->fshift, jac->its, jac->lits, y)); in PCApply_SOR()
47 PetscCall(MatSOR(pc->pmat, x, jac->omega, (MatSORType)flag, jac->fshift, jac->its, jac->lits, y)); in PCApplyTranspose_SOR()
52 …, Vec y, Vec w, PetscReal rtol, PetscReal abstol, PetscReal dtol, PetscInt its, PetscBool guesszer… in PCApplyRichardson_SOR() argument
59 PetscCall(MatSOR(pc->pmat, b, jac->omega, stype, jac->fshift, its * jac->its, jac->lits, y)); in PCApplyRichardson_SOR()
61 *outits = its; in PCApplyRichardson_SOR()
77 …"-pc_sor_its", "number of inner SOR iterations", "PCSORSetIterations", jac->its, &jac->its, NULL)); in PCSetFromOptions_SOR()
116 …_FMT ", local iterations = %" PetscInt_FMT ", omega = %g\n", sortype, jac->its, jac->lits, (double… in PCView_SOR()
140 static PetscErrorCode PCSORSetIterations_SOR(PC pc, PetscInt its, PetscInt lits) in PCSORSetIterations_SOR() argument
145 jac->its = its; in PCSORSetIterations_SOR()
168 static PetscErrorCode PCSORGetIterations_SOR(PC pc, PetscInt *its, PetscInt *lits) in PCSORGetIterations_SOR() argument
173 if (its) *its = jac->its; in PCSORGetIterations_SOR()
273 PetscErrorCode PCSORGetIterations(PC pc, PetscInt *its, PetscInt *lits) in PCSORGetIterations() argument
277 PetscUseMethod(pc, "PCSORGetIterations_C", (PC, PetscInt *, PetscInt *), (pc, its, lits)); in PCSORGetIterations()
376 PetscErrorCode PCSORSetIterations(PC pc, PetscInt its, PetscInt lits) in PCSORSetIterations() argument
380 PetscValidLogicalCollectiveInt(pc, its, 2); in PCSORSetIterations()
381 PetscTryMethod(pc, "PCSORSetIterations_C", (PC, PetscInt, PetscInt), (pc, its, lits)); in PCSORSetIterations()
445 jac->its = 1; in PCCreate_SOR()