#include "petscksp.h" PetscErrorCode KSPBuildSolution(KSP ksp,Vec v,Vec *V)Collective on KSP
v | - location to stash solution. | |
V | - the solution is returned in this location. This vector is created internally. This vector should NOT be destroyed by the user with VecDestroy(). |
KSPBuildSolution(ksp,NULL,&V); or KSPBuildSolution(ksp,v,NULL); or KSPBuildSolution(ksp,v,&v);In the first case an internal vector is allocated to store the solution (the user cannot destroy this vector). In the second case the solution is generated in the vector that the user provides. Note that for certain methods, such as KSPCG, the second case requires a copy of the solution, while in the first case the call is essentially free since it simply returns the vector where the solution already is stored. For some methods like GMRES this is a reasonably expensive operation and should only be used in truly needed.
Level:advanced
Location:src/ksp/ksp/interface/itfunc.c
Index of all KSP routines
Table of Contents for all manual pages
Index of all manual pages