00001
00002
00003
00004
00005
00006
00007
00008 #ifndef IMPGSL_QUASI_NEWTON_H
00009 #define IMPGSL_QUASI_NEWTON_H
00010
00011 #include "gsl_config.h"
00012
00013 #include "GSLOptimizer.h"
00014
00015 IMPGSL_BEGIN_NAMESPACE
00016
00017
00018
00019
00020 class IMPGSLEXPORT QuasiNewton: public GSLOptimizer
00021 {
00022 double initial_step_, line_step_, min_gradient_;
00023 public:
00024 QuasiNewton(Model *m=NULL);
00025
00026 IMP_OPTIMIZER(QuasiNewton);
00027 };
00028
00029
00030 IMPGSL_END_NAMESPACE
00031
00032 #endif