Actual source code: qcgimpl.h

petsc-3.8.4 2018-03-24
Report Typos and Errors
  1: /*
  2:     Context for using preconditioned CG to minimize a quadratic function
  3:  */


  8:  #include <petsc/private/kspimpl.h>

 10: typedef struct {
 11:   PetscReal quadratic;
 12:   PetscReal ltsnrm;
 13:   PetscReal delta;
 14: } KSP_QCG;

 16: #endif