xref: /petsc/src/snes/impls/ls/lsimpl.h (revision ccbc64bcac6ea4e594eedb9b8a0ff4f20261c17a)
1 /*
2    Private context for a Newton line search method for solving
3    systems of nonlinear equations
4  */
5 
6 #ifndef __SNES_LS_H
7 #define __SNES_LS_H
8 #include <private/snesimpl.h>
9 #include <petsclinesearch.h>
10 
11 typedef struct {
12   PetscLineSearch linesearch;
13 } SNES_LS;
14 
15 #endif
16