The NAG Library is available for use on a number of different computer systems. For each distinct system an implementation of the library is prepared and this implementation is given a unique code. The specifics that define the implementation are: the working precision, the major and minor marks of the NAG Library, the target hardware and operating system, the compiler used, and the vendor library (if any) that is also required to be linked.
a00adf may be called to return, in separate arguments, these specific details of the NAG Library implementation that is being used; it also returns whether a valid licence has been found for this implementation. This differs from
a00aaf which simply outputs the collected information in a readable form directly to the current advisory message unit (see
x04abf).
None.
- 1: – Character(*)Output
-
Note: it is recommended that
impl be at least
characters in length.
On exit: the implementation title which usually lists the target platform, operating system and compiler.
- 2: – Character(*)Output
-
Note: it is recommended that
prec be at least
characters in length.
On exit: the working or basic precision of the implementation. Some routines may perform operations in reduced precision or additional precision, but the great majority will perform all operations in basic precision. See
Section 4.4 in How to Use the NAG Library and its Documentation for definitions of these precisions.
- 3: – Character(*)Output
-
Note: it is recommended that
pcode be at least
characters in length.
On exit: the product code for the NAG Library implementation that is being used. The code has a discernible structure, but it is not necessary to know the details of this structure. The product code can be used to differentiate between individual product licence codes.
- 4: – IntegerOutput
-
On exit: the major mark of the NAG Library implementation that is being used.
- 5: – IntegerOutput
-
On exit: the minor mark of the NAG Library implementation that is being used.
- 6: – Character(*)Output
-
Note: it is recommended that
hdware be at least
characters in length.
On exit: the target hardware for the NAG Library implementation that is being used.
- 7: – Character(*)Output
-
Note: it is recommended that
opsys be at least
characters in length.
On exit: the target operating system for the NAG Library implementation that is being used.
- 8: – Character(*)Output
-
Note: it is recommended that
fcomp be at least
characters in length.
On exit: the compiler used to build the NAG Library implementation that is being used.
- 9: – Character(*)Output
-
Note: it is recommended that
vend be at least
characters in length.
On exit: the subsidiary library, if any, that must be linked with the NAG Library implementation that is being used. If the implementation does not require a subsidiary library then the string
'(self-contained)'
will be returned in
vend.
- 10: – LogicalOutput
-
On exit: specifies whether or not a valid licence has been found for the NAG Library implementation that is being used.
None.
Not applicable.
Not applicable.
None.
This example makes a call of
a00adf, collects information on the NAG Library implementation that is being used and prints it out in a form that is similar to the output obtained by a call to
a00aaf. Additionally the time is also printed in a readable form. The output from running this example program provides information that is very useful when contacting NAG with a support query.
None.