Actual source code: virsimpl.h

petsc-3.5.4 2015-05-23
Report Typos and Errors
  1: #include <petsc-private/snesimpl.h>

  3: /*
  4:    Private context for reduced space active set newton method with line search for solving
  5:    system of mixed complementarity equations
  6:  */


 11: typedef struct {
 12:   PetscErrorCode (*checkredundancy)(SNES,IS,IS*,void*);

 14:   void *ctxP;           /* user defined check redundancy context */
 15:   IS   IS_inact_prev;
 16: } SNES_VINEWTONRSLS;

 18: #endif