xref: /petsc/src/snes/impls/ls/lsimpl.h (revision b45d2f2cb7e031d9c0de5873eca80614ca7b863b)
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
8*b45d2f2cSJed Brown #include <petsc-private/snesimpl.h>
9724775ccSBarry Smith 
10724775ccSBarry Smith typedef struct {
119e764e56SPeter Brune   PetscInt dummy;
12724775ccSBarry Smith } SNES_LS;
13724775ccSBarry Smith 
14724775ccSBarry Smith #endif
15