xref: /petsc/src/tao/linesearch/impls/morethuente/morethuente.h (revision e74fa32c736d45acea953b4b9c65d3b5f043b83b)
1 #ifndef __TAOLINESEARCH_MORETHUENTE_H
2 #define __TAOLINESEARCH_MORETHUENTE_H
3 
4 typedef struct {
5   PetscInt    bracket;
6   PetscInt    infoc;
7   PetscReal initstep;
8   Vec x; /* used to see if work needs to be reformed */
9   Vec work;
10 
11 } TAOLINESEARCH_MT_CTX;
12 
13 #endif
14