00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028 #ifndef _math_optimize_update_h
00029 #define _math_optimize_update_h
00030
00031 #ifdef __GNUC__
00032 #pragma interface
00033 #endif
00034
00035 #include <util/state/state.h>
00036 #include <util/class/class.h>
00037 #include <math/scmat/matrix.h>
00038 #include <math/optimize/function.h>
00039 #include <math/optimize/transform.h>
00040
00041
00042
00043
00044
00045
00046
00052 class HessianUpdate: virtual public SavableState {
00053 protected:
00054 int inverse_hessian_;
00055 public:
00056 HessianUpdate();
00057 HessianUpdate(StateIn&);
00058 HessianUpdate(const Ref<KeyVal>&);
00059 void save_data_state(StateOut&);
00060 virtual ~HessianUpdate();
00061 virtual void update(const RefSymmSCMatrix&hessian,const Ref<Function>&,
00062 const RefSCVector&xnew,const RefSCVector&gnew) = 0;
00063 virtual void set_inverse();
00064 virtual void apply_transform(const Ref<NonlinearTransform>&);
00065 };
00066
00067
00070 class DFPUpdate: public HessianUpdate {
00071 protected:
00072 RefSCVector xprev;
00073 RefSCVector gprev;
00074 public:
00075 DFPUpdate();
00076 DFPUpdate(StateIn&);
00090 DFPUpdate(const Ref<KeyVal>&);
00091 void save_data_state(StateOut&);
00092 ~DFPUpdate();
00093 void update(const RefSymmSCMatrix&ihessian,const Ref<Function>&,
00094 const RefSCVector&xnew,const RefSCVector&gnew);
00095 void apply_transform(const Ref<NonlinearTransform>&);
00096 void set_inverse();
00097 };
00098
00102 class BFGSUpdate: public DFPUpdate {
00103 public:
00104 BFGSUpdate();
00105 BFGSUpdate(StateIn&);
00106 BFGSUpdate(const Ref<KeyVal>&);
00107 void save_data_state(StateOut&);
00108 ~BFGSUpdate();
00109 void update(const RefSymmSCMatrix&ihessian,const Ref<Function>&,
00110 const RefSCVector&xnew,const RefSCVector&gnew);
00111 };
00112
00117 class PowellUpdate: public HessianUpdate {
00118 protected:
00119 RefSCVector xprev;
00120 RefSCVector gprev;
00121 public:
00122 PowellUpdate();
00123 PowellUpdate(StateIn&);
00124 PowellUpdate(const Ref<KeyVal>&);
00125 void save_data_state(StateOut&);
00126 ~PowellUpdate();
00127 void update(const RefSymmSCMatrix&ihessian,const Ref<Function>&func,
00128 const RefSCVector&xnew,const RefSCVector&gnew);
00129 void apply_transform(const Ref<NonlinearTransform>&);
00130 };
00131
00132 #endif
00133
00134
00135
00136
00137