:orphan: # KSPConvergedSkip Convergence test that do not return as converged until the maximum number of iterations is reached. ## Synopsis ``` #include "petscksp.h" PetscErrorCode KSPConvergedSkip(KSP ksp, PetscInt n, PetscReal rnorm, KSPConvergedReason *reason, void *dummy) ``` Collective ## Input Parameters - ***ksp -*** iterative context - ***n -*** iteration number - ***rnorm -*** 2-norm residual value (may be estimated) - ***dummy -*** unused convergence context ## Output Parameter - ***reason -*** `KSP_CONVERGED_ITERATING`, `KSP_CONVERGED_ITS` ## Notes This should be used as the convergence test with the option `KSPSetNormType`(ksp,`KSP_NORM_NONE`), since norms of the residual are not computed. Convergence is then declared after the maximum number of iterations have been reached. Useful when one is using `KSPCG` or `KSPBCGS`. [](sec_flexibleksp) ## See Also [](ch_ksp), `KSP`, `KSPCG`, `KSPBCGS`, `KSPSetConvergenceTest()`, `KSPSetTolerances()`, `KSPSetNormType()`, [](sec_flexibleksp), `KSPConvergedReason` ## Level advanced ## Location src/ksp/ksp/interface/iterativ.c ## Examples src/ksp/ksp/tutorials/ex71.c
--- [Edit on GitLab](https://gitlab.com/petsc/petsc/-/edit/release/src/ksp/ksp/interface/iterativ.c) [Index of all KSP routines](index.md) [Table of Contents for all manual pages](/manualpages/index.md) [Index of all manual pages](/manualpages/singleindex.md)