Actual source code: lmvm.h

  1: /*$Id: lmvm.h 1.25 02/09/16 23:00:56-05:00 benson@rockies.mcs.anl.gov $*/

  3: /*
  4:     Context for limited memory variable metric method (unconstrained minimization)
  5:  */

  7: #ifndef __TAO_LMVM_H
  9: #include "tao_solver.h"
 10:  #include src/matrix/lmvmmat.h

 12: typedef struct {

 14:   TaoLMVMMat* M;

 16:   TaoVec *G;
 17:   TaoVec *DX;
 18:   TaoVec *Work;
 19: 
 20: } TAO_LMVM;

 22: #endif