NAG FL Interface
f11jpf (complex_​herm_​precon_​ilu_​solve)

Settings help

FL Name Style:


FL Specification Language:


1 Purpose

f11jpf solves a system of complex linear equations involving the incomplete Cholesky preconditioning matrix generated by f11jnf.

2 Specification

Fortran Interface
Subroutine f11jpf ( n, a, la, irow, icol, ipiv, istr, check, y, x, ifail)
Integer, Intent (In) :: n, la, irow(la), icol(la), istr(n+1)
Integer, Intent (Inout) :: ipiv(n), ifail
Complex (Kind=nag_wp), Intent (In) :: a(la), y(n)
Complex (Kind=nag_wp), Intent (Out) :: x(n)
Character (1), Intent (In) :: check
C Header Interface
#include <nag.h>
void  f11jpf_ (const Integer *n, const Complex a[], const Integer *la, const Integer irow[], const Integer icol[], Integer ipiv[], const Integer istr[], const char *check, const Complex y[], Complex x[], Integer *ifail, const Charlen length_check)
The routine may be called by the names f11jpf or nagf_sparse_complex_herm_precon_ilu_solve.

3 Description

f11jpf solves a system of linear equations
Mx=y  
involving the preconditioning matrix M=PLDLHPT, corresponding to an incomplete Cholesky decomposition of a complex sparse Hermitian matrix stored in symmetric coordinate storage (SCS) format (see Section 2.1.2 in the F11 Chapter Introduction), as generated by f11jnf.
In the above decomposition L is a complex lower triangular sparse matrix with unit diagonal, D is a real diagonal matrix and P is a permutation matrix. L and D are supplied to f11jpf through the matrix
C=L+D-1-I  
which is a lower triangular n×n complex sparse matrix, stored in SCS format, as returned by f11jnf. The permutation matrix P is returned from f11jnf via the array ipiv.
f11jpf may also be used in combination with f11jnf to solve a sparse complex Hermitian positive definite system of linear equations directly (see f11jnf).

4 References

None.

5 Arguments

1: n Integer Input
On entry: n, the order of the matrix M. This must be the same value as was supplied in the preceding call to f11jnf.
Constraint: n1.
2: a(la) Complex (Kind=nag_wp) array Input
On entry: the values returned in the array a by a previous call to f11jnf.
3: la Integer Input
On entry: the dimension of the arrays a, irow and icol as declared in the (sub)program from which f11jpf is called. This must be the same value supplied in the preceding call to f11jnf.
4: irow(la) Integer array Input
5: icol(la) Integer array Input
6: ipiv(n) Integer array Input
7: istr(n+1) Integer array Input
On entry: the values returned in arrays irow, icol, ipiv and istr by a previous call to f11jnf.
8: check Character(1) Input
On entry: specifies whether or not the input data should be checked.
check='C'
Checks are carried out on the values of n, irow, icol, ipiv and istr.
check='N'
None of these checks are carried out.
Constraint: check='C' or 'N'.
9: y(n) Complex (Kind=nag_wp) array Input
On entry: the right-hand side vector y.
10: x(n) Complex (Kind=nag_wp) array Output
On exit: the solution vector x.
11: ifail Integer Input/Output
On entry: ifail must be set to 0, −1 or 1 to set behaviour on detection of an error; these values have no effect when no error is detected.
A value of 0 causes the printing of an error message and program execution will be halted; otherwise program execution continues. A value of −1 means that an error message is printed while a value of 1 means that it is not.
If halting is not appropriate, the value −1 or 1 is recommended. If message printing is undesirable, then the value 1 is recommended. Otherwise, the value 0 is recommended. When the value -1 or 1 is used it is essential to test the value of ifail on exit.
On 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 entry, check=value.
Constraint: check='C' or 'N'.
ifail=2
On entry, n=value.
Constraint: n1.
ifail=3
On entry, a(i) is out of order: i=value.
On entry, I=value, icol(I)=value and irow(I)=value.
Constraint: icol(I)1 and icol(I)irow(I).
On entry, i=value, ipiv(i)=value, n=value.
Constraint: ipiv(i)1 and ipiv(i)n.
On entry, i=value, irow(i)=value and n=value.
Constraint: irow(i)1 and irow(i)n.
On entry, ipiv(i) is a repeated value: i=value.
On entry, istr appears to be invalid.
On entry, istr(i) is inconsistent with irow: i=value.
On entry, the location (irow(I),icol(I)) is a duplicate: I=value.
Check that a, irow, icol, ipiv and istr have not been corrupted between calls to f11jnf and f11jpf.
ifail=-99
An unexpected error has been triggered by this routine. Please contact NAG.
See Section 7 in the Introduction to the NAG Library FL Interface for further information.
ifail=-399
Your licence key may have expired or may not have been installed correctly.
See Section 8 in the Introduction to the NAG Library FL Interface for further information.
ifail=-999
Dynamic memory allocation failed.
See Section 9 in the Introduction to the NAG Library FL Interface for further information.

7 Accuracy

The computed solution x is the exact solution of a perturbed system of equations (M+δM)x=y, where
|δM|c(n)εP|L||D||LH|PT,  
c(n) is a modest linear function of n, and ε is the machine precision.

8 Parallelism and Performance

f11jpf is not threaded in any implementation.

9 Further Comments

9.1 Timing

The time taken for a call to f11jpf is proportional to the value of nnzc returned from f11jnf.

10 Example

This example reads in a complex sparse Hermitian positive definite matrix A and a vector y. It then calls f11jnf, with lfill=−1 and dtol=0.0, to compute the complete Cholesky decomposition of A:
A=PLDLHPT.  
Finally it calls f11jpf to solve the system
PLDLHPTx=y.  

10.1 Program Text

Program Text (f11jpfe.f90)

10.2 Program Data

Program Data (f11jpfe.d)

10.3 Program Results

Program Results (f11jpfe.r)