petsc-3.7.1 2016-05-15
Report Typos and Errors

TaoSetGradientRoutine

Sets the gradient evaluation routine for minimization

Synopsis

#include "petsctao.h" 
PetscErrorCode TaoSetGradientRoutine(Tao tao,  PetscErrorCode (*func)(Tao, Vec, Vec, void*),void *ctx)
Logically collective on Tao Many br

Input Parameter

tao - the Tao context Many br
func - the gradient function Many br
ctx - [optional] user-defined context for private data for the gradient evaluation Many brroutine (may be NULL) Many br

Calling sequence of func

     func (Tao tao, Vec x, Vec g, void *ctx);

x - input vector Many br
g - gradient value (output) Many br
ctx - [optional] user-defined function context Many br

Many br

See Also

TaoSetObjectiveRoutine(), TaoSetHessianRoutine() TaoSetObjectiveAndGradientRoutine()

Level:beginner
Location:
src/tao/interface/taosolver_fg.c
Index of all Tao routines
Table of Contents for all manual pages
Index of all manual pages

Examples

src/tao/pde_constrained/examples/tutorials/elliptic.c.html
src/tao/pde_constrained/examples/tutorials/parabolic.c.html
src/tao/pde_constrained/examples/tutorials/hyperbolic.c.html