bpp-core  2.2.0
SimpleNewtonMultiDimensions.cpp
Go to the documentation of this file.
1 //
2 // File: SimpleNewtonMultiDimensions.cpp
3 // Created by: Julien Dutheil
4 // Created on: Thu Apr 26 15:29 2007
5 //
6 
7 /*
8 Copyright or © or Copr. CNRS, (November 19, 2004)
9 
10 This software is a computer program whose purpose is to provide classes
11 for numerical calculus.
12 
13 This software is governed by the CeCILL license under French law and
14 abiding by the rules of distribution of free software. You can use,
15 modify and/ or redistribute the software under the terms of the CeCILL
16 license as circulated by CEA, CNRS and INRIA at the following URL
17 "http://www.cecill.info".
18 
19 As a counterpart to the access to the source code and rights to copy,
20 modify and redistribute granted by the license, users are provided only
21 with a limited warranty and the software's author, the holder of the
22 economic rights, and the successive licensors have only limited
23 liability.
24 
25 In this respect, the user's attention is drawn to the risks associated
26 with loading, using, modifying and/or developing or reproducing the
27 software by the user in light of its specific status of free software,
28 that may mean that it is complicated to manipulate, and that also
29 therefore means that it is reserved for developers and experienced
30 professionals having in-depth computer knowledge. Users are therefore
31 encouraged to load and test the software's suitability as regards their
32 requirements in conditions enabling the security of their systems and/or
33 data to be ensured and, more generally, to use and operate it in the
34 same conditions as regards security.
35 
36 The fact that you are presently reading this means that you have had
37 knowledge of the CeCILL license and that you accept its terms.
38 */
39 
40 /******************************************************************************/
41 
43 
44 using namespace bpp;
45 using namespace std;
46 
47 /******************************************************************************/
48 
50  AbstractOptimizer(function), nbParams_(0), optimizer_(function)
51 {
55 }
56 
57 /******************************************************************************/
58 
60 {
62  optimizer_.setFunction(function);
63 }
64 
65 /******************************************************************************/
66 
68 {
69  nbParams_ = params.size();
70  if (nbParams_ == 0) return;
71 
72  // Initialize optimizers:
73  unsigned int nbEvalMax = nbEvalMax_ / static_cast<unsigned int>(nbParams_);
74  optimizer_.setMaximumNumberOfEvaluations(nbEvalMax);
75  optimizer_.setProfiler(getProfiler());
76  optimizer_.setMessageHandler(getMessageHandler());
77  optimizer_.getStopCondition()->setTolerance(getStopCondition()->getTolerance());
78  optimizer_.setConstraintPolicy(getConstraintPolicy());
79  optimizer_.setVerbose(getVerbose() > 0 ? getVerbose() - 1 : 0);
80  optimizer_.setMaximumNumberOfCorrections(10);
81  getFunction()->setParameters(getParameters());
82 }
83 
84 /******************************************************************************/
85 
87 {
88  double f = getFunction()->getValue();
89  for (unsigned int i = 0; i < nbParams_; i++)
90  {
91  if (getVerbose() > 0)
92  {
93  cout << getParameters()[i].getName() << ":";
94  cout.flush();
95  }
96  // Re-init optimizer according to new values:
97  optimizer_.init(getParameters().subList(i));
98 
99  // Optimize through this dimension:
100  f = optimizer_.optimize();
101  if (getVerbose() > 0) cout << endl;
104  }
105  tolIsReached_ = nbParams_ <= 1;
106  return f;
107 }
108 
109 /******************************************************************************/
110 
unsigned int getNumberOfEvaluations() const
Get the number of function evaluations performed since the call of the init function.
unsigned int getVerbose() const
Get the verbose level.
This class allows to perform a correspondence analysis.
double optimize()
Basic implementation.
virtual bool matchParametersValues(const ParameterList &params, std::vector< size_t > *updatedParameters=0)
Update the parameters from params.
This is the function abstract class.
Definition: Functions.h:86
STL namespace.
ParameterList & getParameters_()
Stop condition on function value.
The parameter list object.
Definition: ParameterList.h:61
void setFunction(Function *function)
Set the function to optimize.
bool tolIsReached_
Tell if the tolerance level has been reached.
void setOptimizationProgressCharacter(const std::string &c)
Set the character to be displayed during optimization.
void setDefaultStopCondition_(OptimizationStopCondition *osc)
const Function * getFunction() const
Get the current function being optimized.
const ParameterList & getParameters() const
double doStep()
This function is called by the step() method and contains all calculations.
void setFunction(Function *function)
Set the function to optimize.
Exception base class.
Definition: Exceptions.h:57
This is the abstract class for second order derivable functions.
Definition: Functions.h:189
unsigned int nbEval_
The current number of function evaluations achieved.
Partial implementation of the Optimizer interface.
void setStopCondition(const OptimizationStopCondition &stopCondition)
Set the stop condition of the optimization algorithm.
SimpleNewtonMultiDimensions(DerivableSecondOrder *function)
OptimizationStopCondition * getDefaultStopCondition()
Get the default stop condition of the optimization algorithm.
virtual double getValue() const =0
Get the value of the function at the current point.
void doInit(const ParameterList &params)
This function is called by the init() method and contains all calculations.
void init(const ParameterList &params)
Basic implementation.