axlGetRunOptionValue
axlGetRunOptionValue(x_runOption) =>t_runoptValue/nil
Description
Returns the value associated with the provided run option.
Argument
Value Returned
Examples
The following example code shows how you can view the value for a Monte Carlo run option:
session = axlGetWindowSession()
x_mainSDB = axlGetMainSetupDB(session)
axlGetRunOptions( x_mainSDB "Monte Carlo Sampling")
(1452
("dutsummary" "ignoreflag" "mcmethod" "mcnumpoints" "mcnumbins" "mcStopEarly" "mcStopMethod" "samplingmode" "saveprocess" "savemismatch" "mcreferencepoint" "donominal" "saveallplots" "montecarloseed" "mcstartingrunnumber" "mcYieldTarget" "mcYieldAlphaLimit" )
)
x_runOption = axlGetRunOption(1001 "Monte Carlo Sampling" "mcnumpoints")
axlGetRunOptionValue(x_runOption)
=> "200"
Related Topics
Return to top