c05rc
is the AD Library version of the primal routine
c05rcf.
Based (in the C++ interface) on overload resolution,
c05rc can be used for primal, tangent and adjoint
evaluation. It supports tangents and adjoints of first and second order.
Corresponding to the overloaded C++ function, the Fortran interface provides five routines with names reflecting the type used for active real arguments. The actual subroutine and type names are formed by replacing AD and ADTYPE in the above as follows:
The function is overloaded on ADTYPE which represents the type of active arguments. ADTYPE may be any of the following types: double, dco::ga1s<double>::type, dco::gt1s<double>::type, dco::gt1s<dco::gt1s<double>::type>::type, dco::ga1s<dco::gt1s<double>::type>::type,
Note: this function can be used with AD tools other than dco/c++. For details, please contact NAG.
3Description
c05rc
is the AD Library version of the primal routine
c05rcf.
c05rcf is a comprehensive routine that finds a solution of a system of nonlinear equations by a modification of the Powell hybrid method. You must provide the Jacobian.
For further information see Section 3 in the documentation for c05rcf.
4References
Moré J J, Garbow B S and Hillstrom K E (1980) User guide for MINPACK-1 Technical Report ANL-80-74 Argonne National Laboratory
Powell M J D (1970) A hybrid method for nonlinear algebraic equations Numerical Methods for Nonlinear Algebraic Equations (ed P Rabinowitz) Gordon and Breach
5Arguments
In addition to the arguments present in the interface of the primal routine,
c05rc includes some arguments specific to AD.
A brief summary of the AD specific arguments is given below. For the remainder, links are provided to the corresponding argument from the primal routine.
A tooltip popup for all arguments can be found by hovering over the argument name in Section 2 and in this section.
On entry: a configuration object that holds information on the differentiation strategy. Details on setting the AD strategy are described in AD handle object in the NAG AD Library Introduction.
fcn
needs to be callable with the specification listed below. This can be a C++ lambda, a functor or a (static member) function pointer.
If using a lambda, parameters can be captured safely by reference. No copies of the callable are made internally.