xref: /petsc/src/snes/impls/ls/lsimpl.h (revision af0996ce37bc06907c37d8d91773840993d61e62)
1724775ccSBarry Smith /*
2724775ccSBarry Smith    Private context for a Newton line search method for solving
3724775ccSBarry Smith    systems of nonlinear equations
4724775ccSBarry Smith  */
5724775ccSBarry Smith 
6519f805aSKarl Rupp #if !defined(__SNES_LS_H)
7724775ccSBarry Smith #define __SNES_LS_H
8*af0996ceSBarry Smith #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