Actual source code: broydenimpl.h

  2: /*  
  3:     Private Krylov Context Structure (KSP) for the Bad limited memory Broyden method applied to a linear equation

  5: */


 10: /*
 11:         Defines the basic KSP object
 12: */
 13: #include <private/kspimpl.h>

 15: typedef struct {
 16:   Vec      *v,*w;
 17:   PetscInt msize;   /* maximum size of space */
 18:   PetscInt csize;   /* current size of space */
 19: } KSP_Broyden;

 21: #endif