#include <vtkAmoebaMinimizer.h>
Inheritance diagram for vtkAmoebaMinimizer:
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.
Definition at line 36 of file vtkAmoebaMinimizer.h.
Public Types | |
typedef vtkObject | Superclass |
Public Member Functions | |
virtual const char * | GetClassName () |
virtual int | IsA (const char *type) |
void | PrintSelf (ostream &os, vtkIndent indent) |
void | SetFunction (void(*f)(void *), void *arg) |
const char * | GetParameterName (int i) |
int | GetNumberOfParameters () |
void | Initialize () |
virtual void | Minimize () |
void | EvaluateFunction () |
void | SetFunctionArgDelete (void(*f)(void *)) |
void | SetParameterValue (const char *name, double value) |
void | SetParameterValue (int i, double value) |
void | SetParameterScale (const char *name, double scale) |
double | GetParameterScale (const char *name) |
void | SetParameterScale (int i, double scale) |
double | GetParameterScale (int i) |
double | GetParameterValue (const char *name) |
double | GetParameterValue (int i) |
virtual int | Iterate () |
virtual void | SetFunctionValue (double) |
double | GetFunctionValue () |
virtual void | SetTolerance (double) |
virtual double | GetTolerance () |
virtual void | SetMaxIterations (int) |
virtual int | GetMaxIterations () |
virtual int | GetIterations () |
virtual int | GetFunctionEvaluations () |
Static Public Member Functions | |
static vtkAmoebaMinimizer * | New () |
static int | IsTypeOf (const char *type) |
static vtkAmoebaMinimizer * | SafeDownCast (vtkObject *o) |
Protected Member Functions | |
vtkAmoebaMinimizer () | |
~vtkAmoebaMinimizer () | |
Protected Attributes | |
void(* | Function )(void *) |
void(* | FunctionArgDelete )(void *) |
void * | FunctionArg |
int | NumberOfParameters |
char ** | ParameterNames |
double * | ParameterValues |
double * | ParameterScales |
double | FunctionValue |
double | Tolerance |
int | MaxIterations |
int | Iterations |
int | FunctionEvaluations |
|
Reimplemented from vtkObject. Definition at line 40 of file vtkAmoebaMinimizer.h. |
|
|
|
|
|
Create an object with Debug turned off, modified time initialized to zero, and reference counting on. Reimplemented from vtkObject. |
|
Reimplemented from vtkObject. |
|
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. |
|
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. |
|
Reimplemented from vtkObject. |
|
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. |
|
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(). |
|
Set a function to call when a void* argument is being discarded. |
|
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. |
|
Set a function to call when a void* argument is being discarded. |
|
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. |
|
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. |
|
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. |
|
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 73 of file vtkAmoebaMinimizer.h. |
|
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. |
|
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 82 of file vtkAmoebaMinimizer.h. |
|
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 87 of file vtkAmoebaMinimizer.h. |
|
Get the number of parameters that have been set. Definition at line 90 of file vtkAmoebaMinimizer.h. |
|
Initialize the minimizer. This will reset the number of parameters to zero so that the minimizer can be reused. |
|
Iterate until the minimum is found to within the specified tolerance, or until the MaxIterations has been reached. |
|
Perform one iteration of minimization. Returns zero if the tolerance stopping criterion has been met. |
|
Get the function value resulting from the minimization. |
|
Perform one iteration of minimization. Returns zero if the tolerance stopping criterion has been met. Definition at line 107 of file vtkAmoebaMinimizer.h. |
|
Specify the fractional tolerance to aim for during the minimization. |
|
Specify the fractional tolerance to aim for during the minimization. |
|
Specify the maximum number of iterations to try before giving up. |
|
Specify the maximum number of iterations to try before giving up. |
|
Return the number of interations that have been performed. This is not necessarily the same as the number of function evaluations. |
|
Return the number of times that the function has been evaluated. |
|
Evaluate the function. This is usually called internally by the minimization code, but it is provided here as a public method. |
|
|
|
|
|
Definition at line 144 of file vtkAmoebaMinimizer.h. |
|
Definition at line 147 of file vtkAmoebaMinimizer.h. |
|
Definition at line 148 of file vtkAmoebaMinimizer.h. |
|
Definition at line 149 of file vtkAmoebaMinimizer.h. |
|
Definition at line 150 of file vtkAmoebaMinimizer.h. |
|
Definition at line 151 of file vtkAmoebaMinimizer.h. |
|
Definition at line 153 of file vtkAmoebaMinimizer.h. |
|
Definition at line 154 of file vtkAmoebaMinimizer.h. |
|
Definition at line 155 of file vtkAmoebaMinimizer.h. |
|
Definition at line 156 of file vtkAmoebaMinimizer.h. |