PCPostSolve

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

Synopsis

#include "petscsles.h" 
int PCPostSolve(PC pc,KSP ksp)
Collective on PC

Input Parameters

pc - the preconditioner context
ksp - the Krylov subspace context

Sample of Usage

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

Note

SLESSolve() calls this routine directly, so it is rarely called by the user.

Keywords

PC, post-solve

See Also

PCPreSolve(), SLESSolve()

Level:developer
Location:
src/sles/pc/interface/precon.c
Index of all PC routines
Table of Contents for all manual pages
Index of all manual pages