source: ThirdParty/mpqc_open/src/lib/math/optimize/opt.h@ 47b463

Action_Thermostats Add_AtomRandomPerturbation Add_RotateAroundBondAction Add_SelectAtomByNameAction Adding_Graph_to_ChangeBondActions Adding_MD_integration_tests Adding_StructOpt_integration_tests AutomationFragmentation_failures Candidate_v1.6.0 Candidate_v1.6.1 ChangeBugEmailaddress ChangingTestPorts ChemicalSpaceEvaluator Combining_Subpackages Debian_Package_split Debian_package_split_molecuildergui_only Disabling_MemDebug Docu_Python_wait EmpiricalPotential_contain_HomologyGraph_documentation Enable_parallel_make_install Enhance_userguide Enhanced_StructuralOptimization Enhanced_StructuralOptimization_continued Example_ManyWaysToTranslateAtom Exclude_Hydrogens_annealWithBondGraph FitPartialCharges_GlobalError Fix_ChronosMutex Fix_StatusMsg Fix_StepWorldTime_single_argument Fix_Verbose_Codepatterns ForceAnnealing_goodresults ForceAnnealing_oldresults ForceAnnealing_tocheck ForceAnnealing_with_BondGraph ForceAnnealing_with_BondGraph_continued ForceAnnealing_with_BondGraph_continued_betteresults ForceAnnealing_with_BondGraph_contraction-expansion GeometryObjects Gui_displays_atomic_force_velocity IndependentFragmentGrids_IntegrationTest JobMarket_RobustOnKillsSegFaults JobMarket_StableWorkerPool JobMarket_unresolvable_hostname_fix ODR_violation_mpqc_open PartialCharges_OrthogonalSummation PythonUI_with_named_parameters QtGui_reactivate_TimeChanged_changes Recreated_GuiChecks RotateToPrincipalAxisSystem_UndoRedo StoppableMakroAction Subpackage_levmar Subpackage_vmg ThirdParty_MPQC_rebuilt_buildsystem TremoloParser_IncreasedPrecision TremoloParser_MultipleTimesteps Ubuntu_1604_changes stable
Last change on this file since 47b463 was 860145, checked in by Frederik Heber <heber@…>, 8 years ago

Merge commit '0b990dfaa8c6007a996d030163a25f7f5fc8a7e7' as 'ThirdParty/mpqc_open'

  • Property mode set to 100644
