NAG Library Routine Document

c05mdf  (sys_func_aa_rcomm)

 Contents

    1  Purpose
    7  Accuracy

1
Purpose

c05mdf is a comprehensive reverse communication routine that finds a solution of a system of nonlinear equations by fixed-point iteration using Anderson acceleration.

2
Specification

Fortran Interface
Subroutine c05mdf ( irevcm, n, x, fvec, atol, rtol, m, cndtol, astart, iwsav, rwsav, ifail)
Integer, Intent (In):: n, m, astart
Integer, Intent (Inout):: irevcm, iwsav(14+m), ifail
Real (Kind=nag_wp), Intent (In):: atol, rtol, cndtol
Real (Kind=nag_wp), Intent (Inout):: x(n), fvec(n), rwsav(2*m*n+m*m+m+2*n+1+min(m,1)*max(n,3*m))
C Header Interface
#include nagmk26.h
void  c05mdf_ ( Integer *irevcm, const Integer *n, double x[], double fvec[], const double *atol, const double *rtol, const Integer *m, const double *cndtol, const Integer *astart, Integer iwsav[], double rwsav[], Integer *ifail)

3
Description

The system of equations is defined as:
fk x1,x2,,xn = 0 ,   k= 1, 2, , n .  
This homogeneous system can readily be reformulated as
gx=x, xn.  
A standard fixed-point iteration approach is to start with an approximate solution x^0 and repeatedly apply the function g until possible convergence; i.e., x^i+1=gx^i, until x^i+1-x^i<tol. Anderson acceleration uses up to m previous values of x^ to obtain an improved estimate x^i+1. If a standard fixed-point iteration converges, then Anderson acceleration usually results in convergence in far fewer iterations (and therefore using far fewer function evaluations).
Full details of Anderson acceleration are provided in Anderson (1965). In summary, the previous m iterates are combined to form a succession of least squares problems. These are solved using a QR decomposition, which is updated at each iteration.
You are free to choose any value for m, provided mn. A typical choice is m=4.

4
References

Anderson D G (1965) Iterative Procedures for Nonlinear Integral Equations J. Assoc. Comput. Mach. 12 547–560

5
Arguments

Note: this routine uses reverse communication. Its use involves an initial entry, intermediate exits and re-entries, and a final exit, as indicated by the argument irevcm. Between intermediate exits and re-entries, all arguments other than fvec must remain unchanged.
1:     irevcm – IntegerInput/Output
On initial entry: must have the value 0.
On intermediate exit: specifies what action you must take before re-entering c05mdf with irevcm unchanged. The value of irevcm should be interpreted as follows:
irevcm=1
Indicates the start of a new iteration. No action is required by you, but x and fvec are available for printing, and a limit on the number of iterations can be applied.
irevcm=2
Indicates that before re-entry to c05mdf, fvec must contain the function values fx^i.
On final exit: irevcm=0 and the algorithm has terminated.
Constraint: irevcm=0, 1 or 2.
Note: any values you return to c05mdf as part of the reverse communication procedure should not include floating-point NaN (Not a Number) or infinity values, since these are not handled by c05mdf. If your code inadvertently does return any NaNs or infinities, c05mdf is likely to produce unexpected results.
2:     n – IntegerInput
On entry: n, the number of equations.
Constraint: n>0 .
3:     xn – Real (Kind=nag_wp) arrayInput/Output
On initial entry: an initial guess at the solution vector, x^0.
On intermediate exit: contains the current point.
On final exit: the final estimate of the solution vector.
4:     fvecn – Real (Kind=nag_wp) arrayInput/Output
On initial entry: need not be set.
On intermediate re-entry: if irevcm=1 , fvec must not be changed.
If irevcm=2 , fvec must be set to the values of the functions computed at the current point x, fx^i.
On final exit: the function values at the final point, x.
5:     atol – Real (Kind=nag_wp)Input
On initial entry: the absolute convergence criterion; see below.
Suggested value: ε, where ε is the machine precision returned by x02ajf.
Constraint: atol0.0.
6:     rtol – Real (Kind=nag_wp)Input
On initial entry: the relative convergence criterion. At each iteration fx^i is computed. The iteration is deemed to have converged if fx^imaxatol,rtol×fx^0.
Suggested value: ε, where ε is the machine precision returned by x02ajf.
Constraint: rtol0.0.
7:     m – IntegerInput
On initial entry: m, the number of previous iterates to use in Anderson acceleration. If m=0, Anderson acceleration is not used.
Suggested value: m=4.
Constraint: 0mn.
8:     cndtol – Real (Kind=nag_wp)Input
On initial entry: the maximum allowable condition number for the triangular QR factor generated during Anderson acceleration. At each iteration, if the condition number exceeds cndtol, columns are deleted until it is sufficiently small.
If cndtol=0.0, no condition number tests are performed.
Suggested value: cndtol=0.0. If condition number tests are required, a suggested value is cndtol=1.0/ε.
Constraint: cndtol0.0.
9:     astart – IntegerInput
On initial entry: the number of iterations by which to delay the start of Anderson acceleration.
Suggested value: astart=0.
Constraint: astart0.
10:   iwsav14+m – Integer arrayCommunication Array
11:   rwsav2×m×n+m2+m+2×n+1+minm,1×maxn,3×m – Real (Kind=nag_wp) arrayCommunication Array
The arrays iwsav and rwsav must not be altered between calls to c05mdf.
The size of rwsav is bounded above by 3×n×m+2+1.
12:   ifail – IntegerInput/Output
On initial entry: ifail must be set to 0, -1​ or ​1. If you are unfamiliar with this argument you should refer to Section 3.4 in How to Use the NAG Library and its Documentation for details.
For environments where it might be inappropriate to halt program execution when an error is detected, the value -1​ or ​1 is recommended. If the output of error messages is undesirable, then the value 1 is recommended. Otherwise, because for this routine the values of the output arguments may be useful even if ifail0 on exit, the recommended value is -1. When the value -1​ or ​1 is used it is essential to test the value of ifail on exit.
On final exit: ifail=0 unless the routine detects an error or a warning has been flagged (see Section 6).

