xref: /petsc/src/snes/impls/ls/lsimpl.h (revision 519f805a543c2a7f195bcba21173bb2cdfadb956)
1724775ccSBarry Smith /*
2724775ccSBarry Smith    Private context for a Newton line search method for solving
3724775ccSBarry Smith    systems of nonlinear equations
4724775ccSBarry Smith  */
5724775ccSBarry Smith 
6*519f805aSKarl Rupp #if !defined(__SNES_LS_H)
7724775ccSBarry Smith #define __SNES_LS_H
8b45d2f2cSJed Brown #include <petsc-private/snesimpl.h>
9724775ccSBarry Smith 
10724775ccSBarry Smith typedef struct {
119e764e56SPeter Brune   PetscInt dummy;
1204d7464bSBarry Smith } SNES_NEWTONLS;
13724775ccSBarry Smith 
14724775ccSBarry Smith #endif
15