xref: /petsc/src/snes/impls/ls/lsimpl.h (revision 3116ef58e11bc77b08297b681ddd79bc46c3f215)
1 /*
2    Private context for a Newton line search method for solving
3    systems of nonlinear equations
4  */
5 
6 #ifndef __SNES_LS_H
7 #define __SNES_LS_H
8 #include <private/snesimpl.h>
9 
10 typedef struct {
11   int dummy;
12 } SNES_LS;
13 
14 #endif
15