00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013 #ifndef __CONJUGATEGRADIENT_H__
00014 #define __CONJUGATEGRADIENT_H__
00015
00016 #include "OptimizationAlgorithm.h"
00017 #include "../ObjectiveFunction/ObjectiveFunction.h"
00018
00019 namespace Purple
00020 {
00021
00022
00023
00024
00025
00026
00027
00028 class ConjugateGradient : public OptimizationAlgorithm
00029 {
00030
00031 public:
00032
00033
00034
00035
00036
00037
00038 enum SearchDirectionMethod{PolakRibiere, FletcherReeves};
00039
00040
00041
00042
00043 enum OptimalStepSizeMethod{GoldenSection, BrentMethod};
00044
00045 private:
00046
00047
00048
00049
00050
00051 Vector<double> initialArgument;
00052
00053
00054
00055
00056 double gradientNormGoal;
00057
00058
00059
00060
00061 int maximumNumberOfIterations;
00062
00063
00064
00065 int showPeriod;
00066
00067
00068
00069 double firstStepSize;
00070
00071
00072
00073 double optimalStepSizeTolerance;
00074
00075
00076
00077
00078 double warningStepSize;
00079
00080
00081
00082 Vector<double> evaluationHistory;
00083
00084
00085
00086 Vector<double> gradientNormHistory;
00087
00088
00089
00090
00091
00092 double getPolakRibiereParameter(Vector<double>, Vector<double>);
00093 double getFletcherReevesParameter(Vector<double>, Vector<double>);
00094
00095 Vector<double>
00096 getFletcherReevesSearchDirection(Vector<double>, Vector<double>, Vector<double>);
00097
00098 Vector<double>
00099 getPolakRibiereSearchDirection(Vector<double>, Vector<double>, Vector<double>);
00100
00101
00102
00103 double getGoldenSectionOptimalStepSize
00104 (double, double, Vector<double>, Vector<double>);
00105
00106 double getBrentMethodOptimalStepSize
00107 (double, double, Vector<double>, Vector<double>);
00108
00109
00110
00111 SearchDirectionMethod searchDirectionMethod;
00112
00113
00114
00115 OptimalStepSizeMethod optimalStepSizeMethod;
00116
00117
00118
00119 double getMinimum(Vector<double>);
00120 double getMaximum(Vector<double>);
00121
00122
00123 public:
00124
00125
00126
00127 ConjugateGradient(ObjectiveFunction*);
00128
00129
00130
00131
00132 ConjugateGradient(void);
00133
00134
00135
00136
00137 virtual ~ConjugateGradient(void);
00138
00139
00140
00141
00142
00143
00144 SearchDirectionMethod getSearchDirectionMethod(void);
00145 OptimalStepSizeMethod getOptimalStepSizeMethod(void);
00146 Vector<double> getInitialArgument(void);
00147 double getGradientNormGoal(void);
00148 int getMaximumNumberOfIterations(void);
00149 int getShowPeriod(void);
00150 double getFirstStepSize(void);
00151 double getOptimalStepSizeTolerance(void);
00152 double getWarningStepSize(void);
00153
00154
00155
00156 void setSearchDirectionMethod(SearchDirectionMethod);
00157 void setOptimalStepSizeMethod(OptimalStepSizeMethod);
00158 void setFirstStepSize(double);
00159 void setOptimalStepSizeTolerance(double);
00160 void setInitialArgument(Vector<double>);
00161 void setGradientNormGoal(double);
00162 void setMaximumNumberOfIterations(int);
00163 void setShowPeriod(int);
00164 void setWarningStepSize(double);
00165
00166
00167
00168 Vector<double> getMinimalArgument(void);
00169
00170
00171
00172 void print(void);
00173
00174 void load(char*);
00175 void save(char*);
00176
00177 void saveOptimizationHistory(char*);
00178 };
00179
00180 }
00181
00182 #endif
00183
00184
00185
00186
00187
00188
00189
00190
00191
00192
00193
00194
00195
00196
00197
00198
00199
00200