NAG FL Interface
f11dbf (real_​gen_​precon_​ilu_​solve)

Settings help

FL Name Style:


FL Specification Language:


1 Purpose

f11dbf solves a system of linear equations involving the incomplete LU preconditioning matrix generated by f11daf.

2 Specification

Fortran Interface
Subroutine f11dbf ( trans, n, a, la, irow, icol, ipivp, ipivq, istr, idiag, check, y, x, ifail)
Integer, Intent (In) :: n, la, irow(la), icol(la), istr(n+1), idiag(n)
Integer, Intent (Inout) :: ipivp(n), ipivq(n), ifail
Real (Kind=nag_wp), Intent (In) :: a(la), y(n)
Real (Kind=nag_wp), Intent (Out) :: x(n)
Character (1), Intent (In) :: trans, check
C Header Interface
#include <nag.h>
void  f11dbf_ (const char *trans, const Integer *n, const double a[], const Integer *la, const Integer irow[], const Integer icol[], Integer ipivp[], Integer ipivq[], const Integer istr[], const Integer idiag[], const char *check, const double y[], double x[], Integer *ifail, const Charlen length_trans, const Charlen length_check)
The routine may be called by the names f11dbf or nagf_sparse_real_gen_precon_ilu_solve.

3 Description

f11dbf solves a system of linear equations
Mx=y, or MTx=y,  
according to the value of the argument trans, where the matrix M=PLDUQ, corresponds to an incomplete LU decomposition of a sparse matrix stored in coordinate storage (CS) format (see Section 2.1.1 in the F11 Chapter Introduction), as generated by f11daf.
In the above decomposition L is a lower triangular sparse matrix with unit diagonal elements, D is a diagonal matrix, U is an upper triangular sparse matrix with unit diagonal elements and, P and Q are permutation matrices. L, D and U are supplied to f11dbf through the matrix
C=L+D-1+U-2I  
which is an n by n sparse matrix, stored in CS format, as returned by f11daf. The permutation matrices P and Q are returned from f11daf via the arrays ipivp and ipivq.
It is envisaged that a common use of f11dbf will be to carry out the preconditioning step required in the application of f11bef to sparse linear systems. f11dbf is used for this purpose by the Black Box routine f11dcf.
f11dbf may also be used in combination with f11daf to solve a sparse system of linear equations directly (see Section 9.5 in f11daf).

4 References

None.

5 Arguments

1: trans Character(1) Input
On entry: specifies whether or not the matrix M is transposed.
trans='N'
Mx=y is solved.
trans='T'
MTx=y is solved.
Constraint: trans='N' or 'T'.
2: 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 f11daf.
Constraint: n1.
3: a(la) Real (Kind=nag_wp) array Input
On entry: the values returned in the array a by a previous call to f11daf.
4: la Integer Input
On entry: the dimension of the arrays a, irow and icol as declared in the (sub)program from which f11dbf is called. This must be the same value returned by the preceding call to f11daf.
5: irow(la) Integer array Input
6: icol(la) Integer array Input
7: ipivp(n) Integer array Input
8: ipivq(n) Integer array Input
9: istr(n+1) Integer array Input
10: idiag(n) Integer array Input
On entry: the values returned in arrays irow, icol, ipivp, ipivq, istr and idiag by a previous call to f11daf.
11: check Character(1) Input
On entry: specifies whether or not the CS representation of the matrix M should be checked.
check='C'
Checks are carried on the values of n, irow, icol, ipivp, ipivq, istr and idiag.
check='N'
None of these checks are carried out.
See also Section 9.2.
Constraint: check='C' or 'N'.
12: y(n) Real (Kind=nag_wp) array Input
On entry: the right-hand side vector y.
13: x(n) Real (Kind=nag_wp) array Output
On exit: the solution vector x.
14: 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'.
On entry, trans=value.
Constraint: trans='N' or 'T'.
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 n=value.
Constraint: icol(i)1 and icol(i)n.
On entry, i=value, ipivp(i)=value, n=value.
Constraint: ipivp(i)1 and ipivp(i)n.
On entry, i=value, ipivq(i)=value, n=value.
Constraint: ipivq(i)1 and ipivq(i)n.
On entry, i=value, irow(i)=value, n=value.
Constraint: irow(i)1 and irow(i)n.
On entry, idiag(i) appears to be incorrect: i=value.
On entry, ipivp(i) is a repeated value: i=value.
On entry, ipivq(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, ipivp, ipivq, istr and idiag have not been corrupted between calls to f11dbf and f11daf.
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

If trans='N' 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||U|Q,  
c(n) is a modest linear function of n, and ε is the machine precision. An equivalent result holds when trans='T'.

8 Parallelism and Performance

Background information to multithreading can be found in the Multithreading documentation.
f11dbf is not threaded in any implementation.

9 Further Comments

9.1 Timing

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

9.2 Use of check

It is expected that a common use of f11dbf will be to carry out the preconditioning step required in the application of f11bef to sparse linear systems. In this situation f11dbf is likely to be called many times with the same matrix M. In the interests of both reliability and efficiency, you are recommended to set check='C' for the first of such calls, and for all subsequent calls set check='N'.

10 Example

This example reads in a sparse nonsymmetric matrix A and a vector y. It then calls f11daf, with lfill=−1 and dtol=0.0, to compute the complete LU decomposition
A=PLDUQ.  
Finally it calls f11dbf to solve the system
PLDUQx=y.  

10.1 Program Text

Program Text (f11dbfe.f90)

10.2 Program Data

Program Data (f11dbfe.d)

10.3 Program Results

Program Results (f11dbfe.r)