Actual source code: lsimpl.h

petsc-3.3-p7 2013-05-11
  1: /* 
  2:    Private context for a Newton line search method for solving
  3:    systems of nonlinear equations
  4:  */

  6: #ifndef __SNES_LS_H
  8: #include <petsc-private/snesimpl.h>

 10: typedef struct {
 11:   PetscInt dummy;
 12: } SNES_LS;

 14: #endif