Lines Matching refs:lits
8 PetscInt lits; /* local inner iterations, number of sweeps applied by the local matrix mat->A */ 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()
59 PetscCall(MatSOR(pc->pmat, b, jac->omega, stype, jac->fshift, its * jac->its, jac->lits, y)); in PCApplyRichardson_SOR()
78 …lits", "number of local inner SOR iterations", "PCSORSetIterations", jac->lits, &jac->lits, NULL)); in PCSetFromOptions_SOR()
116 …al iterations = %" PetscInt_FMT ", omega = %g\n", sortype, jac->its, jac->lits, (double)jac->omega… in PCView_SOR()
140 static PetscErrorCode PCSORSetIterations_SOR(PC pc, PetscInt its, PetscInt lits) in PCSORSetIterations_SOR() argument
146 jac->lits = lits; in PCSORSetIterations_SOR()
168 static PetscErrorCode PCSORGetIterations_SOR(PC pc, PetscInt *its, PetscInt *lits) in PCSORGetIterations_SOR() argument
174 if (lits) *lits = jac->lits; 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
381 PetscTryMethod(pc, "PCSORSetIterations_C", (PC, PetscInt, PetscInt), (pc, its, lits)); in PCSORSetIterations()
446 jac->lits = 1; in PCCreate_SOR()