28#ifndef _math_optimize_update_h
29#define _math_optimize_update_h
35#include <util/state/state.h>
36#include <util/class/class.h>
37#include <math/scmat/matrix.h>
38#include <math/optimize/function.h>
39#include <math/optimize/transform.h>
54class HessianUpdate:
virtual public SavableState {
62 virtual ~HessianUpdate();
65 virtual void set_inverse();
72class DFPUpdate:
public HessianUpdate {
104class BFGSUpdate:
public DFPUpdate {
119class PowellUpdate:
public HessianUpdate {
void save_data_state(StateOut &)
Save the base classes (with save_data_state) and the members in the same order that the StateIn CTOR ...
DFPUpdate(const Ref< KeyVal > &)
The KeyVal constructor reads the following keywords:
void save_data_state(StateOut &)
Save the base classes (with save_data_state) and the members in the same order that the StateIn CTOR ...
void save_data_state(StateOut &)
Save the base classes (with save_data_state) and the members in the same order that the StateIn CTOR ...
void save_data_state(StateOut &)
Save the base classes (with save_data_state) and the members in the same order that the StateIn CTOR ...
The RefSCVector class is a smart pointer to an SCVector specialization.
Definition matrix.h:55
The RefSymmSCMatrix class is a smart pointer to an SCSymmSCMatrix specialization.
Definition matrix.h:261
A template class that maintains references counts.
Definition ref.h:332
Restores objects that derive from SavableState.
Definition statein.h:70
Serializes objects that derive from SavableState.
Definition stateout.h:61