6
Error Indicators and Warnings

If on entry ifail=0 or -1, explanatory error messages are output on the current error message unit (as defined by x04aaf).
Errors or warnings detected by the routine:
ifail=1
On initial entry, irevcm=value.
Constraint: irevcm=0.
On intermediate entry, irevcm=value.
Constraint: irevcm=1 or 2.
ifail=2
On entry, n=value.
Constraint: n>0.
ifail=3
On entry, atol=value.
Constraint: atol0.0.
ifail=4
On entry, rtol=value.
Constraint: rtol0.0.
ifail=5
On entry, m=value and n=value.
Constraint: 0mn.
ifail=6
On entry, cndtol=value.
Constraint: cndtol0.0.
ifail=7
On entry, astart=value.
Constraint: astart0.
ifail=8
An error occurred in evaluating the QR decomposition during Anderson acceleration. This may be due to slow convergence of the iteration. Try setting the value of cndtol. If condition number tests are already performed, try decreasing cndtol.
ifail=9
The iteration is not making good progress, as measured by the reduction in the norm of fx in the last value iterations.
ifail=-99
An unexpected error has been triggered by this routine. Please contact NAG.
See Section 3.9 in How to Use the NAG Library and its Documentation for further information.
ifail=-399
Your licence key may have expired or may not have been installed correctly.
See Section 3.8 in How to Use the NAG Library and its Documentation for further information.
ifail=-999
Dynamic memory allocation failed.
See Section 3.7 in How to Use the NAG Library and its Documentation for further information.

7
Accuracy

There are no theoretical guarantees of global or local convergence for Anderson acceleration. However, extensive numerical tests show that, in practice, Anderson acceleration leads to significant improvements over the underlying fixed-point methods (which may only converge linearly), and in some cases can even alleviate divergence.
At each iteration, c05mdf checks whether fx^imaxatol,rtol×fx^0. If the inequality is satisfied, then the iteration is deemed to have converged. The validity of the answer may be checked by inspecting the value of fvec on final exit from c05mdf.

8
Parallelism and Performance

c05mdf makes calls to BLAS and/or LAPACK routines, which may be threaded within the vendor library used by this implementation. Consult the documentation for the vendor library for further information.
Please consult the X06 Chapter Introduction for information on how to control and interrogate the OpenMP environment used within this routine. Please also consult the Users' Note for your implementation for any additional implementation-specific information.

9
Further Comments

During each iteration, Anderson acceleration updates the factors of a QR decomposition and uses the decomposition to solve a linear least squares problem. This involves an additional Omn floating-point operations per iteration compared with the unaccelerated fixed-point iteration.
c05mdf does not count the number of iterations. Thus, it is up to you to add a limit on the number of iterations and check if this limit has been exceeded when c05mdf is called. This is illustrated in the example program below.

10
Example

This example determines the values x1,,x4 which satisfy the equations
cosx3-x1 = 0, 1-x42-x2 = 0, sinx1-x3 = 0, x22-x4 = 0.  

10.1
Program Text

Program Text (c05mdfe.f90)

10.2
Program Data

None.

10.3
Program Results

Program Results (c05mdfe.r)

© The Numerical Algorithms Group Ltd, Oxford, UK. 2017