xref: /petsc/src/snes/impls/ls/lsimpl.h (revision 04d7464b71f14a73adf7cb3f664404cc6936f6d1)
1724775ccSBarry Smith /*
2724775ccSBarry Smith    Private context for a Newton line search method for solving
3724775ccSBarry Smith    systems of nonlinear equations
4724775ccSBarry Smith  */
5724775ccSBarry Smith 
6724775ccSBarry Smith #ifndef __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;
12*04d7464bSBarry Smith } SNES_NEWTONLS;
13724775ccSBarry Smith 
14724775ccSBarry Smith #endif
15