vtkAmoebaMinimizer Class Reference
#include <vtkAmoebaMinimizer.h>
Inheritance diagram for vtkAmoebaMinimizer:
[legend]Collaboration diagram for vtkAmoebaMinimizer:
[legend]List of all members.
Detailed Description
nonlinear optimization with a simplex
vtkAmoebaMinimizer will modify a set of parameters in order to find the minimum of a specified function. The method used is commonly known as the amoeba method, it constructs an n-dimensional simplex in parameter space (i.e. a tetrahedron if the number or parameters is 3) and moves the vertices around parameter space until a local minimum is found. The amoeba method is robust, reasonably efficient, but is not guaranteed to find the global minimum if several local minima exist.
- Created by:
-
- CVS contributions (if > 5%):
-
- CVS logs (CVSweb):
.h (/Common/vtkAmoebaMinimizer
.h)
.cxx (/Common/vtkAmoebaMinimizer
.cxx)
- Tests:
- vtkAmoebaMinimizer (Tests)
Definition at line 46 of file vtkAmoebaMinimizer.h.
Member Typedef Documentation
Constructor & Destructor Documentation
vtkAmoebaMinimizer::vtkAmoebaMinimizer |
( |
|
) |
[protected] |
|
Member Function Documentation
|
Create an object with Debug turned off, modified time initialized to zero, and reference counting on.
Reimplemented from vtkObject. |
virtual const char* vtkAmoebaMinimizer::GetClassName |
( |
|
) |
[virtual] |
|
int vtkAmoebaMinimizer::IsTypeOf |
( |
const char * |
type |
) |
[static] |
|
|
Return 1 if this class type is the same type of (or a subclass of) the named class. Returns 0 otherwise. This method works in combination with vtkTypeRevisionMacro found in vtkSetGet.h.
Reimplemented from vtkObject. |
virtual int vtkAmoebaMinimizer::IsA |
( |
const char * |
type |
) |
[virtual] |
|
|
Return 1 if this class is the same type of (or a subclass of) the named class. Returns 0 otherwise. This method works in combination with vtkTypeRevisionMacro found in vtkSetGet.h.
Reimplemented from vtkObject. |
void vtkAmoebaMinimizer::PrintSelf |
( |
ostream & |
os, |
|
|
vtkIndent |
indent |
|
) |
[virtual] |
|
|
Methods invoked by print to print information about the object including superclasses. Typically not called by the user (use Print() instead) but used in the hierarchical print process to combine the output of several classes.
Reimplemented from vtkObject. |
void vtkAmoebaMinimizer::SetFunction |
( |
void(* |
f)(void *), |
|
|
void * |
arg |
|
) |
|
|
|
Specify the function to be minimized. When this function is called, it must get the parameter values by calling GetParameterValue() for each parameter, and then must call SetFunctionValue() to tell the minimizer what the result of the function evaluation was. The number of function evaluations used for the minimization can be retrieved using GetFunctionEvaluations(). |
void vtkAmoebaMinimizer::SetFunctionArgDelete |
( |
void(* |
f)(void *) |
) |
|
|
|
Set a function to call when a void* argument is being discarded. |
void vtkAmoebaMinimizer::SetParameterValue |
( |
const char * |
name, |
|
|
double |
value |
|
) |
|
|
|
Set the initial value for the specified parameter. Calling this function for any parameter will reset the Iterations and the FunctionEvaluations counts to zero. You must also use SetParameterScale() to specify the step size by which the parameter will be modified during the minimization. It is preferable to specify parameters by name, rather than by number. |
void vtkAmoebaMinimizer::SetParameterValue |
( |
int |
i, |
|
|
double |
value |
|
) |
|
|
|
Set the initial value for the specified parameter. Calling this function for any parameter will reset the Iterations and the FunctionEvaluations counts to zero. You must also use SetParameterScale() to specify the step size by which the parameter will be modified during the minimization. It is preferable to specify parameters by name, rather than by number. |
void vtkAmoebaMinimizer::SetParameterScale |
( |
const char * |
name, |
|
|
double |
scale |
|
) |
|
|
|
Set the scale to use when modifying a parameter, i.e. the initial amount by which the parameter will be modified during the search for the minimum. It is preferable to identify scalars by name rather than by number. |
double vtkAmoebaMinimizer::GetParameterScale |
( |
const char * |
name |
) |
|
|
|
Set the scale to use when modifying a parameter, i.e. the initial amount by which the parameter will be modified during the search for the minimum. It is preferable to identify scalars by name rather than by number. |
void vtkAmoebaMinimizer::SetParameterScale |
( |
int |
i, |
|
|
double |
scale |
|
) |
|
|
|
Set the scale to use when modifying a parameter, i.e. the initial amount by which the parameter will be modified during the search for the minimum. It is preferable to identify scalars by name rather than by number. |
double vtkAmoebaMinimizer::GetParameterScale |
( |
int |
i |
) |
[inline] |
|
|
Set the scale to use when modifying a parameter, i.e. the initial amount by which the parameter will be modified during the search for the minimum. It is preferable to identify scalars by name rather than by number.
Definition at line 83 of file vtkAmoebaMinimizer.h. |
double vtkAmoebaMinimizer::GetParameterValue |
( |
const char * |
name |
) |
|
|
|
Get the value of a parameter at the current stage of the minimization. Call this method within the function that you are minimizing in order to get the current parameter values. It is preferable to specify parameters by name rather than by index. |
double vtkAmoebaMinimizer::GetParameterValue |
( |
int |
i |
) |
[inline] |
|
|
Get the value of a parameter at the current stage of the minimization. Call this method within the function that you are minimizing in order to get the current parameter values. It is preferable to specify parameters by name rather than by index.
Definition at line 92 of file vtkAmoebaMinimizer.h. |
const char* vtkAmoebaMinimizer::GetParameterName |
( |
int |
i |
) |
[inline] |
|
|
For completeness, an unchecked method to get the name for particular parameter (the result will be NULL if no name was set).
Definition at line 97 of file vtkAmoebaMinimizer.h. |
int vtkAmoebaMinimizer::GetNumberOfParameters |
( |
|
) |
[inline] |
|
void vtkAmoebaMinimizer::Initialize |
( |
|
) |
|
|
|
Initialize the minimizer. This will reset the number of parameters to zero so that the minimizer can be reused. |
virtual void vtkAmoebaMinimizer::Minimize |
( |
|
) |
[virtual] |
|
|
Iterate until the minimum is found to within the specified tolerance, or until the MaxIterations has been reached. |
virtual int vtkAmoebaMinimizer::Iterate |
( |
|
) |
[virtual] |
|
|
Perform one iteration of minimization. Returns zero if the tolerance stopping criterion has been met. |
virtual void vtkAmoebaMinimizer::SetFunctionValue |
( |
double |
|
) |
[virtual] |
|
|
Get the function value resulting from the minimization. |
double vtkAmoebaMinimizer::GetFunctionValue |
( |
|
) |
[inline] |
|
virtual void vtkAmoebaMinimizer::SetTolerance |
( |
double |
|
) |
[virtual] |
|
|
Specify the fractional tolerance to aim for during the minimization. |
virtual double vtkAmoebaMinimizer::GetTolerance |
( |
|
) |
[virtual] |
|
|
Specify the fractional tolerance to aim for during the minimization. |
virtual void vtkAmoebaMinimizer::SetMaxIterations |
( |
int |
|
) |
[virtual] |
|
|
Specify the maximum number of iterations to try before giving up. |
virtual int vtkAmoebaMinimizer::GetMaxIterations |
( |
|
) |
[virtual] |
|
|
Specify the maximum number of iterations to try before giving up. |
virtual int vtkAmoebaMinimizer::GetIterations |
( |
|
) |
[virtual] |
|
|
Return the number of interations that have been performed. This is not necessarily the same as the number of function evaluations. |
virtual int vtkAmoebaMinimizer::GetFunctionEvaluations |
( |
|
) |
[virtual] |
|
|
Return the number of times that the function has been evaluated. |
void vtkAmoebaMinimizer::EvaluateFunction |
( |
|
) |
|
|
|
Evaluate the function. This is usually called internally by the minimization code, but it is provided here as a public method. |
Member Data Documentation
The documentation for this class was generated from the following file: