relxSetReliabilityOptionVal
relxSetReliabilityOptionVal(t_sessionName s_optionName t_value) =>g_value/ nil
Description
Sets the value of the specified Reliability option variable in the given session.
It is a unit function for netlist and control flow. It is recommended not to rewrite this function.
Arguments
Value Returned
|
For Spectre session, returns the value of the Reliability option variable. |
|
|
For any other sessions, returns |
Examples
Consider the example given below, in which the ADE L session is created using Spectre. You can use the following function to set the value of the specified reliability option variable as STRESS.
session = asiGetCurrentSession()
relxSetReliabilityOptionVal(session 'variable_name "STRESS")
Now, return the specified value using the following function:
relxGetReliabilityOptionVal(session 'variable_name)
=> STRESS
Return to top