PURPOSE
To provide an way to obtain the value of FMS Parameters within your application.SYNOPSIS
CALL FMSIGT (NAME, VALUE)
CALL FMSRGT (NAME, VALUE)
CALL FMSCGT (NAME, VALUE)
INPUT PARAMETERS
- NAME = Character String.
The name of the FMS Parameter
OUTPUT PARAMETERS
- VALUE = Integer (FMSIST)
VALUE = Real (FMSRST)
VALUE = Character String (FMSCST)
Contains the value currently assigned to the FMS Parameter.
Description
The FMSIGT, FMSRGT, and FMSCGT subroutines obtain the value of integer, real, and character FMS Parameters, respectively. They can be called at any point in your program after FMSINI.
If the specified name is not valid, a warning message is written to file LUERR and no value is returned.Examples
As an example, to obtain the number of pivot sign changes found during factoring, your program would contain the following statement:CALL FMSIGT ('NUMSCG', NUMSCG)