File size: 5.2 KB
Line 
1//
2// opt.h
3//
4// Copyright (C) 1996 Limit Point Systems, Inc.
5//
6// Author: Curtis Janssen <cljanss@limitpt.com>
7// Maintainer: LPS
8//
9// This file is part of the SC Toolkit.
10//
11// The SC Toolkit is free software; you can redistribute it and/or modify
12// it under the terms of the GNU Library General Public License as published by
13// the Free Software Foundation; either version 2, or (at your option)
14// any later version.
15//
16// The SC Toolkit is distributed in the hope that it will be useful,
17// but WITHOUT ANY WARRANTY; without even the implied warranty of
18// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19// GNU Library General Public License for more details.
20//
21// You should have received a copy of the GNU Library General Public License
22// along with the SC Toolkit; see the file COPYING.LIB. If not, write to
23// the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
24//
25// The U.S. Government is granted a limited license as per AL 91-7.
26//
27
28#ifndef _math_optimize_opt_h
29#define _math_optimize_opt_h
30
31#ifdef __GNUC__
32#pragma interface
33#endif
34
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/conv.h>
40
41namespace sc {
42
43// //////////////////////////////////////////////////////////////////////
44
45/** The Optimize class is an abstract base class for classes
46 that find the extreme points of Function's. */
47class Optimize: virtual public SavableState {
48 protected:
49 int max_iterations_;
50 int n_iterations_;
51 int ckpt_;
52 int print_timings_;
53 double max_stepsize_;
54 char *ckpt_file;
55 Ref<Function> function_;
56 Ref<Convergence> conv_;
57 public:
58 Optimize();
59 /// Restore the state of a Function object.
60 Optimize(StateIn&);
61
62 /** The KeyVal constructor reads the following information:
63
64 <dl>
65
66 <dt><tt>checkpoint</tt><dd> If true, the optimization will be
67 checkpointed. The default is false.
68
69 <dt><tt>checkpoint_file</tt><dd> The name of the checkpoint file.
70 The name defaults to opt_ckpt.dat.
71
72 <dt><tt>max_iterations</tt><dd> The maximum number of interations.
73 The default is 10.
74
75 <dt><tt>max_stepsize</tt><dd> The maximum stepsize. The default is
76 0.6.
77
78 <dt><tt>function</tt><dd> A Function object. There is no default.
79
80 <dt><tt>convergence</tt><dd> This can be either a floating point
81 number or a Convergence object. If it is a floating point number
82 then it is the convergence criterion. See the description
83 Convergence class for the default.
84
85 </dl> */
86 Optimize(const Ref<KeyVal>&);
87 virtual ~Optimize();
88
89 void save_data_state(StateOut&);
90
91 /** Do the optimization. Returns nonzero if the optimization
92 is complete. */
93 virtual int optimize();
94
95 /// Set up for checkpointing.
96 void set_checkpoint();
97 void set_checkpoint_file(const char*);
98
99 /// Set the function to be optimized
100 void set_function(const Ref<Function>&);
101
102 /// Set the iteration limit.
103 void set_max_iterations(int);
104
105 /// Initialize the optimizer.
106 virtual void init();
107 /** Take a step. Returns 1 if the optimization has converged,
108 otherwise 0. */
109 virtual int update() = 0;
110
111 virtual void apply_transform(const Ref<NonlinearTransform>&);
112
113 /// Returns information about the Function being optimized.
114 Ref<Function> function() const { return function_; }
115 Ref<SCMatrixKit> matrixkit() const { return function_->matrixkit(); }
116 RefSCDimension dimension() const { return function_->dimension(); }
117
118};
119
120
121/** The LineOpt abstract class is used to perform one dimensional
122optimizations.*/
123class LineOpt: public Optimize {
124
125 protected:
126
127 double decrease_factor_;
128 RefSCVector initial_x_;
129 double initial_value_;
130 RefSCVector initial_grad_;
131 RefSCVector search_direction_;
132 Ref<Function> function_;
133
134 int sufficient_decrease(RefSCVector& step);
135
136 public:
137
138 LineOpt();
139 LineOpt(StateIn&);
140 LineOpt(const Ref<KeyVal>&);
141 ~LineOpt();
142 void save_data_state(StateOut&);
143
144 /** Initializes the line search object. Argument is a search direction.
145 * Use of this method assumes the Optimize base class already has a
146 * function object (got it from a keyval or elsewhere). */
147 virtual void init(RefSCVector& direction);
148 /** Initializes the line search object. First argument is a search
149 * direction, second argument is a function object to optimize.
150 * Use this method when a function must be passed to the Optimize
151 * base class. */
152 virtual void init(RefSCVector& direction, Ref<Function> function);
153 /// Applies a nonlinear transform.
154 void apply_transform(const Ref<NonlinearTransform>&);
155
156 /// Returns factor for sufficient decrease test
157 double decrease_factor() { return decrease_factor_; }
158 /// Sets factor for sufficient decrease test
159 double set_decrease_factor( double factor )
160 { double temp = decrease_factor_; decrease_factor_ = factor; return temp; }
161};
162
163class Backtrack: public LineOpt {
164
165 protected:
166 double backtrack_factor_;
167
168 public:
169 Backtrack(const Ref<KeyVal>&);
170 ~Backtrack(){}
171 int update();
172
173};
174
175}
176
177#endif
178
179// Local Variables:
180// mode: c++
181// c-file-style: "CLJ"
182// End:
Note: See TracBrowser for help on using the repository browser.