HalleyChebyAD
 All Classes Files Functions Variables Friends
NewtonsMethod.h
1 #ifndef NEWTONSMETHOD_H
2 #define NEWTONSMETHOD_H
3 
4 #include <UncOpt.h>
6 class NewtonsMethod : public UncOpt
7 {
8  public:
9  // NewtonsMethod(int dimension_int);
10  NewtonsMethod(const int dimension_int, const double precision_in =1.0E-8, const bool print_it =false);
12  int methodstep();
13  protected:
14  private:
15  int tapenum; //Going to implement using Automatic differentiation.
16 };
17 
18 #endif // NEWTONSMETHOD_H
~NewtonsMethod()
Definition: NewtonsMethod.cpp:3
The Base class of Unconstrained Optimization solvers.
Definition: UncOpt.h:14
The derived class that uses NewtonMethod type search direction.
Definition: NewtonsMethod.h:6