Product Documentation
Virtuoso ADE SKILL Reference
Product Version IC23.1, November 2023

axlGetRunOptionValue

axlGetRunOptionValue( 
x_runOption 
) 
=> t_runoptValue / nil 

Description

Returns the value associated with the provided run option.

Argument

x_runOption

Run option handle.

Value Returned

t_runoptValue

Value of the given run option.

nil

Unsuccessful operation.

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

axlGetRunOption

axlPutRunOption


Return to top
 ⠀
X