NAG FL Interface
d01zlf (opt_​get)

Settings help

FL Name Style:


FL Specification Language:


1 Purpose

d01zlf is used to query the current value associated with an optional parameter for d01esf and d01raf.

2 Specification

Fortran Interface
Subroutine d01zlf ( optstr, ivalue, rvalue, cvalue, optype, iopts, opts, ifail)
Integer, Intent (In) :: iopts(*)
Integer, Intent (Inout) :: ifail
Integer, Intent (Out) :: ivalue, optype
Real (Kind=nag_wp), Intent (In) :: opts(*)
Real (Kind=nag_wp), Intent (Out) :: rvalue
Character (*), Intent (In) :: optstr
Character (*), Intent (Out) :: cvalue
C Header Interface
#include <nag.h>
void  d01zlf_ (const char *optstr, Integer *ivalue, double *rvalue, char *cvalue, Integer *optype, const Integer iopts[], const double opts[], Integer *ifail, const Charlen length_optstr, const Charlen length_cvalue)
The routine may be called by the names d01zlf or nagf_quad_opt_get.

3 Description

d01zlf is used to query the current value associated with optional parameters. It is necessary to initialize optional parameter arrays, iopts and opts, using d01zkf before any optional parameters are queried.
d01zlf will normally return either an integer, real or character value dependent upon the type associated with the optional parameter being queried. Some real and integer optional parameters also return additional information in cvalue. Whether the optional parameter queried is of integer, real or character type, and whether additional information is returned in cvalue, is indicated by the returned value of optype.
Information on optional parameter names and whether these options are real, integer or character can be found in Section 11 in d01esf and d01raf.

4 References

None.

5 Arguments

1: optstr Character(*) Input
On entry: a string identifying the option whose current value is required. See Section 11 in d01esf and d01raf for information on valid optional parameters. In addition, the following is a valid option:
Identify
In which case d01zlf returns in cvalue the 6 character routine name supplied to d01zkf when the optional parameter arrays iopts and opts were initialized.
2: ivalue Integer Output
On exit: if the optional parameter supplied in optstr is an integer valued parameter, ivalue will hold that value.
3: rvalue Real (Kind=nag_wp) Output
On exit: if the optional parameter supplied in optstr is a real valued parameter, rvalue will hold that value.
4: cvalue Character(*) Output
Note: the string returned in cvalue will never exceed 40 characters in length.
On exit: if the optional parameter supplied in optstr is a character valued parameter, cvalue will hold that value. cvalue will also contain additional information for some integer and real valued parameters, as indicated by optype.
5: optype Integer Output
On exit: indicates whether the optional parameter supplied in optstr is an integer, real or character valued parameter and hence which of ivalue, rvalue or cvalue holds the current value.
optype=1
optstr is an integer valued optional parameter; its current value has been returned in ivalue.
optype=2
optstr is a real valued optional parameter; its current value has been returned in rvalue.
optype=3
optstr is a character valued optional parameter; its current value has been returned in cvalue.
optype=4
optstr is an integer valued optional parameter; its current value has been returned in ivalue. Additional information has been returned in cvalue.
optype=5
optstr is a real valued optional parameter; its current value has been returned in rvalue. Additional information has been returned in cvalue.
6: iopts(*) Integer array Communication Array
Note: the dimension of this array is dictated by the requirements of associated functions that must have been previously called. This array must be the same array passed as argument iopts in the previous call to d01zkf.
7: opts(*) Real (Kind=nag_wp) array Communication Array
Note: the dimension of this array is dictated by the requirements of associated functions that must have been previously called. This array must be the same array passed as argument opts in the previous call to d01zkf.
8: 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=11
On entry, the optional parameter in optstr was not recognized: optstr=value.
ifail=41
On entry, optstr indicates a character optional parameter, but cvalue is too short to hold the stored value. The returned value will be truncated.
ifail=61
The arrays iopts and opts have either not been initialized, have become corrupted, or are not compatible with this option setting routine.
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

Not applicable.

8 Parallelism and Performance

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

9 Further Comments

None.

10 Example

See the example programs associated with the problem solving routine you wish to use for a demonstration of how to use d01zlf.