PCPostSolve

Optional post-solve phase, intended for any preconditioner-specific actions that must be performed after the iterative solve itself.

Synopsis

int PCPostSolve(PC pc,KSP ksp)

Input Parameters

pc - the preconditioner context
ksp - the Krylov subspace context

Collective on PC

Sample of Usage

    PCPreSolve(pc,ksp);
    KSPSolve(ksp,its);
    PCPostSolve(pc,ksp);

Keywords

PC, post-solve

See Also

PCPreSolve()

Location: src/pc/interface/precon.c
PC Index
Table of Contents