Lines Matching defs:Function
53 // While finding the exact minimum of a one dimensionl function is
60 class Function;
73 function(NULL) {}
76 // function.
85 // which decreases the value of the objective function
148 // The one dimensional function that the line search algorithm
150 Function* function;
153 // An object used by the line search to access the function values
154 // and gradient of the one dimensional function being optimized.
157 // function value and the directional derivative of the underlying
161 class Function {
163 virtual ~Function() {}
168 // Where, p is the objective function of the general optimization
206 // the function at zero.
230 class LineSearchFunction : public LineSearch::Function {