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