# KSPSetInitialGuessNonzero Tells the iterative solver that the initial guess is nonzero; otherwise `KSP` assumes the initial guess is to be zero (and thus zeros it out before solving). ## Synopsis ``` #include "petscksp.h" #include "petscmat.h" PetscErrorCode KSPSetInitialGuessNonzero(KSP ksp, PetscBool flg) ``` Logically Collective ## Input Parameters - ***ksp -*** iterative context obtained from `KSPCreate()` - ***flg -*** ``PETSC_TRUE`` indicates the guess is non-zero, `PETSC_FALSE` indicates the guess is zero ## Options database keys - ***-ksp_initial_guess_nonzero -*** use nonzero initial guess ## Notes If this is not called the X vector is zeroed in the call to `KSPSolve()`. ## See Also [](chapter_ksp), `KSPGetInitialGuessNonzero()`, `KSPSetGuessType()`, `KSPGuessType`, `KSP` ## Level beginner ## Location src/ksp/ksp/interface/itfunc.c ## Examples src/ksp/pc/tutorials/ex1.c.html
src/ksp/pc/tutorials/ex2.c.html
src/ksp/ksp/tutorials/ex27.c.html
src/ksp/ksp/tutorials/ex3.c.html
src/ksp/ksp/tutorials/ex51.c.html
src/ksp/ksp/tutorials/ex56.c.html
src/ksp/ksp/tutorials/ex6f.F90.html
src/ksp/ksp/tutorials/ex71.c.html
src/ksp/ksp/tutorials/ex72.c.html
src/ksp/ksp/tutorials/ex9.c.html
src/tao/pde_constrained/tutorials/parabolic.c.html
--- [Edit on GitLab](https://gitlab.com/petsc/petsc/-/edit/release/src/ksp/ksp/interface/itfunc.c) [Index of all KSP routines](index.md) [Table of Contents for all manual pages](/docs/manualpages/index.md) [Index of all manual pages](/docs/manualpages/singleindex.md)