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 8c6db04a5SJed Brown #include <private/snesimpl.h> 9724775ccSBarry Smith 10724775ccSBarry Smith typedef struct { 11*9e764e56SPeter Brune PetscInt dummy; 12724775ccSBarry Smith } SNES_LS; 13724775ccSBarry Smith 14724775ccSBarry Smith #endif 15