xref: /petsc/src/snes/impls/ncg/snesncgimpl.h (revision cf9edfecb14be6ea29b532008cdf7dfb760d0bf7)
1 /*
2    Private context for Richardson iteration
3 */
4 
5 #ifndef __SNES_NCG_H
6 #define __SNES_NCG_H
7 #include <private/snesimpl.h>
8 
9 typedef struct {
10   /* Line Search Parameters */
11   int dummy;
12 } SNES_NCG;
13 
14 #endif
15